diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2015-06-03 01:30:30 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2015-06-03 01:30:30 +0000 |
commit | 954a2a71a7aa26a4b3a929bc9dba12bec2b479d2 (patch) | |
tree | e751fd8a07ec3ce4408d6613bac1f3b62c169d20 /distrib | |
parent | 5eb9332643f0d2887d8cee44721d45bb4b406a48 (diff) |
missing __EOT spotted by rpe@
Diffstat (limited to 'distrib')
-rw-r--r-- | distrib/armv7/ramdisk/install.md | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/distrib/armv7/ramdisk/install.md b/distrib/armv7/ramdisk/install.md index ec601121f8e..7bba69c6375 100644 --- a/distrib/armv7/ramdisk/install.md +++ b/distrib/armv7/ramdisk/install.md @@ -1,4 +1,4 @@ -# $OpenBSD: install.md,v 1.12 2015/06/02 19:54:06 rpe Exp $ +# $OpenBSD: install.md,v 1.13 2015/06/03 01:30:29 jsg Exp $ # # # Copyright (c) 1996 The NetBSD Foundation, Inc. @@ -94,13 +94,14 @@ __EOT if [[ -n $CUBOX ]]; then cat > /tmp/boot.cmd<<__EOT ; setenv loadaddr ${LOADADDR} ; setenv bootargs sd0i:/bsd.umg ; for dtype in usb mmc ; do for disk in 0 1 ; do \${dtype} dev \${disk} ; for fs in fat ext2 ; do if \${fs}load \${dtype} \${disk}:1 \${loadaddr} bsd.umg ; then bootm \${loadaddr} ; fi ; done; done; done; echo; echo failed to load bsd.umg +__EOT mkuboot -t script -a arm -o linux /tmp/boot.cmd /mnt/mnt/boot.scr dd if=/mnt/usr/mdec/cubox/SPL of=/dev/${_disk}c bs=1024 seek=1 dd if=/mnt/usr/mdec/cubox/u-boot.img of=/dev/${_disk}c bs=1024 seek=42 elif [[ -n $NITROGEN ]]; then cat > /tmp/6x_bootscript.scr<<__EOT ; setenv loadaddr ${LOADADDR} ; setenv bootargs sd0i:/bsd.umg ; for dtype in sata mmc ; do for disk in 0 1 ; do \${dtype} dev \${disk} ; for fs in fat ext2 ; do if \${fs}load \${dtype} \${disk}:1 \${loadaddr} bsd.umg ; then bootm \${loadaddr} ; fi ; done; done; done; echo; echo failed to load bsd.umg - __EOT +__EOT mkuboot -t script -a arm -o linux /tmp/6x_bootscript.scr /mnt/mnt/6x_bootscript fi elif [[ ${MDPLAT} == "SUNXI" ]]; then |