diff options
Diffstat (limited to 'src/scripts/22iso.sh')
-rw-r--r-- | src/scripts/22iso.sh | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/src/scripts/22iso.sh b/src/scripts/22iso.sh new file mode 100644 index 000000000..bb67ef9b4 --- /dev/null +++ b/src/scripts/22iso.sh @@ -0,0 +1,36 @@ +#!/bin/sh + +# make-live - utility to build Debian Live systems +# +# Copyright (C) 2006 Daniel Baumann <daniel@debian.org> +# Copyright (C) 2006 Marco Amadori <marco.amadori@gmail.com> +# +# make-live comes with ABSOLUTELY NO WARRANTY; for details see COPYING. +# This is free software, and you are welcome to redistribute it +# under certain conditions; see COPYING for details. + +Iso () +{ + mkdir -p "${LIVE_ROOT}"/image/casper + + # Generating rootfs image + Genrootfs + + # Installing syslinux + Syslinux iso + + # Installing linux-image + Linuximage iso + + # Installing memtest + Memtest iso + + # Installing templates + cp -r "${LIVE_TEMPLATES}"/iso/* "${LIVE_ROOT}"/image + + # Calculating md5sums + Md5sum + + # Creating image + Mkisofs +} |