mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-10-29 22:43:48 +00:00
70dc420d4f
There was a superfluous adding of the string "/dev/" to the output path for the manual instructions to dd the new kernel in place. Old erroneous behavious for reference: ``` 6/8) Aktualisiere linux-peach [############################################################] 100% >>> Updating module dependencies. Please wait ... A new kernel version needs to be flashed onto /dev/mmcblk0p1. Do you want to do this now? [y|N] N You can do this later by running: # dd if=/boot/vmlinux.kpart of=/dev//dev/mmcblk0p1 ```
37 lines
1,008 B
Text
37 lines
1,008 B
Text
# arg 1: the new package version
|
|
# arg 2: the old package version
|
|
|
|
KERNEL_NAME=-peach
|
|
KERNEL_VERSION=3.8.11-1-ARCH
|
|
|
|
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 () {
|
|
# updating module dependencies
|
|
echo ">>> Updating module dependencies. Please wait ..."
|
|
depmod ${KERNEL_VERSION}
|
|
flash_kernel
|
|
}
|
|
|
|
post_upgrade() {
|
|
# updating module dependencies
|
|
echo ">>> Updating module dependencies. Please wait ..."
|
|
depmod ${KERNEL_VERSION}
|
|
flash_kernel
|
|
}
|