diff options
author | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2019-11-22 15:32:59 -0800 |
---|---|---|
committer | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2019-11-22 15:32:59 -0800 |
commit | 17cb75f37adab5656fd9355720fb7544035e2280 (patch) | |
tree | 90131c2899bb00f71a23c701f809c16a3d7e618b /uboot-pinebookpro.install | |
download | uboot-pinebookpro-17cb75f37adab5656fd9355720fb7544035e2280.tar.xz |
Initial commit
Diffstat (limited to 'uboot-pinebookpro.install')
-rw-r--r-- | uboot-pinebookpro.install | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/uboot-pinebookpro.install b/uboot-pinebookpro.install new file mode 100644 index 0000000..71e1ff7 --- /dev/null +++ b/uboot-pinebookpro.install @@ -0,0 +1,27 @@ +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/idbloader.img of=/dev/mmcblk0 seek=64 conv=notrunc + dd if=/boot/uboot.img of=/dev/mmcblk0 seek=16384 conv=notrunc + dd if=/boot/trust.img of=/dev/mmcblk0 seek=24576 conv=notrunc + else + echo "You can do this later by running:" + echo "# dd if=/boot/idbloader.img of=/dev/mmcblk0 seek=64 conv=notrunc" + echo "# dd if=/boot/uboot.img of=/dev/mmcblk0 seek=16384 conv=notrunc" + echo "# dd if=/boot/trust.img of=/dev/mmcblk0 seek=24576 conv=notrunc" + 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 +} + |