diff options
author | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2016-03-02 03:35:17 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2016-03-02 03:35:17 -0300 |
commit | 2df1f2841f65200bd77b2f1caff014678b378a79 (patch) | |
tree | 7659c47bf5bd7b92f32710b4d84cd5276ee8a2d5 /libre/uboot-sunxi/uboot-sunxi.install | |
parent | d9d60d9827cd11a78aed45d65aa13fd292eb4cdf (diff) |
uboot-sunxi: add new package to [libre]
Diffstat (limited to 'libre/uboot-sunxi/uboot-sunxi.install')
-rw-r--r-- | libre/uboot-sunxi/uboot-sunxi.install | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/libre/uboot-sunxi/uboot-sunxi.install b/libre/uboot-sunxi/uboot-sunxi.install new file mode 100644 index 000000000..cd4afef4b --- /dev/null +++ b/libre/uboot-sunxi/uboot-sunxi.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/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/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 +} |