diff options
author | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2016-03-02 02:55:30 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2016-03-02 02:55:30 -0300 |
commit | ffec767572058f3ad0fb869e59b4df2f64b80f04 (patch) | |
tree | 575ba5fb789d4ef4cd982cbe46cb377260637469 /libre/uboot-usbarmory/uboot-usbarmory.install | |
parent | 3cc20cbac18f7e65b50643cd3a25be2211a76e9a (diff) | |
download | abslibre-ffec767572058f3ad0fb869e59b4df2f64b80f04.tar.gz abslibre-ffec767572058f3ad0fb869e59b4df2f64b80f04.tar.bz2 abslibre-ffec767572058f3ad0fb869e59b4df2f64b80f04.zip |
uboot-usbarmory: add new package to [libre]
Diffstat (limited to 'libre/uboot-usbarmory/uboot-usbarmory.install')
-rw-r--r-- | libre/uboot-usbarmory/uboot-usbarmory.install | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/libre/uboot-usbarmory/uboot-usbarmory.install b/libre/uboot-usbarmory/uboot-usbarmory.install new file mode 100644 index 000000000..6c0ddcf9e --- /dev/null +++ b/libre/uboot-usbarmory/uboot-usbarmory.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/uboot-usbarmory-linux-libre/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/uboot-usbarmory-linux-libre/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 +} |