From 2940d5d17d28dae2a5a02795bd4e714435dc0bb2 Mon Sep 17 00:00:00 2001 From: Denis 'GNUtoo' Carikli Date: Tue, 7 Jan 2020 20:39:00 +0100 Subject: kernels: linux-libre-x86_64: update to 5.4.8 by syncing with linux-libre Signed-off-by: Denis 'GNUtoo' Carikli --- .../linux-libre-x86_64/linux-chromebook.install | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 kernels/linux-libre-x86_64/linux-chromebook.install (limited to 'kernels/linux-libre-x86_64/linux-chromebook.install') diff --git a/kernels/linux-libre-x86_64/linux-chromebook.install b/kernels/linux-libre-x86_64/linux-chromebook.install new file mode 100644 index 000000000..02e08464d --- /dev/null +++ b/kernels/linux-libre-x86_64/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