Created attachment 253664 [details] Failed to load kerel Overview: FreeBSD 13.4 bootloader rev 3.0 fails with mfsbsd-created image Steps to Reproduce: - Create a mfbsd image with FreeBSD13.4 ISO with either master or 2.3 branch of mfbsd - Load it via pxe Brief note on the issue. When I attempted to create an image with mfsbsd and install it on a KVM VM, the bootloader failed to load the kernel. However, when using bootloader revision 1.0 with the same image, both the kernel and mfsroot loaded into memory successfully. After several attempts, I created the mfsbsd image with the kernel and mfsroot in an uncompressed format (instead of .gz) resolved the issue. Iām uncertain whether the bootstrap loader has stopped supporting or decompressing .gz files. Thanks!!
The BIOS loader no longer includes gzip support as of 35d217ae021cbbde1e7e02dd7a8534235be5741a (in stable/13) Unfortunately it appears this information did not make it into the release notes for 13.4.
Thanks for confirming it ED Maste!! Can I simply change the LOADER_GZIP_SUPPORT setting to enabled in the file below, or do I need to make changes elsewhere as well to , so that i can make ISO out of it. a/stand/i386/loader/Makefile b/stand/i386/loader/Makefile
(In reply to karthigeyanh from comment #2) Yes. You can just add that. It also works if you add LOADER_GZIP_SUPPORT=yes in your /etc/make.conf file, but it's global to all loaders. This was a mistake on my part in 13.4 (and I think 14.1). 14.2 has this fixed (we use the text mode loader instead of the graphics mode loader for BIOS). I've merged the change the sense of this stuff to stable/13 as well (I believe, if not, I'll do it shortly). I'm closing this since it's been fixed in a newer version.