### Build Bootable ISO with Custom World/Kernel Source: https://github.com/mmatuska/mfsbsd/blob/master/BUILD.md Create a bootable ISO image using a custom world and kernel. Requires `CUSTOM=1` and optionally `BUILDWORLD=1` and `BUILDKERNEL=1`. ```bash make iso CUSTOM=1 BUILDWORLD=1 BUILDKERNEL=1 ``` -------------------------------- ### Build Bootable ISO with Distribution Source: https://github.com/mmatuska/mfsbsd/blob/master/BUILD.md Create a bootable ISO image using a FreeBSD distribution. Specify the base path to the distribution files. ```bash make iso BASE=/cdrom/usr/freebsd-dist ``` ```bash make iso BASE=/cdrom/10.2-RELEASE ``` -------------------------------- ### Build GCE-compatible Tarball with Distribution Source: https://github.com/mmatuska/mfsbsd/blob/master/BUILD.md Create a GCE-compatible .tar.gz file using a FreeBSD distribution. Specify the base path to the distribution files. ```bash make gce BASE=/cdrom/11.0-RELEASE ``` -------------------------------- ### Build Roothack Edition ISO Source: https://github.com/mmatuska/mfsbsd/blob/master/BUILD.md Create a bootable ISO image with the roothack edition enabled. Requires `CUSTOM=1`, `BUILDWORLD=1`, `BUILDKERNEL=1`, and `ROOTHACK=1`. ```bash make iso CUSTOM=1 BUILDWORLD=1 BUILDKERNEL=1 ROOTHACK=1 ``` -------------------------------- ### Build Custom Release Edition ISO Source: https://github.com/mmatuska/mfsbsd/blob/master/BUILD.md Create a bootable ISO image using a specific FreeBSD release distribution. Specify `BASE`, `RELEASE`, and `TARGET`. ```bash make iso BASE=/cdrom/11.0-RELEASE RELEASE=11.0-RELEASE TARGET=amd64 ``` -------------------------------- ### Build Disk Image with Distribution Source: https://github.com/mmatuska/mfsbsd/blob/master/BUILD.md Build a disk image using a FreeBSD distribution. Specify the base path to the distribution files. ```bash make BASE=/cdrom/usr/freebsd-dist ``` ```bash make BASE=/cdrom/10.2-RELEASE ``` -------------------------------- ### Build Tarball with Distribution Source: https://github.com/mmatuska/mfsbsd/blob/master/BUILD.md Create a .tar.gz file using a FreeBSD distribution. Specify the base path to the distribution files. ```bash make tar BASE=/cdrom/usr/freebsd-dist ``` ```bash make tar BASE=/cdrom/10.2-RELEASE ``` -------------------------------- ### Build Disk Image with Custom World/Kernel Source: https://github.com/mmatuska/mfsbsd/blob/master/BUILD.md Build a disk image using a custom world and kernel. Requires `CUSTOM=1` and optionally `BUILDWORLD=1` and `BUILDKERNEL=1`. ```bash make CUSTOM=1 BUILDWORLD=1 BUILDKERNEL=1 ``` -------------------------------- ### Build GCE-compatible Tarball with Custom World/Kernel Source: https://github.com/mmatuska/mfsbsd/blob/master/BUILD.md Create a GCE-compatible .tar.gz file using a custom world and kernel. Requires `CUSTOM=1` and optionally `BUILDWORLD=1` and `BUILDKERNEL=1`. ```bash make gce CUSTOM=1 BUILDWORLD=1 BUILDKERNEL=1 ``` -------------------------------- ### Build Tarball with Custom World/Kernel Source: https://github.com/mmatuska/mfsbsd/blob/master/BUILD.md Create a .tar.gz file using a custom world and kernel. Requires `CUSTOM=1` and optionally `BUILDWORLD=1` and `BUILDKERNEL=1`. ```bash make tar CUSTOM=1 BUILDWORLD=1 BUILDKERNEL=1 ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.