PKGBUILDs/alarm/uboot-sunxi/uboot-sunxi.install
2013-07-31 03:56:28 +00:00

25 lines
689 B
Plaintext

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/sunxi-spl.bin of=/dev/mmcblk0 bs=1024 seek=8
dd if=/boot/u-boot.bin of=/dev/mmcblk0 bs=1024 seek=32
else
echo "You can do this later by running:"
echo "# dd if=/boot/sunxi-spl.bin of=/dev/mmcblk0 bs=1024 seek=8"
echo "# dd if=/boot/u-boot.bin of=/dev/mmcblk0 bs=1024 seek=32"
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
}