diff options
author | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2019-03-03 20:02:55 +0100 |
---|---|---|
committer | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2019-03-05 02:28:53 +0100 |
commit | 647880087e3ba3abb2b5efda3c42199d2f128222 (patch) | |
tree | e472780793838ce757ad34a550cfb4de88ea0110 /libre/uboot4extlinux-sunxi/uboot4extlinux-sunxi.install | |
parent | 0a15c074e1b78be2c9b4f6853d9bb1f204c7fc1e (diff) | |
download | abslibre-647880087e3ba3abb2b5efda3c42199d2f128222.tar.gz abslibre-647880087e3ba3abb2b5efda3c42199d2f128222.tar.bz2 abslibre-647880087e3ba3abb2b5efda3c42199d2f128222.zip |
libre: uboot4extlinux-sunxi: fix images path
All packages built fine.
This was also tested on a Lime2-EMMC:
- Booting worked fine with a extliux.conf tailored for the
configuration of the device being tested.
- An external display was connected to it and it worked
in u-boot, during boot and showed a console at the end.
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Diffstat (limited to 'libre/uboot4extlinux-sunxi/uboot4extlinux-sunxi.install')
-rw-r--r-- | libre/uboot4extlinux-sunxi/uboot4extlinux-sunxi.install | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libre/uboot4extlinux-sunxi/uboot4extlinux-sunxi.install b/libre/uboot4extlinux-sunxi/uboot4extlinux-sunxi.install index 4419c21af..46f8304cd 100644 --- a/libre/uboot4extlinux-sunxi/uboot4extlinux-sunxi.install +++ b/libre/uboot4extlinux-sunxi/uboot4extlinux-sunxi.install @@ -1,5 +1,5 @@ flash_instructions() { - echo "# dd if=/boot/u-boot-sunxi-with-spl.bin of=/dev/mmcblk0 bs=1024 seek=8" + echo "# dd if=/boot/u-boot/images/u-boot-sunxi-with-spl.bin of=/dev/mmcblk0 bs=1024 seek=8" } extlinux_warning() { @@ -14,7 +14,7 @@ flash_uboot() { 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=$root bs=1024 seek=8 + dd if=/boot/u-boot/images/u-boot-sunxi-with-spl.bin of=$root bs=1024 seek=8 else echo "You can do this later by running:" flash_instructions |