summaryrefslogtreecommitdiff
path: root/libre-testing/linux-libre/linux-chromebook.install
diff options
context:
space:
mode:
authorDavid P <megver83@parabola.nu>2018-12-10 13:57:07 -0300
committerDavid P <megver83@parabola.nu>2018-12-10 13:57:07 -0300
commitce3a012dcab0c5c89a83434bd5c3a31641ee3e16 (patch)
treef65ee0835be2cf58c061597377856bfdf6612ec1 /libre-testing/linux-libre/linux-chromebook.install
parent52f5c72309fb301afaadf368e4beef913b95acf5 (diff)
downloadabslibre-ce3a012dcab0c5c89a83434bd5c3a31641ee3e16.tar.gz
abslibre-ce3a012dcab0c5c89a83434bd5c3a31641ee3e16.tar.bz2
abslibre-ce3a012dcab0c5c89a83434bd5c3a31641ee3e16.zip
upgpkg: libre-testing/linux-libre 4.19.6_gnu-1
Signed-off-by: David P <megver83@parabola.nu>
Diffstat (limited to 'libre-testing/linux-libre/linux-chromebook.install')
-rw-r--r--libre-testing/linux-libre/linux-chromebook.install25
1 files changed, 25 insertions, 0 deletions
diff --git a/libre-testing/linux-libre/linux-chromebook.install b/libre-testing/linux-libre/linux-chromebook.install
new file mode 100644
index 000000000..02e08464d
--- /dev/null
+++ b/libre-testing/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
+}