PKGBUILDs/alarm/uboot-pine64/uboot-pine64.install

23 lines
582 B
Plaintext
Raw Normal View History

2016-04-22 01:55:03 +00:00
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
2017-08-20 02:07:04 +00:00
dd if=/boot/u-boot-sunxi-with-spl.bin of=/dev/mmcblk0 bs=8k seek=1
2016-04-22 01:55:03 +00:00
else
echo "You can do this later by running:"
2017-08-20 02:07:04 +00:00
echo "# dd if=/boot/u-boot-sunxi-with-spl.bin of=/dev/mmcblk0 bs=8k seek=1"
2016-04-22 01:55:03 +00:00
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
}