From 1a149512bc31629bfbc89cdf0da570ad3b1a2998 Mon Sep 17 00:00:00 2001 From: André Fabian Silva Delgado Date: Mon, 5 Oct 2015 17:04:10 -0300 Subject: uboot-sunxi-linux-libre: fix install files --- .../uboot-cubieboard2-linux-libre.install | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 libre/uboot-sunxi-linux-libre/uboot-cubieboard2-linux-libre.install (limited to 'libre/uboot-sunxi-linux-libre/uboot-cubieboard2-linux-libre.install') diff --git a/libre/uboot-sunxi-linux-libre/uboot-cubieboard2-linux-libre.install b/libre/uboot-sunxi-linux-libre/uboot-cubieboard2-linux-libre.install new file mode 100644 index 000000000..d74c526c2 --- /dev/null +++ b/libre/uboot-sunxi-linux-libre/uboot-cubieboard2-linux-libre.install @@ -0,0 +1,22 @@ +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/uboot-cubieboard2-linux-libre/u-boot-sunxi-with-spl.bin of=/dev/mmcblk0 bs=1024 seek=8 + else + echo "You can do this later by running:" + echo "# dd if=/boot/uboot-cubieboard2-linux-libre/u-boot-sunxi-with-spl.bin of=/dev/mmcblk0 bs=1024 seek=8" + 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 +} -- cgit v1.2.3