Chris Cappuccio [ch...@nmedia.net] wrote:
>   b. Format the UEFI partition on softraid disks:
>        newfs_msdos /dev/sd0i
>        newfs_msdos /dev/sd1i 
>   c. Get BOOTX64.EFI and BOOTIA32.EFI:
>        ftp ftp.openbsd.org
>        cd pub/OpenBSD/snapshots/amd64/
>        lcd /tmp
>        get BOOTX64.EFI
>        get BOOTIA32.EFI
>   d. Copy to FAT /EFI/BOOT/
>        mount /dev/sd0i /mnt
>        cp /tmp/BOOTX64.EFI /tmp/BOOTIA32.EFI /mnt
>        umount /mnt
>        mount /dev/sd1i /mnt
>        cp /tmp/BOOTX64.EFI /tmp/BOOTIA32.EFI /mnt
>        umount /mnt

Whoops, step d. should read:

mount /dev/sd0i /mnt
mkdir -p /mnt/efi/boot/
cp /tmp/BOOTX64.EFI /tmp/BOOTIA32.EFI /mnt/efi/boot/
umount /mnt
mount /dev/sd1i /mnt
mkdir -p /mnt/efi/boot/
cp /tmp/BOOTX64.EFI /tmp/BOOTIA32.EFI /mnt/efi/boot/
umount /mnt

Reply via email to