diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2016-03-27 00:40:39 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2016-03-27 00:40:39 +0000 |
commit | c260a2ef606d187a67e1446b6bce63d66aaa1655 (patch) | |
tree | 2682a3465857b2cfdc66a0f1c81ed73023d39f52 /distrib/armv7/ramdisk | |
parent | 77ef9fbed3b3708ed084573703f3d7d08b23f8e6 (diff) |
Switch from the solidrun i.mx6 u-boot to mainline u-boot on cubox i.
The offset of u-boot.img in the disk image changes to be the same as
wandboard.
Diffstat (limited to 'distrib/armv7/ramdisk')
-rw-r--r-- | distrib/armv7/ramdisk/install.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/armv7/ramdisk/install.md b/distrib/armv7/ramdisk/install.md index b6fd803619d..fcd867008b0 100644 --- a/distrib/armv7/ramdisk/install.md +++ b/distrib/armv7/ramdisk/install.md @@ -1,4 +1,4 @@ -# $OpenBSD: install.md,v 1.25 2016/03/27 00:29:09 jsg Exp $ +# $OpenBSD: install.md,v 1.26 2016/03/27 00:40:38 jsg Exp $ # # # Copyright (c) 1996 The NetBSD Foundation, Inc. @@ -111,7 +111,7 @@ __EOT dd if=/mnt/usr/mdec/cubox/SPL \ of=/dev/${_disk}c bs=1024 seek=1 >/dev/null dd if=/mnt/usr/mdec/cubox/u-boot.img \ - of=/dev/${_disk}c bs=1024 seek=42 >/dev/null + of=/dev/${_disk}c bs=1024 seek=69 >/dev/null 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 |