diff options
author | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2016-03-02 02:22:04 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@parabola.nu> | 2016-03-02 02:22:04 -0300 |
commit | f303ce805abe78bcbab81704bc0d4ad4d0fb8d61 (patch) | |
tree | ae5fa1f9264cd94456e9c272633ead6a8eeb9e0f /libre/uboot-cubox-i-linux-libre/uboot-cubox-i-linux-libre.install | |
parent | 7545468778b501c3a5a805dc33bc8ae20019020e (diff) | |
download | abslibre-f303ce805abe78bcbab81704bc0d4ad4d0fb8d61.tar.gz abslibre-f303ce805abe78bcbab81704bc0d4ad4d0fb8d61.tar.bz2 abslibre-f303ce805abe78bcbab81704bc0d4ad4d0fb8d61.zip |
uboot-mx6_cubox-i: add new package to [libre]
Diffstat (limited to 'libre/uboot-cubox-i-linux-libre/uboot-cubox-i-linux-libre.install')
-rw-r--r-- | libre/uboot-cubox-i-linux-libre/uboot-cubox-i-linux-libre.install | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/libre/uboot-cubox-i-linux-libre/uboot-cubox-i-linux-libre.install b/libre/uboot-cubox-i-linux-libre/uboot-cubox-i-linux-libre.install deleted file mode 100644 index ff3b52d2a..000000000 --- a/libre/uboot-cubox-i-linux-libre/uboot-cubox-i-linux-libre.install +++ /dev/null @@ -1,25 +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-cubox-i-linux-libre/SPL of=/dev/mmcblk0 bs=1K seek=1 - dd if=/boot/uboot-cubox-i-linux-libre/u-boot.img of=/dev/mmcblk0 bs=1K seek=42 - sync - else - echo "You can do this later by running:" - echo "# dd if=/boot/uboot-cubox-i-linux-libre/SPL of=/dev/mmcblk0 bs=1K seek=1" - echo "# dd dd if=/boot/uboot-cubox-i-linux-libre/u-boot.img of=/dev/mmcblk0 bs=1K seek=42" - 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 -} |