From 6390b11811b4e2a0a955db7174b78a9a6dedb09e Mon Sep 17 00:00:00 2001 From: David P Date: Thu, 13 Dec 2018 10:38:23 -0300 Subject: upgpkg: libre/linux-libre 4.19.8_gnu-1 And add linux-libre-chromebook (thanks for testing it CBotulinum!) Signed-off-by: David P --- libre/linux-libre/linux-chromebook.install | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 libre/linux-libre/linux-chromebook.install (limited to 'libre/linux-libre/linux-chromebook.install') diff --git a/libre/linux-libre/linux-chromebook.install b/libre/linux-libre/linux-chromebook.install new file mode 100644 index 000000000..02e08464d --- /dev/null +++ b/libre/linux-libre/linux-chromebook.install @@ -0,0 +1,25 @@ +flash_kernel() { + major=$(mountpoint -d / | cut -f 1 -d ':') + minor=$(mountpoint -d / | cut -f 2 -d ':') + device=$(cat /proc/partitions | awk {'if ($1 == "'${major}'" && $2 == "'${minor}'") print $4 '}) + device="/dev/${device/%2/1}" + + echo "A new kernel version needs to be flashed onto ${device}." + echo "Do you want to do this now? [y|N]" + read -r shouldwe + if [[ $shouldwe =~ ^([yY][eE][sS]|[yY])$ ]]; then + dd if=/boot/vmlinux.kpart of=${device} + sync + else + echo "You can do this later by running:" + echo "# dd if=/boot/vmlinux.kpart of=${device}" + fi +} + +post_install () { + flash_kernel +} + +post_upgrade() { + flash_kernel +} -- cgit v1.2.3