summarylogtreecommitdiffstats
path: root/uboot-imx53qsb.install
diff options
context:
space:
mode:
authorchimera2016-12-23 11:33:36 +0100
committerchimera2016-12-23 11:33:36 +0100
commit0e60696384984d02f1fd282d7fd46830e422a75f (patch)
tree3255fd2629b35442905401a6a8fba22bb99257cc /uboot-imx53qsb.install
downloadaur-0e60696384984d02f1fd282d7fd46830e422a75f.tar.gz
Initial import
Diffstat (limited to 'uboot-imx53qsb.install')
-rw-r--r--uboot-imx53qsb.install22
1 files changed, 22 insertions, 0 deletions
diff --git a/uboot-imx53qsb.install b/uboot-imx53qsb.install
new file mode 100644
index 000000000000..98229b1df7cb
--- /dev/null
+++ b/uboot-imx53qsb.install
@@ -0,0 +1,22 @@
+flash_uboot() {
+ echo "A new U-Boot version needs to be flashed onto /dev/mmcblk0."
+ echo "Do this now? [y|N]"
+ read -r shouldwe
+ if [[ $shouldwe =~ ^([yY][eE][sS]|[yY])$ ]]; then
+ dd if=/boot/u-boot.imx of=/dev/mmcblk0 bs=512 seek=2 conv=fsync
+ else
+ echo "You can do this later by running:"
+ echo "# dd if=/boot/u-boot.imx of=/dev/mmcblk0 bs=512 seek=2 conv=fsync"
+ 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
+}