diff options
author | Gaming4JC <g4jc@openmailbox.org> | 2015-10-14 09:12:00 -0400 |
---|---|---|
committer | Gaming4JC <g4jc@openmailbox.org> | 2015-10-14 09:12:00 -0400 |
commit | c8e3174a547539bec09b68b8de1788a22dfc4a62 (patch) | |
tree | 36912d63fbc1c4779a5d5d48285a0167a012a892 /libre/uboot-udoo-linux-libre-grsec/uboot-udoo-dual-linux-libre-grsec.install | |
parent | 0c1a35172ef70bf0de90f7a942611d9fbb46bff0 (diff) | |
download | abslibre-c8e3174a547539bec09b68b8de1788a22dfc4a62.tar.gz abslibre-c8e3174a547539bec09b68b8de1788a22dfc4a62.tar.bz2 abslibre-c8e3174a547539bec09b68b8de1788a22dfc4a62.zip |
adding uboot-udoo-linux-libre-grsec
Diffstat (limited to 'libre/uboot-udoo-linux-libre-grsec/uboot-udoo-dual-linux-libre-grsec.install')
-rw-r--r-- | libre/uboot-udoo-linux-libre-grsec/uboot-udoo-dual-linux-libre-grsec.install | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/libre/uboot-udoo-linux-libre-grsec/uboot-udoo-dual-linux-libre-grsec.install b/libre/uboot-udoo-linux-libre-grsec/uboot-udoo-dual-linux-libre-grsec.install new file mode 100644 index 000000000..7b3e62229 --- /dev/null +++ b/libre/uboot-udoo-linux-libre-grsec/uboot-udoo-dual-linux-libre-grsec.install @@ -0,0 +1,23 @@ +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-udoo-dual-linux-libre-grsec/u-boot.imx of=/dev/mmcblk0 bs=512 seek=2 + sync + else + echo "You can do this later by running:" + echo "# dd if=/boot/uboot-udoo-dual-linux-libre-grsec/u-boot.imx of=/dev/mmcblk0 bs=512 seek=2" + 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 +} |