pkg-linux-aarch64/linux-aarch64-chromebook.install
Molly Sophia b23a791250
Some checks failed
gitea/pkg-linux-aarch64/pipeline/head There was a failure building this commit
Initial commit
Signed-off-by: Molly Sophia <mollysophia379@gmail.com>
2023-12-25 04:22:18 +00:00

26 lines
652 B
Plaintext

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
}