diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2015-07-07 03:31:59 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2015-07-07 03:31:59 +0000 |
commit | c267d381cf787172340b4aabba3cde35c4ca536a (patch) | |
tree | ba84d8df07f62ef2e5940fb907c7b72ea05b3db7 /distrib/armv7 | |
parent | 8f113895dfd492546901260887a5b28ddda8a28d (diff) |
At some point the u-boot mlo for panda/beagle stopped looking for
u-boot.bin and required u-boot.img on the fat fs so switch to using that
as we do for beaglebone.
Reported by abieber@ via bmercer@
Diffstat (limited to 'distrib/armv7')
-rw-r--r-- | distrib/armv7/ramdisk/install.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/distrib/armv7/ramdisk/install.md b/distrib/armv7/ramdisk/install.md index e13664f632b..03f5af000db 100644 --- a/distrib/armv7/ramdisk/install.md +++ b/distrib/armv7/ramdisk/install.md @@ -1,4 +1,4 @@ -# $OpenBSD: install.md,v 1.16 2015/06/29 04:52:34 jsg Exp $ +# $OpenBSD: install.md,v 1.17 2015/07/07 03:31:58 jsg Exp $ # # # Copyright (c) 1996 The NetBSD Foundation, Inc. @@ -92,11 +92,11 @@ md_installboot() { if [[ ${MDPLAT} == "OMAP" ]]; then if [[ -n $BEAGLE ]]; then - cp /mnt/usr/mdec/beagle/{mlo,u-boot.bin} /mnt/mnt/ + cp /mnt/usr/mdec/beagle/{mlo,u-boot.img} /mnt/mnt/ elif [[ -n $BEAGLEBONE ]]; then cp /mnt/usr/mdec/am335x/{mlo,u-boot.img} /mnt/mnt/ elif [[ -n $PANDA ]]; then - cp /mnt/usr/mdec/panda/{mlo,u-boot.bin} /mnt/mnt/ + cp /mnt/usr/mdec/panda/{mlo,u-boot.img} /mnt/mnt/ fi cat > /mnt/mnt/uenv.txt<<__EOT bootcmd=mmc rescan ; setenv loadaddr ${LOADADDR}; setenv bootargs sd0i:/bsd.umg ; fatload mmc \${mmcdev} \${loadaddr} bsd.umg ; bootm \${loadaddr} ; |