summaryrefslogtreecommitdiff
path: root/libre-testing/chromebook-kernel/linux-chromebook.install
diff options
context:
space:
mode:
Diffstat (limited to 'libre-testing/chromebook-kernel/linux-chromebook.install')
-rw-r--r--libre-testing/chromebook-kernel/linux-chromebook.install25
1 files changed, 0 insertions, 25 deletions
diff --git a/libre-testing/chromebook-kernel/linux-chromebook.install b/libre-testing/chromebook-kernel/linux-chromebook.install
deleted file mode 100644
index 02e08464d..000000000
--- a/libre-testing/chromebook-kernel/linux-chromebook.install
+++ /dev/null
@@ -1,25 +0,0 @@
-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
-}