mfsBSD 13 fails on PXE boot

In case anyone has a PXE server and uses it to boot mfsBSD, which is an excellent way to boot FreeBSD BTW, can you try the latest release? Previous releases have worked, 13 stops with:
Code:
panic: bio_alloc()/bio_free() mismatch
No idea what that means.
 
works for me
using ipxe
ipxe config file
Code:
#!ipxe
  initrd http://10.1.1.1/boot/13/mfbsd.iso
  kernel http://10.1.1.1/boot/memdisk
  imgargs memdisk iso raw
  boot
dhcpd.conf
Code:
option root-path "tftp://10.1.1.1/";
                if exists user-class and option user-class = "iPXE" {
                      filename "http://10.1.1.1/boot/rb.php";
                      option root-path "10.1.1.1:/wtf";
                  } elsif option client-architecture = 00:00 {
                      filename "undionly.kpxe";
                  } else {
                      filename "ipxe.efi";
                  }
it works on real hardware, fails on virtualbox while fetching the iso
 
works for me
using ipxe
ipxe config file
Code:
#!ipxe
  initrd http://10.1.1.1/boot/13/mfbsd.iso
  kernel http://10.1.1.1/boot/memdisk
  imgargs memdisk iso raw
  boot
I never managed to get anywhere with IPXE, I did spend some time reading about it but never managed to set it up.

Do you have an easy to follow guide?
 
Back
Top