PrawnOS-nonfree/scripts/InstallScripts/UpgradeKernel.sh
Austin English 9ed8e86ab1 scripts/InstallScripts/UpgradeKernel.sh: RESOURCES is unused, remove it
Also remove leading newline; that's not a valid shebang
2020-06-20 06:09:34 -05:00

37 lines
1.4 KiB
Bash
Executable File

#!/bin/bash
#Replace the PrawnOS linux kernel that is installed on the internal emmc storage with
#the PrawnOS linux kernel from the booted usb device or sd card
# This file is part of PrawnOS (https://www.prawnos.com)
# Copyright (c) 2018 Hal Emmerich <hal@halemmerich.com>
# PrawnOS is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2
# as published by the Free Software Foundation.
# PrawnOS is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with PrawnOS. If not, see <https://www.gnu.org/licenses/>.
# Grab the boot device, which is either /dev/sda for usb or /dev/mmcblk0 for an sd card
BOOT_DEVICE=$(mount | head -n 1 | cut -d '2' -f 1)
read -p "This will replace the kernel installed on the internal storage (EMMC) with the one on the booted USB drive or SD card and reboot when finished, do you want to continue? [Y/n]" -n 1 -r
echo
if [[ $REPLY =~ ^[Yy]$ ]]
then
echo Writing kernel partition
dd if=/dev/zero of=/dev/mmcblk2p1 bs=512 count=65536
dd if="$BOOT_DEVICE"1 of=/dev/mmcblk2p1
echo You can now reboot
fi
echo Exiting