I just followed the excellent INSTALL.octeon, but had a difficult time
updating the bootcmd. I think U-boot needs to boot the "bsd" file,
not the "boot" file (there isn't one, afaik). Patch below:
$ cat mypatch
702c702
< fatload <bootdev> 0 ${loadaddr} boot; bootoctlinux rootdev=sd0
---
> fatload <bootdev> 0 ${loadaddr} bsd; bootoctlinux rootdev=sd0
712c712
< fatload usb 0 ${loadaddr} boot; bootoctlinux rootdev=sd0 numcores=2
---
> fatload usb 0 ${loadaddr} bsd; bootoctlinux rootdev=sd0 numcores=2
717c717
< usb reset; fatload usb 0 ${loadaddr} boot; bootoctlinux
rootdev=sd0 numcores=2
---
> usb reset; fatload usb 0 ${loadaddr} bsd; bootoctlinux rootdev=sd0
> numcores=2
Otherwise, I think this is great, and so far, works like a charm.
Thanks OpenBSD!!
Bryan