Add files via upload

A useful base boot structure for Hybrid-ISOs with Sol-OS as an example.
This commit is contained in:
2019-02-24 00:58:14 -06:00
committed by GitHub
parent f2c94e82b2
commit bd11d32108
12 changed files with 79 additions and 0 deletions

11
Boot_Structure/makeIso.sh Normal file
View File

@@ -0,0 +1,11 @@
#!/bin/bash
. ../CONFIG
function main() {
mkisofs -o ../"${NAME}".iso \
-b isolinux/isolinux.bin -c isolinux/boot.cat \
-no-emul-boot -boot-load-size 4 -boot-info-table \
.
}
main;