From 9277d5ae45b38660dce78c4c970bc1d9974a2cfd Mon Sep 17 00:00:00 2001 From: André Fabian Silva Delgado Date: Mon, 6 Mar 2017 01:11:13 -0300 Subject: uboot4extlinux-sunxi: move package to [libre] --- .../uboot4extlinux-sunxi.install | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 libre/uboot4extlinux-sunxi/uboot4extlinux-sunxi.install (limited to 'libre/uboot4extlinux-sunxi/uboot4extlinux-sunxi.install') diff --git a/libre/uboot4extlinux-sunxi/uboot4extlinux-sunxi.install b/libre/uboot4extlinux-sunxi/uboot4extlinux-sunxi.install new file mode 100644 index 000000000..e39c2cd2e --- /dev/null +++ b/libre/uboot4extlinux-sunxi/uboot4extlinux-sunxi.install @@ -0,0 +1,27 @@ +extlinux_warning() { + echo "==> WARNING: U-Boot uses Extlinux support to boot up. For setting it up, edit /boot/extlinux/extlinux.conf" +} + +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 + extlinux_warning +} + +## 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