begin to write down how to create iso
Signed-off-by: Nico Schottelius <nico@wurzel.schottelius.org>
This commit is contained in:
parent
75e3f3c90f
commit
1a52df0ddc
1 changed files with 14 additions and 0 deletions
14
hacking/create_iso.sh
Normal file
14
hacking/create_iso.sh
Normal file
|
@ -0,0 +1,14 @@
|
|||
#!/bin/sh
|
||||
|
||||
# FIXME: include os explorer to name preos
|
||||
|
||||
indir=./iso
|
||||
|
||||
version=0.3
|
||||
out=preos-${version}.iso
|
||||
|
||||
genisoimage -r -V "cdist preos v0.2" \
|
||||
-cache-inodes -J -l \
|
||||
-no-emul-boot \
|
||||
-boot-load-size 4 -b isolinux.bin -c boot.cat \
|
||||
-o cdist-preos.iso $indir
|
Loading…
Reference in a new issue