summarylogtreecommitdiffstats
path: root/linux-chromebook.install
diff options
context:
space:
mode:
authorDaniel Bermond2019-01-04 20:44:33 +0000
committerDaniel Bermond2019-01-04 20:44:33 +0000
commitfc297c3950f1ce26367f6489f9b8b4e94ef92b67 (patch)
treeb89ca2efb6116900847bc44fd8c5640e8ff64c2d /linux-chromebook.install
parent27f750ce57e5deb1ed0b484954254a29b37b93d4 (diff)
downloadaur-fc297c3950f1ce26367f6489f9b8b4e94ef92b67.tar.gz
Updated to version 4.19.8
Diffstat (limited to 'linux-chromebook.install')
-rw-r--r--linux-chromebook.install25
1 files changed, 25 insertions, 0 deletions
diff --git a/linux-chromebook.install b/linux-chromebook.install
new file mode 100644
index 000000000000..02e08464d1b0
--- /dev/null
+++ b/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
+}