Hi! 
I am currently attempting to create a FreeBSD-based Operating System, although I'm not building from source.
I download base.txz and kernel.txz and extracted them
I already had my modification done and had copied them into their designated directories
Then i tried to creating an ISO using
xorriso()
The ISO was created successfully, but it remains unbootable.
I'm currently aiming for Legacy BIOS only as that's what I primarily use when testing although UEFI support would be nice too.
Is there anything I may be missing in the command, for I have no clue where to go from this point.
Note: I was doing all of this via linux as I do not have FreeBSD installed on my machine, and this method works presumably on both platforms either way.
Thanks in advance

I am currently attempting to create a FreeBSD-based Operating System, although I'm not building from source.
I download base.txz and kernel.txz and extracted them
# im doing this in a bash script on linux, hence the variable
tar -xpvf base.txz -C "$WORKDIR" --same-owner
tar -xpvf kernel.txz -C "$WORKDIR" --same-owner
I already had my modification done and had copied them into their designated directories
Then i tried to creating an ISO using
xorriso()
xorriso -as mkisofs -o "$ISO_NAME".iso -V "QUARTZOS" -b "boot/cdboot" -no-emul-boot -boot-load-size 4 -boot-info-table -r -J "$WORKDIR"/
The ISO was created successfully, but it remains unbootable.
I'm currently aiming for Legacy BIOS only as that's what I primarily use when testing although UEFI support would be nice too.
Is there anything I may be missing in the command, for I have no clue where to go from this point.
Note: I was doing all of this via linux as I do not have FreeBSD installed on my machine, and this method works presumably on both platforms either way.
Thanks in advance
