diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2016-03-27 00:29:10 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2016-03-27 00:29:10 +0000 |
commit | 77ef9fbed3b3708ed084573703f3d7d08b23f8e6 (patch) | |
tree | 8851aba8d1ace8d90f0dfae1764b1ef92ed12b20 /distrib/armv7 | |
parent | c9c84fe120a88609914157c2639877db3b93d3a9 (diff) |
use MLO not mlo to match the names generated by u-boot builds
Diffstat (limited to 'distrib/armv7')
-rw-r--r-- | distrib/armv7/miniroot/Makefile.inc | 2 | ||||
-rw-r--r-- | distrib/armv7/ramdisk/install.md | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/distrib/armv7/miniroot/Makefile.inc b/distrib/armv7/miniroot/Makefile.inc index 0b13abde5bd..cee8438993c 100644 --- a/distrib/armv7/miniroot/Makefile.inc +++ b/distrib/armv7/miniroot/Makefile.inc @@ -40,7 +40,7 @@ ${IMAGE}: rd_setup do_files rd_teardown do_files: .if ${PLATFORM} == "OMAP" - cp /usr/mdec/${BOARD}/mlo ${MOUNT_POINT}/mlo + cp /usr/mdec/${BOARD}/MLO ${MOUNT_POINT}/MLO echo "bootcmd=mmc rescan ; setenv loadaddr ${LOADADDR} ; setenv bootargs sd0i:/bsd.umg ; fatload mmc \$${mmcdev} \$${loadaddr} bsd.umg ; bootm \$${loadaddr} ;\nuenvcmd=boot" > ${MOUNT_POINT}/uenv.txt cp /usr/mdec/${BOARD}/u-boot.* ${MOUNT_POINT}/ mkdir ${MOUNT_POINT}/u-boots diff --git a/distrib/armv7/ramdisk/install.md b/distrib/armv7/ramdisk/install.md index 15722affd4b..b6fd803619d 100644 --- a/distrib/armv7/ramdisk/install.md +++ b/distrib/armv7/ramdisk/install.md @@ -1,4 +1,4 @@ -# $OpenBSD: install.md,v 1.24 2016/02/08 17:28:08 krw Exp $ +# $OpenBSD: install.md,v 1.25 2016/03/27 00:29:09 jsg Exp $ # # # Copyright (c) 1996 The NetBSD Foundation, Inc. @@ -91,11 +91,11 @@ md_installboot() { if [[ ${MDPLAT} == "OMAP" ]]; then if [[ -n $BEAGLE ]]; then - cp /mnt/usr/mdec/beagle/{mlo,u-boot.img} /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/ + cp /mnt/usr/mdec/am335x/{MLO,u-boot.img} /mnt/mnt/ elif [[ -n $PANDA ]]; then - cp /mnt/usr/mdec/panda/{mlo,u-boot.img} /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} ; |