diff options
author | 2015-06-03 01:30:29 +0000 | |
---|---|---|
committer | 2015-06-03 01:30:29 +0000 | |
commit | f8f0c30f39e1dc6432afd7e41a9975113aaf5ebd (patch) | |
tree | fc00dbdc8579b5f82d6e9dc90b68bff176a53d9e | |
parent | there's been a long standing issue in ppp on a tty/serial line where it allocates mbufs at IPL_SOFTTTY, which is above the IPL_NET the mbuf layer protects itself at. (diff) | |
download | wireguard-openbsd-f8f0c30f39e1dc6432afd7e41a9975113aaf5ebd.tar.xz wireguard-openbsd-f8f0c30f39e1dc6432afd7e41a9975113aaf5ebd.zip |
missing __EOT spotted by rpe@
-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 |