blob: bb67ef9b4d8e891219a411138ab51a69a16510aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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
}
|