summaryrefslogtreecommitdiff
path: root/libre-testing/linux-libre-cros/linux-libre-cros.install
diff options
context:
space:
mode:
authorDavid P <megver83@parabola.nu>2020-02-03 16:17:01 -0300
committerDavid P <megver83@parabola.nu>2020-02-03 16:17:24 -0300
commit001ff9e67cd9f81195b1d6ff71082ede2365421d (patch)
tree565cf349c7706a2de6ea39030e8a68221ca55423 /libre-testing/linux-libre-cros/linux-libre-cros.install
parentcfa35f80290dfc8f49bde95427e1513c4e980250 (diff)
downloadabslibre-001ff9e67cd9f81195b1d6ff71082ede2365421d.tar.gz
abslibre-001ff9e67cd9f81195b1d6ff71082ede2365421d.tar.bz2
abslibre-001ff9e67cd9f81195b1d6ff71082ede2365421d.zip
remove [libre-testing] chromebook kernels
libre/linux-libre-chromebook is confirmed to work, otherwise I'll build an special CrOS kernel in [libre] 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.install26
1 files changed, 0 insertions, 26 deletions
diff --git a/libre-testing/linux-libre-cros/linux-libre-cros.install b/libre-testing/linux-libre-cros/linux-libre-cros.install
deleted file mode 100644
index 05264329e..000000000
--- a/libre-testing/linux-libre-cros/linux-libre-cros.install
+++ /dev/null
@@ -1,26 +0,0 @@
-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
-}