From 1a52df0ddc06660eea4fff7e7f59759415a07401 Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Wed, 13 May 2015 08:39:22 +0200 Subject: [PATCH] begin to write down how to create iso Signed-off-by: Nico Schottelius --- hacking/create_iso.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 hacking/create_iso.sh diff --git a/hacking/create_iso.sh b/hacking/create_iso.sh new file mode 100644 index 00000000..23e8a0e3 --- /dev/null +++ b/hacking/create_iso.sh @@ -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