summaryrefslogtreecommitdiff
path: root/libre-testing/linux-libre-cros/linux-libre-cros.install
diff options
context:
space:
mode:
authorDavid P <megver83@parabola.nu>2019-12-10 11:23:34 -0300
committerDavid P <megver83@parabola.nu>2019-12-10 11:23:34 -0300
commitf462077e5e6ab4dceb338b4a62eccea43b1be0e0 (patch)
treeebdab1df138f38cb917e4d24a9d3158f349321ae /libre-testing/linux-libre-cros/linux-libre-cros.install
parent4ff0774105cea3776771f30e8cabf83939b38e71 (diff)
downloadabslibre-f462077e5e6ab4dceb338b4a62eccea43b1be0e0.tar.gz
abslibre-f462077e5e6ab4dceb338b4a62eccea43b1be0e0.tar.bz2
abslibre-f462077e5e6ab4dceb338b4a62eccea43b1be0e0.zip
addpkg: libre-testing/linux-libre-cros 5.4.2-1
Signed-off-by: David P <megver83@parabola.nu>
Diffstat (limited to 'libre-testing/linux-libre-cros/linux-libre-cros.install')
-rw-r--r--libre-testing/linux-libre-cros/linux-libre-cros.install29
1 files changed, 29 insertions, 0 deletions
diff --git a/libre-testing/linux-libre-cros/linux-libre-cros.install b/libre-testing/linux-libre-cros/linux-libre-cros.install
new file mode 100644
index 000000000..962dcc3b3
--- /dev/null
+++ b/libre-testing/linux-libre-cros/linux-libre-cros.install
@@ -0,0 +1,29 @@
+flash_kernel() {
+ if mountpoint -q /boot; then
+ major=$(mountpoint -d /boot | cut -f 1 -d ':')
+ minor=$(mountpoint -d /boot | cut -f 2 -d ':')
+ else
+ major=$(mountpoint -d / | cut -f 1 -d ':')
+ minor=$(mountpoint -d / | cut -f 2 -d ':')
+ fi
+ device=$(awk {'if ($1 == "'$major'" && $2 == "'$minor'") print $4 '} /proc/partitions)
+ device="/dev/${device/%2/1}"
+
+ echo "A new kernel version needs to be flashed onto $device."
+ read -rp "Do you want to do this now? [y|N] " 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
+}