blob: 6f60a5ffb750b703d309ec18454f96b80394feb2 (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
#!/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 ()
{
if [ ! -f "${LIVE_ROOT}"/.stage/image_binary ]
then
# Configure chroot
Patch_chroot apply
Patch_runlevel apply
# Configure network
Patch_network apply
mkdir -p "${LIVE_ROOT}"/binary/casper
for MANIFEST in "${LIVE_ROOT}"/filesystem.manifest*
do
if [ -e "${MANIFEST}" ]; then
mv "${MANIFEST}" "${LIVE_ROOT}"/binary/casper/
fi
done
# Remove indices
rm -rf "${LIVE_CHROOT}"/var/cache/apt
mkdir -p "${LIVE_CHROOT}"/var/cache/apt/archives/partial
rm -rf "${LIVE_CHROOT}"/var/lib/apt/lists
mkdir -p "${LIVE_CHROOT}"/var/lib/apt/lists/partial
# Switching package indices to default
if [ "${LIVE_GENERIC_INDICES}" = "yes" ]
then
Indices default
fi
# Deconfigure network
Patch_network deapply
# Deconfigure chroot
Patch_runlevel deapply
Patch_chroot deapply
# Generating rootfs image
Genrootfs
# Configure chroot
Patch_chroot apply
Patch_runlevel apply
# Configure network
Patch_network apply
# Remove indices
rm -rf "${LIVE_CHROOT}"/var/cache/apt
mkdir -p "${LIVE_CHROOT}"/var/cache/apt/archives/partial
rm -rf "${LIVE_CHROOT}"/var/lib/apt/lists
mkdir -p "${LIVE_CHROOT}"/var/lib/apt/lists/partial
# Switching package indices to custom
Indices custom
# Installing syslinux
Syslinux iso
# Installing linux-image
Linuximage iso
# Installing memtest
Memtest iso
# Deconfigure network
Patch_network deapply
# Deconfigure chroot
Patch_runlevel deapply
Patch_chroot deapply
# Installing templates
if [ "${LIVE_FLAVOUR}" != "minimal" ]
then
cp -r "${LIVE_TEMPLATES}"/iso/* "${LIVE_ROOT}"/binary
cp -r "${LIVE_TEMPLATES}"/common/* "${LIVE_ROOT}"/binary
fi
# Calculating md5sums
Md5sum
# Creating image
Mkisofs binary
# Touching stage file
touch "${LIVE_ROOT}"/.stage/image_binary
fi
if [ ! -f "${LIVE_ROOT}"/.stage/image_source ] && [ "${LIVE_SOURCE}" = "yes" ]
then
# Configure chroot
Patch_chroot apply
Patch_runlevel apply
# Configure network
Patch_network apply
# Downloading sources
Sources
# Deconfigure network
Patch_network deapply
# Deconfigure chroot
Patch_runlevel deapply
Patch_chroot deapply
# Creating image
Mkisofs source
# Touching stage file
touch "${LIVE_ROOT}"/.stage/image_source
fi
}
|