PKGBUILDs/alarm/uboot-cubox-i/uboot-cubox-i.install
Frans-Willem Hardijzer c84c83a769 alarm/uboot-cubox-i to 2015.07-1
---
Updated Cubox-i U-Boot to mainline 2015.07.
Boot script was changed (to keep deviations from mainline minimal), but support for uEnv.txt was added in case you need something specific.
Tested with linux-armv7 on a Cubox-i4pro.
2015-08-26 16:04:36 +02:00

25 lines
673 B
Text

flash_uboot() {
echo "A new U-Boot version needs to be flashed onto /dev/mmcblk0."
echo "Do you want to do this now? [y|N]"
read -r shouldwe
if [[ $shouldwe =~ ^([yY][eE][sS]|[yY])$ ]]; then
dd if=/boot/SPL of=/dev/mmcblk0 bs=1K seek=1
dd if=/boot/u-boot.img of=/dev/mmcblk0 bs=1K seek=69
sync
else
echo "You can do this later by running:"
echo "# dd if=/boot/SPL of=/dev/mmcblk0 bs=1K seek=1"
echo "# dd dd if=/boot/u-boot.img of=/dev/mmcblk0 bs=1K seek=69"
fi
}
## arg 1: the new package version
post_install() {
flash_uboot
}
## arg 1: the new package version
## arg 2: the old package version
post_upgrade() {
flash_uboot
}