Last active
August 29, 2015 14:01
-
-
Save flusher/695972ab811c23edbb94 to your computer and use it in GitHub Desktop.
Create FreeDOS bootable ISO from FDOS OEM CD builder
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Create FreeDOS bootable ISO from FDOS OEM CD builder | |
# @see http://www.fdos.org/bootdisks | |
mkisofs -o fdoem.iso -b isolinux/isolinux.bin -no-emul-boot -boot-load-size 4 -boot-info-table -N -J -r -c _$ -hide-joliet _$ -hide _$ CDROOT |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment