> From: Lwazi Dube <lwa...@gmail.com> > Date: Wed, 4 Jan 2023 12:21:16 -0500 > > I am trying to install this: > https://cdn.openbsd.org/pub/OpenBSD/snapshots/armv7/ > I want my rootfs on sd1. The bootloader can live on the MMC - I know I > have no choice.
Here are basically your options: * Wipe your uSD-card and put u-boot back onto it (and only u-boot). This is what I usually do, since it makes it easy to change the "firmware" of the board by simply swapping the uSD card. * Change the u-boot boot-order by setting the "boot_targets" environment variable. Interrupt the automatic boot and at the u-boot prompt type something like: => setenv boot_targets usb0 mmc0 pxe dhcp => saveenv => boot Best to look at the boot_targets varible first with: => printenv boot_targets and then reorder it to your taste.