summaryrefslogtreecommitdiff
path: root/libre-testing/linux-libre-veyron/linux-libre-veyron.install
diff options
context:
space:
mode:
authorDavid P <megver83@parabola.nu>2020-01-16 16:09:36 -0300
committerDavid P <megver83@parabola.nu>2020-01-16 16:09:36 -0300
commit05f05e3911a5399697255d609c80b65e1b930940 (patch)
treecb4fa2eff8516bdb306f0f3d4ca92cd3abc0e04c /libre-testing/linux-libre-veyron/linux-libre-veyron.install
parent51f675e2eaeb6fe846a7e3faa5ee43fa57abb56d (diff)
updpkg: libre-testing/linux-libre-veyron 4.19.94-1
Signed-off-by: David P <megver83@parabola.nu>
Diffstat (limited to 'libre-testing/linux-libre-veyron/linux-libre-veyron.install')
-rw-r--r--libre-testing/linux-libre-veyron/linux-libre-veyron.install26
1 files changed, 26 insertions, 0 deletions
diff --git a/libre-testing/linux-libre-veyron/linux-libre-veyron.install b/libre-testing/linux-libre-veyron/linux-libre-veyron.install
new file mode 100644
index 000000000..427db6f03
--- /dev/null
+++ b/libre-testing/linux-libre-veyron/linux-libre-veyron.install
@@ -0,0 +1,26 @@
+post_install() {
+ 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."
+ 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_upgrade() {
+ post_install
+}