diff options
author | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2016-02-26 17:51:56 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2016-02-26 17:51:56 -0300 |
commit | d6d1903647373fa19ae494b61d9728cb200d1383 (patch) | |
tree | c56963938bcd667e9fcd8cbdc6d25a5697516b2f /libre/uboot-udoo-linux-libre/uboot-udoo-dual-linux-libre.install | |
parent | 969609c3df945079418d2e90a85df1a09f411f36 (diff) |
uboot4extlinux-udoo: move package to [libre]
Diffstat (limited to 'libre/uboot-udoo-linux-libre/uboot-udoo-dual-linux-libre.install')
-rw-r--r-- | libre/uboot-udoo-linux-libre/uboot-udoo-dual-linux-libre.install | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/libre/uboot-udoo-linux-libre/uboot-udoo-dual-linux-libre.install b/libre/uboot-udoo-linux-libre/uboot-udoo-dual-linux-libre.install deleted file mode 100644 index 64a7695b0..000000000 --- a/libre/uboot-udoo-linux-libre/uboot-udoo-dual-linux-libre.install +++ /dev/null @@ -1,23 +0,0 @@ -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/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/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 -} |