Codebase list live-build / 683949f
Imported Upstream version 5.0~a11 Sophie Brun 8 years ago
269 changed file(s) with 3646 addition(s) and 7261 deletion(s). Raw diff Collapse all Expand all
33
44 LANGUAGES = $(shell cd manpages/po && ls)
55
6 SCRIPTS = frontend/cli/* frontend/cgi/live-build-cgi frontend/cgi/live-build-cgi.cron functions/* examples/auto/* examples/hooks/* scripts/*.sh scripts/*/* share/bin/* share/hooks/*
6 SCRIPTS = frontend/* functions/* examples/auto/* examples/hooks/* scripts/*.sh scripts/*/* share/bin/* share/hooks/*/*
77
88 all: build
99
3939 install:
4040 # Installing shared data
4141 mkdir -p $(DESTDIR)/usr/share/live/build
42 cp -r frontend/cgi data functions templates VERSION $(DESTDIR)/usr/share/live/build
42 cp -r data functions VERSION $(DESTDIR)/usr/share/live/build
4343 cp -r share/* $(DESTDIR)/usr/share/live/build
4444
4545 # Installing executables
4646 mkdir -p $(DESTDIR)/usr/bin
47 cp -a frontend/cli/* $(DESTDIR)/usr/bin
47 cp -a frontend/* $(DESTDIR)/usr/bin
4848
4949 mkdir -p $(DESTDIR)/usr/lib/live
5050 cp -a scripts/* $(DESTDIR)/usr/lib/live
0 4.0.4-1
0 5.0~a11-1
+0
-1
data/debian-cd/lucid less more
0 maverick
+0
-4
data/debian-cd/maverick/amd64_netinst_udeb_include less more
0 netcfg
1 ethdetect
2 pcmcia-cs-udeb
3 wireless-tools-udeb
+0
-4
data/debian-cd/maverick/amd64_udeb_include less more
0 netcfg
1 ethdetect
2 pcmcia-cs-udeb
3 wireless-tools-udeb
+0
-4
data/debian-cd/maverick/armel_netinst_udeb_include less more
0 netcfg
1 ethdetect
2 pcmcia-cs-udeb
3 wireless-tools-udeb
+0
-4
data/debian-cd/maverick/armel_udeb_include less more
0 netcfg
1 ethdetect
2 pcmcia-cs-udeb
3 wireless-tools-udeb
+0
-1
data/debian-cd/maverick/exclude-udebs less more
0 kernel-image-*
+0
-5
data/debian-cd/maverick/i386_businesscard_udeb_include less more
0 choose-mirror
1 netcfg
2 ethdetect
3 pcmcia-cs-udeb
4 wireless-tools-udeb
+0
-4
data/debian-cd/maverick/i386_netinst_udeb_include less more
0 netcfg
1 ethdetect
2 pcmcia-cs-udeb
3 wireless-tools-udeb
+0
-4
data/debian-cd/maverick/i386_udeb_include less more
0 netcfg
1 ethdetect
2 pcmcia-cs-udeb
3 wireless-tools-udeb
+0
-4
data/debian-cd/maverick/ia64_netinst_udeb_include less more
0 netcfg
1 ethdetect
2 pcmcia-cs-udeb
3 wireless-tools-udeb
+0
-4
data/debian-cd/maverick/ia64_udeb_include less more
0 netcfg
1 ethdetect
2 pcmcia-cs-udeb
3 wireless-tools-udeb
+0
-4
data/debian-cd/maverick/powerpc_businesscard_udeb_include less more
0 choose-mirror
1 netcfg
2 ethdetect
3 wireless-tools-udeb
+0
-3
data/debian-cd/maverick/powerpc_netinst_udeb_include less more
0 netcfg
1 ethdetect
2 wireless-tools-udeb
+0
-4
data/debian-cd/maverick/powerpc_udeb_include less more
0 netcfg
1 ethdetect
2 pcmcia-cs-udeb
3 wireless-tools-udeb
+0
-4
data/debian-cd/maverick/udeb_include less more
0 netcfg
1 ethdetect
2 pcmcia-cs-udeb
3 wireless-tools-udeb
+0
-1
data/debian-cd/wheezy less more
0 squeeze
44 binary*.contents
55 binary*.packages
66 binary*.zsync
7 live-image-*
87
98 .build/
109 build.log
1312
1413 chroot/
1514 chroot.packages.*
16 chroot.files
1715
1816 config/binary
1917 config/bootstrap
2119 config/common
2220 config/source
2321
24 config/build
22 config/control
2523
2624 source/
2725 source*.iso
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
+0
-21
frontend/cgi/Makefile less more
0 # Makefile
1
2 install:
3 install -D -m 0755 live-build-cgi $(DESTDIR)/usr/lib/cgi-bin/live-build
4 install -D -m 0755 live-build-cgi.cron $(DESTDIR)/etc/cron.hourly/live-build-cgi
5 install -D -m 0644 live-build-cgi.crontab $(DESTDIR)/etc/cron.d/live-build-cgi
6 install -D -m 0644 live-build-cgi.default $(DESTDIR)/etc/default/live-build-cgi
7 install -D -m 0644 live-build-cgi.logrotate $(DESTDIR)/etc/logrotate.d/live-build-cgi
8
9 install -d -m 0755 $(DESTDIR)/var/log
10 touch $(DESTDIR)/var/log/live
11 chown www-data:www-data $(DESTDIR)/var/log/live
12
13 uninstall:
14 rm -f $(DESTDIR)/usr/lib/cgi-bin/live-build
15 rm -f $(DESTDIR)/etc/cron.d/live-build-cgi
16 rm -f $(DESTDIR)/etc/cron.hourly/live-build-cgi
17 rm -f $(DESTDIR)/etc/default/live-build-cgi
18 rm -f $(DESTDIR)/etc/logrotate.d/live-build-cgi
19
20 reinstall: uninstall install
+0
-220
frontend/cgi/live-build-cgi less more
0 #!/bin/sh
1
2 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
4 ##
5 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
6 ## This is free software, and you are welcome to redistribute it
7 ## under certain conditions; see COPYING for details.
8
9
10 # Including common functions
11 . /usr/lib/live/build.sh
12
13 # Reading defaults
14 if [ -r /etc/default/live-build-cgi ]
15 then
16 . /etc/default/live-build-cgi
17 else
18 echo "E: /etc/default/live-build-cgi missing"
19 exit 1
20 fi
21
22 _HOSTNAME="$(hostname -f)"
23
24 # Turn on debug if true
25 if [ "${_DEBUG}" = "true" ]
26 then
27 set -x
28 fi
29
30 # Sending http header
31 echo "Content-type: text/html"
32 echo
33
34 # If we are passed something then read it in.
35 if [ "$REQUEST_METHOD" = "POST" ] && [ "$CONTENT_LENGTH" -gt 0 ]
36 then
37 #QUERY_STRING=`cat /dev/stdin`
38 QUERY_STRING=$(cat /dev/stdin)
39 #read -n $CONTENT_LENGTH POST_DATA <&0
40 fi
41
42 # Translate parameters
43 QUERY_STRING=$(echo "${POST_DATA}" | sed -e 's/%2F/\//g' -e 's/+/ /g' -e 's/%3B/;/g' -e 's/%7E/~/g' -e 's/%3A/:/g' -e 's/%40/@/g' -e 's/%3D/=/g' -e 's/%2B/+/g')
44 # Debug the filtering string
45 # echo ${QUERY_STRING}
46
47
48 # Sending html header
49 cat "${_TEMPLATES}"/header.html
50
51 # CGI
52 if [ -z "${QUERY_STRING}" ]
53 then
54 # Sending html form
55 sed -e "s/VERSION/${VERSION}/" \
56 -e "s/DATE/`date +%Y%m%d-%H:%M`/" \
57 "${_TEMPLATES}"/form.html
58 else
59 # Converting spaces: sed 's/+/ /g'
60 # Converting '@': sed 's/%40/@/g'
61 # Converting ':': sed 's/%3A/:/g'
62 # Converting ';': sed 's/%3B/\;/g'
63 # Converting '/': sed 's/%2F/\//g'
64 # Converting '~': sed 's/%7E/\~/g'
65 # Converting '=': sed 's/%3D/=/g'
66 # Converting '+': sed 's/%2B/+/g'
67
68 # Email
69 _EMAIL=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])email=[-0-9a-zA-Z._@]+' | cut -f 2 -d '=' | head -n1)
70
71 # CGI Packages List
72 _LB_CGIPACKAGES=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])cgipackages=[-0-9a-zA-Z. _+]+' | cut -f 2 -d '=' | head -n1)
73
74 # CGI Config for git
75 _LB_CONFIG=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])config=[-a-z]+' | cut -f 2 -d '=' | head -n1)
76
77 # Standard options
78 LIVE_IMAGE_TYPE=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])binary_images=[-a-z]+' | cut -f 2 -d '=' | head -n1)
79 LB_DISTRIBUTION=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])distribution=[a-z]+' | cut -f 2 -d '=' | head -n1)
80 LB_APT=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])apt=[a-u]+' | cut -f 2 -d '=' | head -n1)
81
82 # Advanced bootstrap options
83 LB_ARCHITECTURES=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])architectures=[0-9a-z]+' | cut -f 2 -d '=' | head -n1)
84 LB_ARCHIVE_AREAS=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])archive_areas=[a-z]+' | cut -f 2 -d '=' | head -n1)
85
86 # Advanced chroot options
87 LB_CHROOT_FILESYSTEM=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])chroot_filesystem=[0-9a-z]+' | cut -f 2 -d '=' | head -n1)
88 LB_LINUX_FLAVOURS=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])linux_flavours=[-0-9a-z]+' | cut -f 2 -d '=' | head -n1)
89 LB_SECURITY=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])security=[a-z]+' | cut -f 2 -d '=' | head -n1)
90
91 # Advanced binary options
92 LB_APT_INDICES=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])apt_indices=[a-z]+' | cut -f 2 -d '=' | head -n1)
93 LB_BOOTAPPEND_INSTALL=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])bootappend_install=[-0-9a-zA-Z. _+=:/]+' | cut -f2- -d '=' | head -n1)
94 LB_BOOTAPPEND_LIVE=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])bootappend_live=[-0-9a-zA-Z. _+=:/]+' | cut -f2- -d '=' | head -n1)
95 LB_BOOTLOADER=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])bootloader=[a-z]+' | cut -f 2 -d '=' | head -n1)
96 LB_DEBIAN_INSTALLER=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])debian_installer=[a-z]+' | cut -f 2 -d '=' | head -n1)
97 LB_ISO_APPLICATION=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])iso_application=[-0-9a-zA-Z. ~;:/_]+' | cut -f 2 -d '=' | head -n1)
98 LB_ISO_PREPARER=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])iso_preparer=[-0-9a-zA-Z. ~;:/_]+' | cut -f 2 -d '=' | head -n1)
99 LB_ISO_PUBLISHER=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])iso_publisher=[-0-9a-zA-Z. ~;:/_@]+' | cut -f 2 -d '=' | head -n1)
100 LB_ISO_VOLUME=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])iso_volume=[-0-9a-zA-Z. ~;:/_]+' | cut -f 2 -d '=' | head -n1)
101 LB_MEMTEST=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])memtest=[0-9a-z+]+' | cut -f 2 -d '=' | head -n1)
102 LB_NET_ROOT_PATH=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])net_path=[-0-9a-zA-Z._/]+' | cut -f 2 -d '=' | head -n1)
103 LB_NET_ROOT_SERVER=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])net_server=[0-9.]+' | cut -f 2 -d '=' | head -n1)
104
105 # Advanced source options
106 LB_SOURCE=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])source=[a-z]+' | cut -f 2 -d '=' | head -n1)
107 LB_SOURCE_IMAGES=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])source_images=[a-z]+' | cut -f 2 -d '=' | head -n1)
108
109 # FIXME: filter invalid options
110 unset QUERY_STRING
111
112 if [ -z "${_EMAIL}" ]
113 then
114 echo "<h2><div style='color: red;'>Error: No email address specified.</div></h2>"
115
116 sed -e "s/VERSION/${VERSION}/" \
117 -e "s/DATE/`date +%Y%m%d-%H:%M`/" \
118 "${_TEMPLATES}"/form.html
119
120 exit
121 fi
122
123 # Getting build identifier
124 _BUILD=$(date +%Y%m%d.%H%M%S.%N)
125
126 # Getting number of builds pending.
127 _QUEUENUM=$(ls "${_TEMPDIR}"/*.build | wc -l)
128
129 #echo "${QUERY_STRING}"
130 # Sending html confirmation
131 # Note: On each string remember to use a delimeter that is not in the string.
132 sed -e "s/BUILD/${_BUILD}/g" \
133 -e "s/EMAIL/${_EMAIL}/" \
134 -e "s/QUEUENUM/${_QUEUENUM}/" \
135 -e "s/LIVE_IMAGE_TYPE/${LIVE_IMAGE_TYPE}/" \
136 -e "s/LB_DISTRIBUTION/${LB_DISTRIBUTION}/" \
137 -e "s#_LB_CONFIG#${_LB_CONFIG}#" \
138 -e "s/LB_APT_INDICES/${LB_APT_INDICES}/" \
139 -e "s/LB_APT/${LB_APT}/" \
140 -e "s/_LB_CGIPACKAGES/${_LB_CGIPACKAGES}/" \
141 -e "s/LB_ARCHITECTURES/${LB_ARCHITECTURES}/" \
142 -e "s/LB_ARCHIVE_AREAS/${LB_ARCHIVE_AREAS}/" \
143 -e "s/LB_CHROOT_FILESYSTEM/${LB_CHROOT_FILESYSTEM}/" \
144 -e "s/LB_LINUX_FLAVOURS/${LB_LINUX_FLAVOURS}/" \
145 -e "s/LB_SECURITY/${LB_SECURITY}/" \
146 -e "s#LB_BOOTAPPEND_INSTALL#${LB_BOOTAPPEND_INSTALL}#" \
147 -e "s#LB_BOOTAPPEND_LIVE#${LB_BOOTAPPEND_LIVE}#" \
148 -e "s/LB_BOOTLOADER/${LB_BOOTLOADER}/" \
149 -e "s/LB_DEBIAN_INSTALLER/${LB_DEBIAN_INSTALLER}/" \
150 -e "s#LB_ISO_APPLICATION#${LB_ISO_APPLICATION}#" \
151 -e "s#LB_ISO_PREPARER#${LB_ISO_PREPARER}#" \
152 -e "s#LB_ISO_PUBLISHER#${LB_ISO_PUBLISHER}#" \
153 -e "s#LB_ISO_VOLUME#${LB_ISO_VOLUME}#" \
154 -e "s/LB_MEMTEST/${LB_MEMTEST}/" \
155 -e "s#LB_NET_ROOT_PATH#${LB_NET_ROOT_PATH}#" \
156 -e "s/LB_NET_ROOT_SERVER/${LB_NET_ROOT_SERVER}/" \
157 -e "s#SERVER#${_SERVER}#g" \
158 -e "s/LB_SOURCE_IMAGES/${LB_SOURCE_IMAGES}/" \
159 -e "s/LB_SOURCE/${LB_SOURCE}/" \
160 "${_TEMPLATES}"/build.html
161
162 # Creating temporary directory
163 mkdir -p "${_TEMPDIR}"
164
165 # Writing build file
166 cat > "${_TEMPDIR}"/"${_BUILD}".build << EOF
167 # live-build-cgi "${VERSION}" build file
168 # `date -R`
169
170 _BUILD="${_BUILD}"
171 _EMAIL="${_EMAIL}"
172
173 REMOTE_ADDR="${REMOTE_ADDR}"
174
175 # CGI Packages List
176 _LB_CGIPACKAGES="${_LB_CGIPACKAGES}"
177
178 # CGI Config for git
179 _LB_CONFIG="${_LB_CONFIG}"
180
181 # Standard options
182 LIVE_IMAGE_TYPE="${LIVE_IMAGE_TYPE}"
183 LB_DISTRIBUTION="${LB_DISTRIBUTION}"
184 LB_APT="${LB_APT}"
185
186 # Advanced bootstrap options
187 LB_ARCHITECTURES="${LB_ARCHITECTURES}"
188 LB_ARCHIVE_AREAS="${LB_ARCHIVE_AREAS}"
189
190 # Advanced chroot options
191 LB_CHROOT_FILESYSTEM="${LB_CHROOT_FILESYSTEM}"
192 LB_LINUX_FLAVOURS="${LB_LINUX_FLAVOURS}"
193 LB_SECURITY="${LB_SECURITY}"
194
195 # Advanced binary options
196 LB_APT_INDICES="${LB_APT_INDICES}"
197 LB_BOOTAPPEND_INSTALL="${LB_BOOTAPPEND_INSTALL}"
198 LB_BOOTAPPEND_LIVE="${LB_BOOTAPPEND_LIVE}"
199 LB_BOOTLOADER="${LB_BOOTLOADER}"
200 LB_DEBIAN_INSTALLER="${LB_DEBIAN_INSTALLER}"
201 LB_ISO_APPLICATION="${LB_ISO_APPLICATION}"
202 LB_ISO_PREPARER="${LB_ISO_PREPARER}"
203 LB_ISO_PUBLISHER="${LB_ISO_PUBLISHER}"
204 LB_ISO_VOLUME="${LB_ISO_VOLUME}"
205 LB_MEMTEST="${LB_MEMTEST}"
206 LB_NET_ROOT_PATH="${LB_NET_ROOT_PATH}"
207 LB_NET_ROOT_SERVER="${LB_NET_ROOT_SERVER}"
208
209 # Advanced source options
210 LB_SOURCE_IMAGES="${LB_SOURCE_IMAGES}"
211 LB_SOURCE="${LB_SOURCE}"
212
213 EOF
214
215 echo "$(date +%b\ %d\ %H:%M:%S) ${_HOSTNAME} live-build-cgi: add web build (${_BUILD}) from ${REMOTE_ADDR}." >> /var/log/live/live-build-request
216 echo "$(date +%b\ %d\ %H:%M:%S) ${_HOSTNAME} live-build-cgi: options ${_BUILD} |email ${_EMAIL}|binary_images ${LIVE_IMAGE_TYPE}|distribution ${LB_DISTRIBUTION}|config ${_LB_CONFIG}|apt ${LB_APT}|cgipackages ${_LB_CGIPACKAGES}|architectures ${LB_ARCHITECTURES}|archive_areas ${LB_ARCHIVE_AREAS}|chroot_filesystem ${LB_CHROOT_FILESYSTEM}|linux_flavours ${LB_LINUX_FLAVOURS}|security ${LB_SECURITY}|apt_indices ${LB_APT_INDICES}|bootappend_install ${LB_BOOTAPPEND_INSTALL}|bootappend_live ${LB_BOOTAPPEND_LIVE}|bootloader ${LB_BOOTLOADER}|debian_installer ${LB_DEBIAN_INSTALLER}|iso_application ${LB_ISO_APPLICATION}|iso_preparer ${LB_ISO_PREPARER}|iso_publisher ${LB_ISO_PUBLISHER}|iso_volume ${LB_ISO_VOLUME}|memtest ${LB_MEMTEST}|net_path ${LB_NET_ROOT_PATH}|net_server ${LB_NET_ROOT_SERVER}|source_images ${LB_SOURCE_IMAGES}|sources ${LB_SOURCE}" >> /var/log/live/live-build-request
217 fi
218
219 sed -e "s/VERSION/${VERSION}/" "${_TEMPLATES}"/footer.html
+0
-200
frontend/cgi/live-build-cgi.cron less more
0 #!/bin/sh
1
2 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
4 ##
5 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
6 ## This is free software, and you are welcome to redistribute it
7 ## under certain conditions; see COPYING for details.
8
9 # Including common functions
10 . /usr/lib/live/build.sh
11
12 # Reading defaults
13 if [ -r /etc/default/live-build-cgi ]
14 then
15 . /etc/default/live-build-cgi
16 else
17 echo "E: /etc/default/live-build-cgi missing"
18 exit 1
19 fi
20
21 # Exit if disabled
22 if [ "${_WEBBUILD}" != "true" ]
23 then
24 exit 0
25 fi
26
27 _HOSTNAME="$(hostname -f)"
28
29 # Turn on debug if true
30 if [ "${_DEBUG}" = "true" ]
31 then
32 set -x
33 fi
34
35 # Locknum sets the lock enumeration for multiple instances of l-b-cgi
36 _LOCKNUM="$(expr 1 + $(expr $(date +%M) % ${_INSTANCES}))"
37
38 # Checking lock file
39 if [ -f /var/lock/live-build-cgi-${_LOCKNUM}.lock ]
40 then
41 echo "E: live-build-cgi instance ${_LOCKNUM} already/still running."
42 exit 1
43 fi
44
45 # Creating lock trap
46 trap "test -f /var/lock/live-build-cgi-${_LOCKNUM}.lock && rm -f /var/lock/live-build-cgi-${_LOCKNUM}.lock; exit 0" 0 1 2 3 9 15
47
48 # Creating lock file
49 touch /var/lock/live-build-cgi-${_LOCKNUM}.lock
50
51 # Cleanup old builds: cron should be run at least once per hour to take effect
52 if ls "${_DESTDIR}"/`date -d yesterday +%Y%m%d.%H`* > /dev/null 2>&1
53 then
54 rm -rf "${_DESTDIR}"/`date -d yesterday +%Y%m%d.%H`*
55
56 echo "`date +%b\ %d\ %H:%M:%S` ${_HOSTNAME} live-build-cgi: remove web build (`date -d yesterday +%Y%m%d.%H`*)." >> /var/log/live/live-build
57 fi
58
59 # Ok from here spin through the live-build-cgi files we have waiting to build
60 #if ls "${_TEMPDIR}"/*.build > /dev/null 2>&1
61 if Find_files ${_TEMPDIR}/*.build
62 then
63 _FILE=$(ls "${_TEMPDIR}"/*.build | sort | head -1)
64 # Pull in variables from the build file.
65 . "${_FILE}"
66
67 # Drop out some build data for information if something goes wrong.
68 echo "`date +%b\ %d\ %H:%M:%S` ${_HOSTNAME} live-build-cgi: begin web build (${_BUILD})." >> /var/log/live/live-build
69
70 # Clone the git config to target build directory
71 git clone ${_LB_GIT} "${_TEMPDIR}"/"${_BUILD}" >> /var/log/live/live-build
72 _ERRORGIT="${?}"
73
74 # Moving build file to the tempdir and remove from submission area.
75 mv "${_TEMPDIR}"/"${_BUILD}".build "${_TEMPDIR}"/"${_BUILD}"/
76
77 # Sanity check to default to something since we are going to build from git clone.
78 if [ -z "${_LB_CONFIG}" ]
79 then
80 _LB_CONFIG="standard"
81 fi
82
83 # Now set a variable for the correct build path
84 _BUILD_PATH="${_TEMPDIR}/${_BUILD}/images/${_LB_CONFIG}"
85
86 _DATE_START="`date -R`"
87 echo "Begin live-build-cgi: ${_DATE_START}" > "${_BUILD_PATH}"/log
88 echo "Info live-build-cgi: Config tree cloned from ${_LB_GIT} for build ${_BUILD}" >> "${_BUILD_PATH}"/log
89
90 # Creating directory for the config/package-lists
91 mkdir -p "${_BUILD_PATH}"/config/package-lists
92
93 # Add cgipackages.list.chroot
94 if [ -n "${_LB_CGIPACKAGES}" ]
95 then
96 echo "${_LB_CGIPACKAGES}" > "${_BUILD_PATH}"/config/package-lists/cgipackages.list.chroot
97 fi
98
99 # Generating config here
100 if [ "${_ERRORGIT}" -eq "0" ]
101 then
102 cd "${_BUILD_PATH}"
103 # Do config with git and stack on config file params to build
104 lb config ${_CGI_CONFIG_APPEND} --apt "${LB_APT}" --distribution "${LB_DISTRIBUTION}" --binary-images "${LB_BINARY_IMAGES}" --architectures "${LB_ARCHITECTURES}" --archive-areas "${LB_ARCHIVE_AREAS}" --chroot-filesystem "${LB_CHROOT_FILESYSTEM}" --linux-flavours "${LB_LINUX_FLAVOURS}" --security "${LB_SECURITY}" --apt-indices "${LB_APT_INDICES}" --bootappend-install "${LB_BOOTAPPEND_INSTALL}" --bootappend-live "${LB_BOOTAPPEND_LIVE}" --bootloader "${LB_BOOTLOADER}" --debian-installer "${LB_DEBIAN_INSTALLER}" --iso-application "${LB_ISO_APPLICATION}" --iso-preparer "${LB_ISO_PREPARER}" --iso-publisher "${LB_ISO_PUBLISHER}" --iso-volume "${LB_ISO_VOLUME}" --memtest "${LB_MEMTEST}" --net-root-path "${LB_NET_ROOT_PATH}" --net-root-server "${LB_NET_ROOT_SERVER}" --source-images "${LB_SOURCE_IMAGES}" --source "${LB_SOURCE}"
105 _ERRORCONFIG="${?}"
106 else
107 echo "Config stage skipped. The git clone produced an error: ${_ERRORGIT}" >> "${_BUILD_PATH}"/log
108 fi
109
110 # Run build if config went ok
111 if [ "${_ERRORCONFIG}" -eq "0" ]
112 then
113 # We need to finish script.
114 set +e
115 lb build noauto >> "${_BUILD_PATH}"/log 2>&1
116 _ERRORBUILD="${?}"
117 else
118 echo "Build stage skipped. Config produced an error: ${_ERRORCONFIG}" >> "${_BUILD_PATH}"/log
119 fi
120
121 _DATE_END="`date -R`"
122 echo "End: ${_DATE_END}" >> "${_BUILD_PATH}"/log
123
124 # Creating image directory
125 mkdir -p "${_DESTDIR}"/"${_BUILD}"
126
127 # Creating mail and logging.
128 if [ "${_ERRORGIT}" -eq "0" ] && [ "${_ERRORCONFIG}" -eq "0" ] && [ "${_ERRORBUILD}" -eq "0" ]
129 then
130 _STATUS="maybe-successful"
131 echo "${REMOTE_ADDR} - - `date +[%d/%b/%Y:%H:%m:%S\ %z]` \"${_BUILD} ${LB_ARCHITECTURES}/${LB_DISTRIBUTION}/${_LB_CGIPACKAGES}\" 200 - \"-\" \"\"">>/var/log/live/live-build-cgi-status
132 else
133 _STATUS="maybe-failed"
134 echo "${REMOTE_ADDR} - - `date +[%d/%b/%Y:%H:%m:%S\ %z]` \"${_BUILD} ${LB_ARCHITECTURES}/${LB_DISTRIBUTION}/${_LB_CGIPACKAGES}\" 404 - \"-\" \"\"">>/var/log/live/live-build-cgi-status
135 fi
136
137 sed -e "s/BUILD/${_BUILD}/g" \
138 -e "s/EMAIL/${_EMAIL}/" \
139 -e "s/VERSION/${VERSION}/" \
140 -e "s/DATE_START/${_DATE_START}/" \
141 -e "s/DATE_END/${_DATE_END}/" \
142 -e "s/STATUS/${_STATUS}/" \
143 -e "s#SERVER#${_SERVER}#" \
144 "${_TEMPLATES}"/mail.txt > "${_DESTDIR}"/"${_BUILD}"/mail
145
146 cat >> "${_DESTDIR}"/"${_BUILD}"/mail << EOF
147
148 ---
149
150 Here's a list of all build-options that were used to build your image:
151
152 EOF
153
154 cat "${_TEMPDIR}"/"${_BUILD}"/"${_BUILD}".build >> "${_DESTDIR}"/"${_BUILD}"/mail
155
156 # Moving live-image-* files
157 if Find_files ${_BUILD_PATH}/live-image-*
158 then
159 mv "${_BUILD_PATH}"/live-image-* "${_DESTDIR}"/"${_BUILD}"
160 fi
161
162 # Moving build
163 mv "${_TEMPDIR}"/"${_BUILD}"/"${_BUILD}".build "${_DESTDIR}"/"${_BUILD}"/build
164
165 # Moving log
166 mv "${_BUILD_PATH}"/log "${_DESTDIR}"/"${_BUILD}"
167
168 # Generating md5sum
169 cd "${_DESTDIR}"/"${_BUILD}"
170 md5sum * > md5sum
171 cd "${OLDPWD}"
172
173 # Sending mail
174 cat "${_DESTDIR}"/"${_BUILD}"/mail | /usr/sbin/sendmail -t
175
176 # Unmounting devpts-live
177 #if ls "${_TEMPDIR}"/"${_BUILD}"/chroot/dev/pts/* > /dev/null 2>&1
178 if Find_files ${_BUILD_PATH}/chroot/dev/pts/*
179 then
180 umount "${_BUILD_PATH}"/chroot/dev/pts
181 fi
182
183 # Unmounting proc
184 if [ -f "${_BUILD_PATH}"/chroot/proc/version ]
185 then
186 umount "${_BUILD_PATH}"/chroot/proc
187 fi
188
189 # Unmounting sysfs
190 if [ -d "${_BUILD_PATH}"/chroot/sys/kernel ]
191 then
192 umount "${_BUILD_PATH}"/chroot/sys
193 fi
194
195 # Removing build directory
196 rm -rf "${_TEMPDIR}"/"${_BUILD}"
197
198 echo "`date +%b\ %d\ %H:%M:%S` ${_HOSTNAME} live-build-cgi: end web build (${_BUILD}: ${_STATUS})." >> /var/log/live/live-build
199 fi
+0
-7
frontend/cgi/live-build-cgi.crontab less more
0 # /etc/crontab - system-wide crontab
1
2 SHELL=/bin/sh
3 PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
4
5 # m h dom mon dow user command
6 */1 * * * * root /etc/cron.hourly/live-build-cgi > /dev/null 2>&1
+0
-19
frontend/cgi/live-build-cgi.default less more
0 # Defaults for /etc/cron.daily/live-build-cgi
1
2 _WEBBUILD="false"
3
4 _MODE="debian"
5
6 _DEBUG="false"
7
8 _INSTANCES="1"
9
10 _DESTDIR="/srv/debian-live/build/www"
11 _TEMPLATES="/usr/share/live/build/templates/cgi/${_MODE}"
12 _TEMPDIR="/srv/debian-live/build/tmp"
13
14 _SERVER="http://live-systems.org/build"
15
16 _LB_GIT="git://live-systems.org/git/live-images.git"
17
18 _CGI_CONFIG_APPEND=""
+0
-11
frontend/cgi/live-build-cgi.logrotate less more
0 # /etc/logrotate.d/live-build
1
2 /var/log/live
3 {
4 compress
5 copytruncate
6 missingok
7 monthly
8 notifempty
9 rotate 24
10 }
+0
-90
frontend/cli/lb less more
0 #!/bin/sh
1
2 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
4 ##
5 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
6 ## This is free software, and you are welcome to redistribute it
7 ## under certain conditions; see COPYING for details.
8
9
10 set -e
11
12 # Including common functions
13 [ -e "${LIVE_BUILD}/scripts/build.sh" ] && . "${LIVE_BUILD}/scripts/build.sh" || . /usr/lib/live/build.sh
14
15 # Setting static variables
16 DESCRIPTION="$(Echo 'utility to build live systems')"
17 HELP="FIXME"
18 USAGE="FIXME"
19
20 case "${1}" in
21 -h|--help)
22 if [ -x "$(which man 2>/dev/null)" ]
23 then
24 man lb
25 exit 0
26 else
27 ${0} --usage
28 exit 0
29 fi
30 ;;
31
32 ""|-u|--usage)
33 Usage
34 ;;
35
36 -v|--version)
37 echo "${VERSION}"
38 exit 0
39 ;;
40
41 *)
42 COMMAND="${1}"
43 shift
44
45 ENV=""
46
47 if [ "${COMMAND}" != "config" ]
48 then
49 # Checking user account
50 if [ "$(id -u)" -ne "0" ]
51 then
52 Echo_error "need root privileges"
53 exit 1
54 fi
55 fi
56
57 for _FILE in config/environment config/environment.binary
58 do
59 if [ -e "${_FILE}" ]
60 then
61 ENV="${ENV} $(grep -v '^#' ${_FILE})"
62 fi
63 done
64
65 if [ -x "${LIVE_BUILD}/scripts/build/${COMMAND}" ]
66 then
67 # User has live-build copied locally in the system
68 SCRIPT="${LIVE_BUILD}/scripts/build/${COMMAND}"
69 elif [ -x "local/live-build/scripts/build/${COMMAND}" ]
70 then
71 # User has live-build copied locally in the config
72 SCRIPT="local/live-build/scripts/build/${COMMAND}"
73 elif [ -x /usr/lib/live/build/${COMMAND} ]
74 then
75 # User has live-build installed in the system
76 SCRIPT=/usr/lib/live/build/"${COMMAND}"
77 elif [ -x "$(which ${COMMAND} 2>/dev/null)" ]
78 then
79 # User has live-build commands in path
80 SCRIPT="${COMMAND}"
81 else
82 Echo_error "no such script: ${COMMAND}"
83 exit 1
84 fi
85
86 Echo "[%s] %s" "$(date +'%F %T')" "lb ${COMMAND} $(echo ${@})"
87 ${ENV} exec "${SCRIPT}" "${@}"
88 ;;
89 esac
+0
-37
frontend/cli/live-build less more
0 #!/bin/sh
1
2 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
4 ##
5 ## This program is free software: you can redistribute it and/or modify
6 ## it under the terms of the GNU General Public License as published by
7 ## the Free Software Foundation, either version 3 of the License, or
8 ## (at your option) any later version.
9 ##
10 ## This program is distributed in the hope that it will be useful,
11 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 ## GNU General Public License for more details.
14 ##
15 ## You should have received a copy of the GNU General Public License
16 ## along with this program. If not, see <http://www.gnu.org/licenses/>.
17 ##
18 ## The complete text of the GNU General Public License
19 ## can be found in /usr/share/common-licenses/GPL-3 file.
20
21
22 set -e
23
24 if [ -x "$(which man 2>/dev/null)" ]
25 then
26 man live-build
27 else
28
29 cat << EOF
30 live-build contains the scripts to build a live system from a configuration
31 directory.
32
33 An introduction to live-build can be found in the live-build(7) manpage.
34 EOF
35
36 fi
0 #!/bin/sh
1
2 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
4 ##
5 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
6 ## This is free software, and you are welcome to redistribute it
7 ## under certain conditions; see COPYING for details.
8
9
10 set -e
11
12 # Including common functions
13 [ -e "${LIVE_BUILD}/scripts/build.sh" ] && . "${LIVE_BUILD}/scripts/build.sh" || . /usr/lib/live/build.sh
14
15 # Setting static variables
16 DESCRIPTION="$(Echo 'utility to build live systems')"
17 HELP="FIXME"
18 USAGE="FIXME"
19
20 case "${1}" in
21 -h|--help)
22 if [ -x "$(which man 2>/dev/null)" ]
23 then
24 man lb
25 exit 0
26 else
27 ${0} --usage
28 exit 0
29 fi
30 ;;
31
32 ""|-u|--usage)
33 Usage
34 ;;
35
36 -v|--version)
37 echo "${VERSION}"
38 exit 0
39 ;;
40
41 *)
42 COMMAND="${1}"
43 shift
44
45 ENV=""
46
47 if [ "${COMMAND}" != "config" ]
48 then
49 # Checking user account
50 if [ "$(id -u)" -ne "0" ]
51 then
52 Echo_error "need root privileges"
53 exit 1
54 fi
55 fi
56
57 for _FILE in config/environment config/environment.binary
58 do
59 if [ -e "${_FILE}" ]
60 then
61 ENV="${ENV} $(grep -v '^#' ${_FILE})"
62 fi
63 done
64
65 if [ -x "${LIVE_BUILD}/scripts/build/${COMMAND}" ]
66 then
67 # User has live-build copied locally in the system
68 SCRIPT="${LIVE_BUILD}/scripts/build/${COMMAND}"
69 elif [ -x "local/live-build/scripts/build/${COMMAND}" ]
70 then
71 # User has live-build copied locally in the config
72 SCRIPT="local/live-build/scripts/build/${COMMAND}"
73 elif [ -x /usr/lib/live/build/${COMMAND} ]
74 then
75 # User has live-build installed in the system
76 SCRIPT=/usr/lib/live/build/"${COMMAND}"
77 elif [ -x "$(which ${COMMAND} 2>/dev/null)" ]
78 then
79 # User has live-build commands in path
80 SCRIPT="${COMMAND}"
81 else
82 Echo_error "no such script: ${COMMAND}"
83 exit 1
84 fi
85
86 Echo "[%s] %s" "$(date +'%F %T')" "lb ${COMMAND} $(echo ${@})"
87 ${ENV} exec "${SCRIPT}" "${@}"
88 ;;
89 esac
0 #!/bin/sh
1
2 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
4 ##
5 ## This program is free software: you can redistribute it and/or modify
6 ## it under the terms of the GNU General Public License as published by
7 ## the Free Software Foundation, either version 3 of the License, or
8 ## (at your option) any later version.
9 ##
10 ## This program is distributed in the hope that it will be useful,
11 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 ## GNU General Public License for more details.
14 ##
15 ## You should have received a copy of the GNU General Public License
16 ## along with this program. If not, see <http://www.gnu.org/licenses/>.
17 ##
18 ## The complete text of the GNU General Public License
19 ## can be found in /usr/share/common-licenses/GPL-3 file.
20
21
22 set -e
23
24 if [ -x "$(which man 2>/dev/null)" ]
25 then
26 man live-build
27 else
28
29 cat << EOF
30 live-build contains the scripts to build a live system from a configuration
31 directory.
32
33 An introduction to live-build can be found in the live-build(7) manpage.
34 EOF
35
36 fi
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
3535 {
3636 for FILE in ${@}
3737 do
38 : > ${FILE}
38 if [ ! -L ${FILE} ]
39 then
40 : > ${FILE}
41 fi
3942 done
4043 }
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
1616 if [ -e "${DIRECTORY}" ]
1717 then
1818 # Restore old cache
19 if [ "$(stat --printf %d ${DIRECTORY})" = "$(stat --printf %d chroot/var/cache/apt/archives)" ]
19 if [ "$(stat --printf %d ${DIRECTORY}/)" = "$(stat --printf %d chroot/var/cache/apt/archives/)" ]
2020 then
2121 # with hardlinks
2222 find "${DIRECTORY}" -name "*.deb" | xargs cp -fl -t chroot/var/cache/apt/archives
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
0 #!/bin/sh
1
2 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
4 ##
5 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
6 ## This is free software, and you are welcome to redistribute it
7 ## under certain conditions; see COPYING for details.
8
9
10 Chroot_bind_path ()
11 {
12 CHROOT="$(readlink -f ${1})"
13 BIND_SRC="$(readlink -f ${2})"
14
15 BIND_DEST=$(echo "${BIND_SRC}" | sed -e 's|/\+||')
16 if [ ! -d "${CHROOT}/${BIND_DEST}" -o \
17 -z "$(cat /proc/mounts | awk -vdir="${CHROOT}/${BIND_DEST}" '$2 ~ dir { print $2}')" ]
18 then
19 Echo_message "Binding local repository path"
20 mkdir -p "${CHROOT}/${BIND_DEST}"
21 mount --bind "${LB_PARENT_MIRROR_CHROOT#file:}" \
22 "${CHROOT}/${BIND_DEST}"
23 fi
24 }
25
26 Chroot_unbind_path ()
27 {
28 CHROOT="$(readlink -f ${1})"
29 BIND_SRC="$(readlink -f ${2})"
30
31 BIND_DEST=$(echo "${BIND_SRC}" | sed -e 's|/\+||')
32 if [ -d "${CHROOT}/${BIND_DEST}" ]
33 then
34 Echo_message "Unbinding local repository path"
35 umount "${CHROOT}/${BIND_DEST}" > /dev/null 2>&1 || true
36 fi
37 }
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
5757 LB_ARCHIVE_AREAS="${LB_ARCHIVE_AREAS:-main contrib non-free}"
5858 ;;
5959
60 ubuntu)
61 LB_ARCHIVE_AREAS="${LB_ARCHIVE_AREAS:-main restricted}"
62 ;;
63
6460 *)
6561 LB_ARCHIVE_AREAS="${LB_ARCHIVE_AREAS:-main}"
6662 ;;
6965 export LB_ARCHIVE_AREAS
7066
7167 # Image: Archive Areas
72 LIVE_IMAGE_PARENT_ARCHIVE_AREAS="${LIVE_IMAGE_PARENT_ARCHIVE_AREAS:-$(Get_configuration config/build Parent-Archive-Areas)}"
73 LIVE_IMAGE_PARENT_ARCHIVE_AREAS="${LIVE_IMAGE_PARENT_ARCHIVE_AREAS:-${LB_ARCHIVE_AREAS}}"
74 export LIVE_IMAGE_PARENT_ARCHIVE_AREAS
68 LB_PARENT_ARCHIVE_AREAS="${LB_PARENT_ARCHIVE_AREAS:-$(Get_configuration config/build Parent-Archive-Areas)}"
69 LB_PARENT_ARCHIVE_AREAS="${LB_PARENT_ARCHIVE_AREAS:-${LB_ARCHIVE_AREAS}}"
70 export LB_PARENT_ARCHIVE_AREAS
7571
7672 # Image: Type
7773 LIVE_IMAGE_TYPE="${LIVE_IMAGE_TYPE:-$(Get_configuration config/build Type)}"
9591 # Setting system type
9692 LB_SYSTEM="${LB_SYSTEM:-live}"
9793
98 # Setting mode (currently: debian, progress-linux, and ubuntu)
94 # Setting mode (currently: debian, progress-linux)
9995 if [ -x /usr/bin/lsb_release ]
10096 then
10197 _DISTRIBUTOR="$(lsb_release -is | tr "[A-Z]" "[a-z]")"
10298
10399 case "${_DISTRIBUTOR}" in
104 debian|progress-linux|ubuntu)
100 debian|progress-linux)
105101 LB_MODE="${LB_MODE:-${_DISTRIBUTOR}}"
106102 ;;
107103
113109 if [ -e /etc/progress-linux_version ]
114110 then
115111 LB_MODE="${LB_MODE:-progress-linux}"
116 elif [ -e /etc/ubuntu_version ]
117 then
118 LB_MODE="${LB_MODE:-ubuntu}"
119112 else
120113 LB_MODE="${LB_MODE:-debian}"
121114 fi
124117 # Setting distribution name
125118 case "${LB_MODE}" in
126119 progress-linux)
127 LB_DISTRIBUTION="${LB_DISTRIBUTION:-baureo}"
120 LB_DISTRIBUTION="${LB_DISTRIBUTION:-cairon}"
128121 LB_DERIVATIVE="true"
129 ;;
130
131 ubuntu)
132 LB_DISTRIBUTION="${LB_DISTRIBUTION:-quantal}"
133 LB_DERIVATIVE="false"
134 ;;
135
136 *)
137 LB_DISTRIBUTION="${LB_DISTRIBUTION:-jessie}"
122 LB_DERIVATIVE_IS_BASED_ON="debian"
123 ;;
124
125 *)
126 LB_DISTRIBUTION="${LB_DISTRIBUTION:-stretch}"
138127 LB_DERIVATIVE="false"
139128 ;;
140129 esac
147136 LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION="${LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION:-${LB_PARENT_DISTRIBUTION}}"
148137 ;;
149138
150 charon|charon-backports)
139 cairon|cairon-backports)
151140 LB_PARENT_DISTRIBUTION="${LB_PARENT_DISTRIBUTION:-sid}"
152141 LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION="${LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION:-${LB_PARENT_DISTRIBUTION}}"
153142 ;;
218207 LB_APT_SOURCE_ARCHIVES="${LB_APT_SOURCE_ARCHIVES:-true}"
219208 ;;
220209 esac
221
222 # Setting bootstrap program
223 if [ -z "${LB_BOOTSTRAP}" ] || ( [ ! -x "$(which ${LB_BOOTSTRAP} 2>/dev/null)" ] && [ "${LB_BOOTSTRAP}" != "copy" ] )
224 then
225 if [ -x "/usr/sbin/debootstrap" ]
226 then
227 LB_BOOTSTRAP="debootstrap"
228 elif [ -x "/usr/bin/cdebootstrap" ]
229 then
230 LB_BOOTSTRAP="cdebootstrap"
231 fi
232 fi
233210
234211 # Setting cache option
235212 LB_CACHE="${LB_CACHE:-true}"
244221 # Setting initramfs hook
245222 case "${LB_SYSTEM}" in
246223 live)
247 case "${LB_MODE}" in
248 ubuntu)
249 LB_INITRAMFS="${LB_INITRAMFS:-casper}"
250 ;;
251
252 *)
253 LB_INITRAMFS="${LB_INITRAMFS:-live-boot}"
254 ;;
255 esac
224 LB_INITRAMFS="${LB_INITRAMFS:-live-boot}"
256225 ;;
257226
258227 normal)
264233
265234 # Setting initsystem
266235 case "${LB_MODE}" in
267 ubuntu)
268 case "${LB_INITRAMFS}" in
269 live-boot)
270 LB_INITSYSTEM="${LB_INITSYSTEM:-upstart}"
271 ;;
272 esac
273 ;;
274
275236 progress-linux)
276237 case "${LB_DISTRIBUTION}" in
277 chairon*)
238 cairon*)
278239 LB_INITSYSTEM="${LB_INITSYSTEM:-systemd}"
279240 ;;
280241
287248 *)
288249 case "${LB_SYSTEM}" in
289250 live)
290 case "${LB_PARENT_DISTRIBUTION}" in
291 wheezy)
292 LB_INITSYSTEM="${LB_INITSYSTEM:-sysvinit}"
293 ;;
294
295 *)
296 LB_INITSYSTEM="${LB_INITSYSTEM:-systemd}"
297 ;;
298 esac
251 LB_INITSYSTEM="${LB_INITSYSTEM:-systemd}"
299252 ;;
300253
301254 normal)
359312 ;;
360313 esac
361314
362 # Setting templates
363 if [ -n "${LIVE_BUILD}" ]
364 then
365 LB_TEMPLATES="${LB_TEMPLATES:-${LIVE_BUILD}/templates}"
366 else
367 LB_TEMPLATES="${LB_TEMPLATES:-/usr/share/live/build/templates}"
368 fi
369
370315 # Setting live build options
371316 _BREAKPOINTS="${_BREAKPOINTS:-false}"
372317 _COLOR="${_COLOR:-false}"
388333 LB_PARENT_MIRROR_BOOTSTRAP="${LB_PARENT_MIRROR_BOOTSTRAP:-http://ftp.debian.org/debian/}"
389334 LB_MIRROR_BOOTSTRAP="${LB_MIRROR_BOOTSTRAP:-http://cdn.archive.progress-linux.org/packages/}"
390335 ;;
391
392 ubuntu)
393 case "${LB_ARCHITECTURES}" in
394 amd64|i386)
395 LB_MIRROR_BOOTSTRAP="${LB_MIRROR_BOOTSTRAP:-http://archive.ubuntu.com/ubuntu/}"
396 ;;
397
398 *)
399 LB_MIRROR_BOOTSTRAP="${LB_MIRROR_BOOTSTRAP:-http://ports.ubuntu.com/ubuntu-ports/}"
400 ;;
401 esac
402
403 LB_PARENT_MIRROR_BOOTSTRAP="${LB_PARENT_MIRROR_BOOTSTRAP:-${LB_MIRROR_BOOTSTRAP}}"
404 ;;
405336 esac
406337
407338 LB_PARENT_MIRROR_CHROOT="${LB_PARENT_MIRROR_CHROOT:-${LB_PARENT_MIRROR_BOOTSTRAP}}"
418349 LB_PARENT_MIRROR_CHROOT_SECURITY="${LB_PARENT_MIRROR_CHROOT_SECURITY:-http://security.debian.org/}"
419350 LB_MIRROR_CHROOT_SECURITY="${LB_MIRROR_CHROOT_SECURITY:-${LB_MIRROR_CHROOT}}"
420351 ;;
421
422 ubuntu)
423 case "${LB_ARCHITECTURES}" in
424 amd64|i386)
425 LB_MIRROR_CHROOT_SECURITY="${LB_MIRROR_CHROOT_SECURITY:-http://security.ubuntu.com/ubuntu/}"
426 ;;
427
428 *)
429 LB_MIRROR_CHROOT_SECURITY="${LB_MIRROR_CHROOT_SECURITY:-http://ports.ubuntu.com/ubuntu-ports/}"
430 ;;
431 esac
432
433 LB_PARENT_MIRROR_CHROOT_SECURITY="${LB_PARENT_MIRROR_CHROOT_SECURITY:-${LB_MIRROR_CHROOT_SECURITY}}"
434 ;;
435352 esac
436353
437354 # Setting mirror which ends up in the image
438355 case "${LB_MODE}" in
439356 debian)
440 LB_MIRROR_BINARY="${LB_MIRROR_BINARY:-http://http.debian.net/debian/}"
357 LB_MIRROR_BINARY="${LB_MIRROR_BINARY:-http://httpredir.debian.org/debian/}"
441358 LB_PARENT_MIRROR_BINARY="${LB_PARENT_MIRROR_BINARY:-${LB_MIRROR_BINARY}}"
442359 ;;
443360
444361 progress-linux)
445362 LB_PARENT_MIRROR_BINARY="${LB_PARENT_MIRROR_BINARY:-http://ftp.debian.org/debian/}"
446363 LB_MIRROR_BINARY="${LB_MIRROR_BINARY:-${LB_MIRROR_CHROOT}}"
447 ;;
448
449 ubuntu)
450 case "${LB_ARCHITECTURES}" in
451 amd64|i386)
452 LB_MIRROR_BINARY="${LB_MIRROR_BINARY:-http://archive.ubuntu.com/ubuntu/}"
453 ;;
454
455 *)
456 LB_MIRROR_BINARY="${LB_MIRROR_BINARY:-http://ports.ubuntu.com/ubuntu-ports/}"
457 ;;
458 esac
459
460 LB_PARENT_MIRROR_BINARY="${LB_PARENT_MIRROR_BINARY:-${LB_MIRROR_BINARY}}"
461364 ;;
462365 esac
463366
472375 LB_PARENT_MIRROR_BINARY_SECURITY="${LB_PARENT_MIRROR_BINARY_SECURITY:-http://security.debian.org/}"
473376 LB_MIRROR_BINARY_SECURITY="${LB_MIRROR_BINARY_SECURITY:-${LB_MIRROR_CHROOT}}"
474377 ;;
475
476 ubuntu)
477 case "${LB_ARCHITECTURES}" in
478 amd64|i386)
479 LB_MIRROR_BINARY_SECURITY="${LB_MIRROR_BINARY_SECURITY:-http://security.ubuntu.com/ubuntu/}"
480 ;;
481
482 *)
483 LB_MIRROR_BINARY_SECURITY="${LB_MIRROR_BINARY_SECURITY:-http://ports.ubuntu.com/ubuntu-ports/}"
484 ;;
485 esac
486
487 LB_PARENT_MIRROR_BINARY_SECURITY="${LB_PARENT_MIRROR_BINARY_SECURITY:-${LB_MIRROR_BINARY_SECURITY}}"
488 ;;
489378 esac
490379
491380 case "${LB_MODE}" in
512401 LB_INTERACTIVE="${LB_INTERACTIVE:-false}"
513402
514403 # Setting keyring packages
515 case "${LB_MODE}" in
516 ubuntu)
517 LB_KEYRING_PACKAGES="${LB_KEYRING_PACKAGES:-ubuntu-keyring}"
518 ;;
519
520 *)
521 LB_KEYRING_PACKAGES="${LB_KEYRING_PACKAGES:-debian-archive-keyring}"
522 ;;
523 esac
404 LB_KEYRING_PACKAGES="${LB_KEYRING_PACKAGES:-debian-archive-keyring}"
524405
525406 # Setting linux flavour string
526407 case "${LB_ARCHITECTURES}" in
408 arm64)
409 LB_LINUX_FLAVOURS="${LB_LINUX_FLAVOURS:-arm64}"
410 ;;
411
527412 armel)
528 case "${LB_MODE}" in
529 ubuntu)
530 LB_LINUX_FLAVOURS="${LB_LINUX_FLAVOURS:-omap}"
531 ;;
532 *)
533 # armel will have special images: one rootfs image and many additional kernel images.
534 # therefore we default to all available armel flavours
535 case "${LB_DISTRIBUTION}" in
536 wheezy)
537 LB_LINUX_FLAVOURS="${LB_LINUX_FLAVOURS:-iop32x ixp4xx kirkwood orion5x versatile}"
538 ;;
539 *)
540 LB_LINUX_FLAVOURS="${LB_LINUX_FLAVOURS:-ixp4xx kirkwood orion5x versatile}"
541 ;;
542 esac
543 ;;
544 esac
413 # armel will have special images: one rootfs image and many additional kernel images.
414 # therefore we default to all available armel flavours
415 LB_LINUX_FLAVOURS="${LB_LINUX_FLAVOURS:-ixp4xx kirkwood orion5x versatile}"
545416 ;;
546417
547418 armhf)
548419 # armhf will have special images: one rootfs image and many additional kernel images.
549420 # therefore we default to all available armhf flavours
550 case "${LB_DISTRIBUTION}" in
551 wheezy)
552 LB_LINUX_FLAVOURS="${LB_LINUX_FLAVOURS:-mx5 omap}"
553 ;;
554 *)
555 LB_LINUX_FLAVOURS="${LB_LINUX_FLAVOURS:-armmp armmp-lpae}"
556 ;;
557 esac
421 LB_LINUX_FLAVOURS="${LB_LINUX_FLAVOURS:-armmp armmp-lpae}"
558422 ;;
559423
560424 amd64)
561 case "${LB_MODE}" in
562 ubuntu)
563 LB_LINUX_FLAVOURS="${LB_LINUX_FLAVOURS:-generic}"
564 ;;
565
566 *)
567 LB_LINUX_FLAVOURS="${LB_LINUX_FLAVOURS:-amd64}"
568 ;;
569 esac
425 LB_LINUX_FLAVOURS="${LB_LINUX_FLAVOURS:-amd64}"
570426 ;;
571427
572428 i386)
575431 LB_LINUX_FLAVOURS="${LB_LINUX_FLAVOURS:-686-pae}"
576432 ;;
577433
578 ubuntu)
579 case "${LB_DISTRIBUTION}" in
580 precise)
581 LB_LINUX_FLAVOURS="${LB_LINUX_FLAVOURS:-generic-pae}"
582 ;;
583
584 *)
585 LB_LINUX_FLAVOURS="${LB_LINUX_FLAVOURS:-generic}"
586 ;;
587 esac
588 ;;
589
590434 *)
591 LB_LINUX_FLAVOURS="${LB_LINUX_FLAVOURS:-486}"
435 LB_LINUX_FLAVOURS="${LB_LINUX_FLAVOURS:-586}"
592436 ;;
593437 esac
594438 ;;
613457 exit 1
614458 ;;
615459
616 ubuntu)
617 LB_LINUX_FLAVOURS="${LB_LINUX_FLAVOURS:-powerpc-smp powerpc64-smp e500 powerpc-e500mc}"
618 ;;
619
620460 *)
621461 LB_LINUX_FLAVOURS="${LB_LINUX_FLAVOURS:-powerpc64 powerpc}"
622462 ;;
624464 ;;
625465
626466 s390x)
627 case "${LB_MODE}" in
628 progress-linux|ubuntu)
629 Echo_error "Architecture ${LB_ARCHITECTURES} not supported in the ${LB_MODE} mode."
630 exit 1
631 ;;
632
633 *)
634 LB_LINUX_FLAVOURS="${LB_LINUX_FLAVOURS:-s390x}"
635 ;;
636 esac
637 ;;
638
639 sparc)
640467 case "${LB_MODE}" in
641468 progress-linux)
642469 Echo_error "Architecture ${LB_ARCHITECTURES} not supported in the ${LB_MODE} mode."
644471 ;;
645472
646473 *)
647 LB_LINUX_FLAVOURS="${LB_LINUX_FLAVOURS:-sparc64}"
474 LB_LINUX_FLAVOURS="${LB_LINUX_FLAVOURS:-s390x}"
648475 ;;
649476 esac
650477 ;;
656483 esac
657484
658485 # Set linux packages
659 case "${LB_MODE}" in
660 ubuntu)
661 LB_LINUX_PACKAGES="${LB_LINUX_PACKAGES:-linux}"
662 ;;
663
664 *)
665 LB_LINUX_PACKAGES="${LB_LINUX_PACKAGES:-linux-image}"
666 ;;
667 esac
486 LB_LINUX_PACKAGES="${LB_LINUX_PACKAGES:-linux-image}"
668487
669488 # Setting security updates option
670489 case "${LB_PARENT_DISTRIBUTION}" in
671 jessie|sid)
490 sid)
672491 LB_SECURITY="${LB_SECURITY:-false}"
673492 ;;
674493
679498
680499 # Setting updates updates option
681500 case "${LB_PARENT_DISTRIBUTION}" in
682 jessie|sid)
501 sid)
683502 LB_UPDATES="${LB_UPDATES:-false}"
684503 ;;
685504
691510 ## config/binary
692511
693512 # Setting image filesystem
694 case "${LB_ARCHITECTURES}" in
695 sparc)
696 LB_BINARY_FILESYSTEM="${LB_BINARY_FILESYSTEM:-ext4}"
697 ;;
698
699 *)
700 LB_BINARY_FILESYSTEM="${LB_BINARY_FILESYSTEM:-fat32}"
701 ;;
702 esac
513 LB_BINARY_FILESYSTEM="${LB_BINARY_FILESYSTEM:-fat32}"
703514
704515 # Setting image type
705516 case "${LB_ARCHITECTURES}" in
792603 LB_BOOTAPPEND_LIVE_FAILSAFE="${LB_BOOTAPPEND_LIVE_FAILSAFE:-boot=live components memtest noapic noapm nodma nomce nolapic nomodeset nosmp nosplash vga=normal}"
793604 ;;
794605
795 casper)
796 LB_BOOTAPPEND_LIVE="${LB_BOOTAPPEND_LIVE:-boot=casper quiet splash}"
797 LB_BOOTAPPEND_LIVE_FAILSAFE="${LB_BOOTAPPEND_LIVE_FAILSAFE:-boot=casper memtest noapic noapm nodma nomce nolapic nomodeset nosmp nosplash vga=normal}"
798 ;;
799
800606 none)
801607 LB_BOOTAPPEND_LIVE="${LB_BOOTAPPEND_LIVE:-quiet splash}"
802608 LB_BOOTAPPEND_LIVE_FAILSAFE="${LB_BOOTAPPEND_LIVE_FAILSAFE:-memtest noapic noapm nodma nomce nolapic nomodeset nosmp nosplash vga=normal}"
811617 ;;
812618
813619 hdd*)
814 case "${LB_MODE}" in
815 ubuntu)
816 if [ "${LB_DEBIAN_INSTALLER}" = "live" ]
817 then
818 _LB_BOOTAPPEND_PRESEED="file=/cdrom/install/${LB_DEBIAN_INSTALLER_PRESEEDFILE}"
819 else
820 _LB_BOOTAPPEND_PRESEED="file=/hd-media/install/${LB_DEBIAN_INSTALLER_PRESEEDFILE}"
821 fi
822 ;;
823
824 *)
825 _LB_BOOTAPPEND_PRESEED="file=/hd-media/install/${LB_DEBIAN_INSTALLER_PRESEEDFILE}"
826 ;;
827 esac
620 _LB_BOOTAPPEND_PRESEED="file=/hd-media/install/${LB_DEBIAN_INSTALLER_PRESEEDFILE}"
828621 ;;
829622
830623 netboot)
860653 progress-linux)
861654 LB_ISO_APPLICATION="${LB_ISO_APPLICATION:-Progress Linux}"
862655 ;;
863
864 ubuntu)
865 LB_ISO_APPLICATION="${LB_ISO_APPLICATION:-Ubuntu Live}"
866 ;;
867656 esac
868657
869658 # Set iso preparer
889678 progress-linux)
890679 LB_HDD_LABEL="${LB_HDD_LABEL:-PROGRESS_$(echo ${LB_DISTRIBUTION} | tr "[a-z]" "[A-Z]")}"
891680 ;;
892
893 ubuntu)
894 LB_HDD_LABEL="${LB_HDD_LABEL:-UBUNTU}"
895 ;;
896681 esac
897682
898683 # Setting hdd size
907692 progress-linux)
908693 LB_ISO_VOLUME="${LB_ISO_VOLUME:-Progress ${LB_DISTRIBUTION}}"
909694 ;;
910
911 ubuntu)
912 LB_ISO_VOLUME="${LB_ISO_VOLUME:-Ubuntu ${LB_DISTRIBUTION} \$(date +%Y%m%d-%H:%M)}"
913 ;;
914695 esac
915696
916697 # Setting memtest option
918699
919700 # Setting loadlin option
920701 case "${LB_MODE}" in
921 progress-linux|ubuntu)
702 progress-linux)
922703
923704 ;;
924705
942723
943724 # Setting win32-loader option
944725 case "${LB_MODE}" in
945 progress-linux|ubuntu)
726 progress-linux)
946727
947728 ;;
948729
988769 LB_NET_TARBALL="${LB_NET_TARBALL:-true}"
989770
990771 # Setting firmware option
991 case "${LB_MODE}" in
992 ubuntu)
993 LB_FIRMWARE_CHROOT="${LB_FIRMWARE_CHROOT:-false}"
994 LB_FIRMWARE_BINARY="${LB_FIRMWARE_BINARY:-false}"
995 ;;
996
997 *)
998 LB_FIRMWARE_CHROOT="${LB_FIRMWARE_CHROOT:-true}"
999 LB_FIRMWARE_BINARY="${LB_FIRMWARE_BINARY:-true}"
1000 ;;
1001 esac
772 LB_FIRMWARE_CHROOT="${LB_FIRMWARE_CHROOT:-true}"
773 LB_FIRMWARE_BINARY="${LB_FIRMWARE_BINARY:-true}"
1002774
1003775 # Setting swap file
1004776 LB_SWAP_FILE_SIZE="${LB_SWAP_FILE_SIZE:-512}"
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
106106 _LB_ENABLED=1
107107 ;;
108108
109 \#*)
110 # Skip comments
111 ;;
112
109113 *)
110114 if [ ${_LB_ENABLED} -eq 1 ]
111115 then
133137 for _LB_PACKAGE_LINE_PART in ${_LB_PACKAGE_LINE}
134138 do
135139 # Looking for <package>:<architecture>
136 if [ -n "$(echo ${_LB_PACKAGE_LINE_PART} | awk -F':' '{print $2}')" ]
140 if [ -n "$(echo ${_LB_PACKAGE_LINE_PART} | awk -F"=" '{print $1}' | awk -F':' '{print $2}')" ]
137141 then
138142 _LB_DISCOVERED_ARCHITECTURES="${_LB_DISCOVERED_ARCHITECTURES} $(echo ${_LB_PACKAGE_LINE_PART} | awk -F':' '{print $2}')"
139143 fi
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
99
1010 Check_package ()
1111 {
12 FILE="${1}"
13 PACKAGE="${2}"
12 CHROOT="${1}"
13 FILE="${2}"
14 PACKAGE="${3}"
1415
15 Check_installed "${FILE}" "${PACKAGE}"
16 Check_installed "${CHROOT}" "${FILE}" "${PACKAGE}"
1617
1718 case "${INSTALL_STATUS}" in
1819 1)
6566 # 2 if package isn't installed and we aren't in an apt managed system
6667 Check_installed ()
6768 {
68 FILE="${1}"
69 PACKAGE="${2}"
69 CHROOT="${1}"
70 FILE="${2}"
71 PACKAGE="${3}"
7072
71 case "${LB_BUILD_WITH_CHROOT}" in
72 true)
73 if [ "${LB_BUILD_WITH_CHROOT}" = "true" ] && [ "${CHROOT}" = "chroot" ]
74 then
75 if Chroot chroot "dpkg-query -s ${PACKAGE}" 2> /dev/null | grep -qs "Status: install"
76 then
77 INSTALL_STATUS=0
78 else
79 INSTALL_STATUS=1
80 fi
81 else
82 if which dpkg-query > /dev/null 2>&1
83 then
7384 if Chroot chroot "dpkg-query -s ${PACKAGE}" 2> /dev/null | grep -qs "Status: install"
7485 then
7586 INSTALL_STATUS=0
7687 else
7788 INSTALL_STATUS=1
7889 fi
79 ;;
80 false)
81 if which dpkg-query > /dev/null 2>&1
90 else
91 if [ ! -e "${FILE}" ]
8292 then
83 if Chroot chroot "dpkg-query -s ${PACKAGE}" 2> /dev/null | grep -qs "Status: install"
84 then
85 INSTALL_STATUS=0
86 else
87 INSTALL_STATUS=1
88 fi
93 INSTALL_STATUS=2
8994 else
90 FILE="$(echo ${FILE} | sed -e 's|chroot||')"
91
92 if [ ! -e "${FILE}" ]
93 then
94 INSTALL_STATUS=2
95 else
96 INSTALL_STATUS=0
97 fi
95 INSTALL_STATUS=0
9896 fi
99 ;;
100 esac
97 fi
98 fi
10199 }
102100
+0
-24
functions/releases.sh less more
0 #!/bin/sh
1
2 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
4 ##
5 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
6 ## This is free software, and you are welcome to redistribute it
7 ## under certain conditions; see COPYING for details.
8
9
10 # Debian releases
11 RELEASE_wheezy="7"
12 RELEASE_jessie="8"
13 RELEASE_sid="unstable"
14
15 # Progress Linux releases
16 RELEASE_baureo="2"
17 RELEASE_charon="3"
18
19 # Ubuntu releases
20 RELEASE_lucid="10.04" # LTS: 2015-04-01
21 RELEASE_precise="12.04" # LTS: 2017-04-01
22 RELEASE_quantal="12.10" # 2014-04-01
23 RELEASE_raring="13.04" # 2014-10-01
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
+0
-25
functions/templates.sh less more
0 #!/bin/sh
1
2 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
4 ##
5 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
6 ## This is free software, and you are welcome to redistribute it
7 ## under certain conditions; see COPYING for details.
8
9
10 Check_templates ()
11 {
12 PACKAGE="${1}"
13
14 if [ -d "config/templates/${PACKAGE}" ]
15 then
16 TEMPLATES="config/templates/${PACKAGE}"
17 elif [ -d "${LB_TEMPLATES}/${PACKAGE}" ]
18 then
19 TEMPLATES="${LB_TEMPLATES}/${PACKAGE}"
20 else
21 Echo_error "%s templates not accessible in %s nor config/templates" "${PACKAGE}" "${LB_TEMPLATES}"
22 exit 1
23 fi
24 }
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
00 #!/bin/sh
11
22 ## live-build(7) - Live System Build Components
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
3434 then
3535 for _FILE in po/${_LANGUAGE}/*.po
3636 do
37 sed -i -e "s|^msgstr .*.2014-.*$|msgstr \"${DAY}.${MONTH}.${YEAR}\"|g" \
38 -e "s|^msgstr .*.2014\"$|msgstr \"${DAY}.${MONTH}.${YEAR}\"|g" \
37 sed -i -e "s|^msgstr .*.2015-.*$|msgstr \"${DAY}.${MONTH}.${YEAR}\"|g" \
38 -e "s|^msgstr .*.2015\"$|msgstr \"${DAY}.${MONTH}.${YEAR}\"|g" \
3939 "${_FILE}"
4040 done
4141 fi
4646 then
4747 for _FILE in po/pt_BR/*.po
4848 do
49 sed -i -e "s|^msgstr .*.2014-.*$|msgstr \"${DAY}-${MONTH}-${YEAR}\"|g" \
50 -e "s|^msgstr .*-2014\"$|msgstr \"${DAY}-${MONTH}-${YEAR}\"|g" \
49 sed -i -e "s|^msgstr .*.2015-.*$|msgstr \"${DAY}-${MONTH}-${YEAR}\"|g" \
50 -e "s|^msgstr .*-2015\"$|msgstr \"${DAY}-${MONTH}-${YEAR}\"|g" \
5151 "${_FILE}"
5252 done
5353 fi
0 .TH LIVE\-BUILD 1 2014\-12\-10 4.0.4-1 "Live Systems Project"
0 .TH LIVE\-BUILD 1 2015\-08\-23 5.0~a11-1 "Live Systems Project"
11
22 .SH NAME
33 \fBlb\fR \- wrapper for live\-build programs
0 .TH LIVE\-BUILD 1 2014\-12\-10 4.0.4-1 "Live Systems Project"
0 .TH LIVE\-BUILD 1 2015\-08\-23 5.0~a11-1 "Live Systems Project"
11
22 .SH NAME
33 \fBlb binary\fR \- Complete the binary stage
0 .TH LIVE\-BUILD 1 2014\-12\-10 4.0.4-1 "Live Systems Project"
0 .TH LIVE\-BUILD 1 2015\-08\-23 5.0~a11-1 "Live Systems Project"
11
22 .SH NAME
33 \fBlb bootstrap\fR \- Complete the bootstrap stage
0 .TH LIVE\-BUILD 1 2014\-12\-10 4.0.4-1 "Live Systems Project"
0 .TH LIVE\-BUILD 1 2015\-08\-23 5.0~a11-1 "Live Systems Project"
11
22 .SH NAME
33 \fBlb build\fR \- Complete the bootstrap, chroot, binary, and source stages
0 .TH LIVE\-BUILD 1 2014\-12\-10 4.0.4-1 "Live Systems Project"
0 .TH LIVE\-BUILD 1 2015\-08\-23 5.0~a11-1 "Live Systems Project"
11
22 .SH NAME
33 \fBlb chroot\fR \- Complete the chroot stage
0 .TH LIVE\-BUILD 1 2014\-12\-10 4.0.4-1 "Live Systems Project"
0 .TH LIVE\-BUILD 1 2015\-08\-23 5.0~a11-1 "Live Systems Project"
11
22 .SH NAME
33 \fBlb clean\fR \- Clean build directory
0 .TH LIVE\-BUILD 1 2014\-12\-10 4.0.4-1 "Live Systems Project"
0 .TH LIVE\-BUILD 1 2015\-08\-23 5.0~a11-1 "Live Systems Project"
11
22 .SH NAME
33 \fBlb config\fR \- Create config directory
3939 [\fB\-\-bootappend\-live\fR \fIPARAMETER\fR|\fI"PARAMETERS"\fR]
4040 .br
4141 [\fB\-\-bootloader\fR grub|grub2|syslinux]
42 .br
43 [\fB\-\-bootstrap\fR cdebootstrap|cdebootstrap-static|debootstrap]
4442 .br
4543 [\fB\-\-cache\fR true|false]
4644 .br
266264 sets boot parameters specific to debian\-live. A complete list of boot parameters can be found in the \fIlive\-boot\fR(7) and \fIlive\-config\fR(7) manual pages.
267265 .IP "\fB\-\-bootloader\fR grub|grub2|syslinux" 4
268266 defines which bootloader is being used in the generated image. This has only an effect if the selected binary image type does allow to choose the bootloader. For example, if you build a iso, always syslinux (or more precise, isolinux) is being used. Also note that some combinations of binary images types and bootloaders may be possible but live\-build does not support them yet. \fBlb config\fR will fail to create such a not yet supported configuration and give a explanation about it. For hdd images on amd64 and i386, the default is syslinux.
269 .IP "\fB\-\-bootstrap\fR cdebootstrap|cdebootstrap-static|debootstrap" 4
270 defines which program is used to bootstrap the debian chroot, default is debootstrap.
271267 .IP "\fB\-\-cache\fR true|false" 4
272268 defines globally if any cache should be used at all. Different caches can be controlled through the their own options.
273269 .IP "\fB\-\-cache\-indices\fR true|false" 4
347343 .IP "\-k|\fB\-\-linux\-flavours\fR \fIFLAVOUR\fR|""\fIFLAVOURS\fR""" 4
348344 sets the kernel flavours to be installed. Note that in case you specify more than that the first will be configured the default kernel that gets booted.
349345 .IP "\fB\-\-linux\-packages\fR ""\fIPACKAGES\fR""" 4
350 sets the internal name of the kernel packages naming scheme. If you use debian kernel packages, you will not have to adjust it. If you decide to use custom kernel packages that do not follow the debian naming scheme, remember to set this option to the stub of the packages only (for debian this is linux\-image\-2.6), so that \fISTUB\fR-\fIFLAVOUR\fR results in a valid package name (for debian e.g. linux\-image\-2.6\-486). Preferably you use the meta package name, if any, for the stub, so that your configuration is ABI independent. Also don't forget that you have to include stubs of the binary modules packages for unionfs or aufs, and squashfs if you built them out-of-tree.
346 sets the internal name of the kernel packages naming scheme. If you use debian kernel packages, you will not have to adjust it. If you decide to use custom kernel packages that do not follow the debian naming scheme, remember to set this option to the stub of the packages only (for debian this is linux\-image\-2.6), so that \fISTUB\fR-\fIFLAVOUR\fR results in a valid package name (for debian e.g. linux\-image\-586). Preferably you use the meta package name, if any, for the stub, so that your configuration is ABI independent. Also don't forget that you have to include stubs of the binary modules packages for unionfs or aufs, and squashfs if you built them out-of-tree.
351347 .IP "\fB\-\-losetup\fR losetup|losetup.orig" 4
352348 sets the filename of the losetup binary from the host system that should be used. This is autodetected and does generally not need any customization.
353349 .IP "\fB\-\-memtest\fR memtest86+|memtest86|none" 4
363359 .IP "\fB\-\-parent\-mirror\-chroot\-backports\fR \fIURL\fR" 4
364360 sets the location of the debian backports package mirror that will be used to fetch packages in order to build the live system. By default, this points to http://backports.debian.org/debian-backports/.
365361 .IP "\fB\-\-parent\-mirror\-binary\fR \fIURL\fR" 4
366 sets the location of the debian package mirror that should end up configured in the final image and which is the one a user would see and use. This has not necessarily to be the same that is used to build the image, e.g. if you use a local mirror but want to have an official mirror in the image. By default, 'http://http.debian.net/debian/' is used.
362 sets the location of the debian package mirror that should end up configured in the final image and which is the one a user would see and use. This has not necessarily to be the same that is used to build the image, e.g. if you use a local mirror but want to have an official mirror in the image. By default, 'http://httpredir.debian.org/debian/' is used.
367363 .IP "\fB\-\-parent\-mirror\-binary\-security\fR \fIURL\fR" 4
368364 sets the location of the debian security package mirror that should end up configured in the final image. By default, 'http://security.debian.org/' is used.
369365 .IP "\fB\-\-parent\-mirror\-binary\-updates\fR \fIURL\fR" 4
0 .TH LIVE\-BUILD 1 2014\-12\-10 4.0.4-1 "Live Systems Project"
0 .TH LIVE\-BUILD 1 2015\-08\-23 5.0~a11-1 "Live Systems Project"
11
22 .SH NAME
33 \fBlb source\fR \- Complete the source stage
0 .TH LIVE\-BUILD 7 2014\-12\-10 4.0.4-1 "Live Systems Project"
0 .TH LIVE\-BUILD 7 2015\-08\-23 5.0~a11-1 "Live Systems Project"
11
22 .SH NAME
33 \fBlive\-build\fR \- the live systems tool suite
8585 .SS Bootstrap commands
8686 .IP "\fBlb_bootstrap_cache\fR(1)" 4
8787 cache bootstrap stage
88 .IP "\fBlb_bootstrap_cdebootstrap\fR(1)" 4
89 bootstrap a Debian system with cdebootstrap(1)
9088 .IP "\fBlb_bootstrap_debootstrap\fR(1)" 4
9189 bootstrap a Debian system with debootstrap(8)
9290 .SS Chroot commands
22 .\" This file was generated with po4a. Translate the source file.
33 .\"
44 .\"*******************************************************************
5 .TH LIVE\-BUILD 1 2014\-12\-10 4.0.4\-1 "Live システムプロジェクト"
5 .TH LIVE\-BUILD 1 2015\-08\-23 5.0~a11\-1 "Live システムプロジェクト"
66
77 .SH 名前
88 \fBlb\fP \- live\-build プログラムのラッパー
22 .\" This file was generated with po4a. Translate the source file.
33 .\"
44 .\"*******************************************************************
5 .TH LIVE\-BUILD 1 2014\-12\-10 4.0.4\-1 "Live システムプロジェクト"
5 .TH LIVE\-BUILD 1 2015\-08\-23 5.0~a11\-1 "Live システムプロジェクト"
66
77 .SH 名前
88 \fBlb binary\fP \- バイナリ段階を完了させます
22 .\" This file was generated with po4a. Translate the source file.
33 .\"
44 .\"*******************************************************************
5 .TH LIVE\-BUILD 1 2014\-12\-10 4.0.4\-1 "Live システムプロジェクト"
5 .TH LIVE\-BUILD 1 2015\-08\-23 5.0~a11\-1 "Live システムプロジェクト"
66
77 .SH 名前
88 \fBlb bootstrap\fP \- パッケージ収集段階を完了させます
22 .\" This file was generated with po4a. Translate the source file.
33 .\"
44 .\"*******************************************************************
5 .TH LIVE\-BUILD 1 2014\-12\-10 4.0.4\-1 "Live システムプロジェクト"
5 .TH LIVE\-BUILD 1 2015\-08\-23 5.0~a11\-1 "Live システムプロジェクト"
66
77 .SH 名前
88 \fBlb build\fP \- パッケージ収集、chroot、バイナリ、ソース段階を完了させます
22 .\" This file was generated with po4a. Translate the source file.
33 .\"
44 .\"*******************************************************************
5 .TH LIVE\-BUILD 1 2014\-12\-10 4.0.4\-1 "Live システムプロジェクト"
5 .TH LIVE\-BUILD 1 2015\-08\-23 5.0~a11\-1 "Live システムプロジェクト"
66
77 .SH 名前
88 \fBlb chroot\fP \- chroot 段階を完了させます
22 .\" This file was generated with po4a. Translate the source file.
33 .\"
44 .\"*******************************************************************
5 .TH LIVE\-BUILD 1 2014\-12\-10 4.0.4\-1 "Live システムプロジェクト"
5 .TH LIVE\-BUILD 1 2015\-08\-23 5.0~a11\-1 "Live システムプロジェクト"
66
77 .SH 名前
88 \fBlb clean\fP \- 設定ディレクトリを掃除します
22 .\" This file was generated with po4a. Translate the source file.
33 .\"
44 .\"*******************************************************************
5 .TH LIVE\-BUILD 1 2014\-12\-10 4.0.4\-1 "Live システムプロジェクト"
5 .TH LIVE\-BUILD 1 2015\-08\-23 5.0~a11\-1 "Live システムプロジェクト"
66
77 .SH 名前
88 \fBlb config\fP \- 設定ディレクトリを作成します
4444 [\fB\-\-bootappend\-live\fP \fIパラメータ\fP|\fI"パラメータ"\fP]
4545 .br
4646 [\fB\-\-bootloader\fP grub|grub2|syslinux]
47 .br
48 [\fB\-\-bootstrap\fP cdebootstrap|cdebootstrap\-static|debootstrap]
4947 .br
5048 [\fB\-\-cache\fP true|false]
5149 .br
303301 でのサポートが追いついていないものがあり得ることに注意してください。\fBlb config\fP
304302 はそういった未サポートの設定の作成には失敗し、そのことについて説明します。amd64 や i386 用のhddイメージでは syslinux
305303 がデフォルトとなっています。
306 .IP "\fB\-\-bootstrap\fP cdebootstrap|cdebootstrap\-static|debootstrap" 4
307 debian chroot でのパッケージ収集に利用するプログラムを選択します。デフォルトでは debootstrap となっています。
308304 .IP "\fB\-\-cache\fP true|false" 4
309305 全体としてキャッシュを使うか否か大域的に決定します。異なるキャッシュを、キャッシュそれぞれのオプションで制御できます。
310306 .IP "\fB\-\-cache\-indices\fP true|false" 4
431427 .IP "\fB\-\-linux\-packages\fP \(dq\fIパッケージ\fP\(dq" 4
432428 カーネルのパッケージ命名規則に従った内部名をセットします。Debian のカーネルパッケージを利用している場合は調整する必要はありません。Debian
433429 の命名規則に従わない独自のカーネルパッケージを利用する場合にはこのオプションでパッケージの前半部 (Debian の場合は
434 linux\-image\-2.6) だけを忘れずに指定し、\fI前半部\fP\-\fIフレーバー\fP (Debian の場合は例えば
435 linux\-image\-2.6\-486)
430 linux\-image\-2.6) だけを忘れずに指定し、\fI前半部\fP\-\fIフレーバー\fP (Debian の場合は例えば linux\-image\-586)
436431 が有効なパッケージ名になるようにしてください。好ましいのは、メタパッケージがある場合にはその名前を前半部に使うことで、そうすると設定とABIが独立します。また、unionfs
437432 や aufs、squashfs
438433 のバイナリモジュールパッケージについても、ツリー外でビルドした場合にはその前半部を含める必要があることを忘れないようにしてください。
458453 パッケージのミラーの場所をセットします。デフォルトでは「http://backports.debian.org/debian\-backports/」が利用されます。
459454 .IP "\fB\-\-parent\-mirror\-binary\fP \fIURL\fP" 4
460455 出来上がったイメージ中で設定され、ユーザが利用することになる Debian
461 パッケージミラーの場所を指定します。これはイメージのビルドに利用するものと同一である必要はありません。例えばローカルミラーを利用しているけれどもイメージでは公式のミラーを使うようにしたい場合。デフォルトでは「http://http.debian.net/debian/」を利用します。
456 パッケージミラーの場所を指定します。これはイメージのビルドに利用するものと同一である必要はありません。例えばローカルミラーを利用しているけれどもイメージでは公式のミラーを使うようにしたい場合。デフォルトでは「http://httpredir.debian.org/debian/」を利用します。
462457 .IP "\fB\-\-parent\-mirror\-binary\-security\fP \fIURL\fP" 4
463458 最終的に出来上がるイメージで設定すべきセキュリティパッケージのミラーの場所をセットします。デフォルトでは「http://security.debian.org/」が利用されます。
464459 .IP "\fB\-\-parent\-mirror\-binary\-updates\fP \fIURL\fP" 4
485480 Live システムをビルドするために派生物のパッケージを取得するのに利用する backports
486481 パッケージのミラーの場所をセットします。デフォルトでは「http://backports.debian.org/debian\-backports/」が利用されます。
487482 .IP "\fB\-\-mirror\-binary\fP \fIURL\fP" 4
488 出来上がったイメージ中で設定され、ユーザが利用することになる派生物のパッケージミラーの場所を指定します。これはイメージのビルドに利用するものと同一である必要はありません。例えばローカルミラーを利用しているけれどもイメージでは公式のミラーを使うようにしたい場合。デフォルトでは「http://http.debian.net/debian/」を利用します。
483 出来上がったイメージ中で設定され、ユーザが利用することになる派生物のパッケージミラーの場所を指定します。これはイメージのビルドに利用するものと同一である必要はありません。例えばローカルミラーを利用しているけれどもイメージでは公式のミラーを使うようにしたい場合。デフォルトでは「http://httpredir.debian.org/debian/」を利用します。
489484 .IP "\fB\-\-mirror\-binary\-security\fP \fIURL\fP" 4
490485 最終的に出来上がるイメージで設定すべき派生セキュリティパッケージのミラーの場所をセットします。
491486 .IP "\fB\-\-mirror\-binary\-updates\fP \fIURL\fP" 4
22 .\" This file was generated with po4a. Translate the source file.
33 .\"
44 .\"*******************************************************************
5 .TH LIVE\-BUILD 1 2014\-12\-10 4.0.4\-1 "Live システムプロジェクト"
5 .TH LIVE\-BUILD 1 2015\-08\-23 5.0~a11\-1 "Live システムプロジェクト"
66
77 .SH 名前
88 \fBlb source\fP \- ソース段階を完了させます
22 .\" This file was generated with po4a. Translate the source file.
33 .\"
44 .\"*******************************************************************
5 .TH LIVE\-BUILD 7 2014\-12\-10 4.0.4\-1 "Live システムプロジェクト"
5 .TH LIVE\-BUILD 7 2015\-08\-23 5.0~a11\-1 "Live システムプロジェクト"
66
77 .SH 名前
88 \fBlive\-build\fP \- Live システムツール集
9797 .SS パッケージ収集用のコマンド
9898 .IP \fBlb_bootstrap_cache\fP(1) 4
9999 パッケージ収集段階をキャッシュします
100 .IP \fBlb_bootstrap_cdebootstrap\fP(1) 4
101 cdebootstrap(1) により Debian システムのパッケージ収集を行います
102100 .IP \fBlb_bootstrap_debootstrap\fP(1) 4
103101 debootstrap(8) により Debian システムのパッケージ収集を行います
104102 .SS "chroot コマンド"
44 msgid ""
55 msgstr ""
66 "Project-Id-Version: live-build\n"
7 "POT-Creation-Date: 2014-12-10 08:24+0100\n"
7 "POT-Creation-Date: 2015-08-23 10:57+0200\n"
88 "PO-Revision-Date: 2014-08-28 02:52+0900\n"
99 "Last-Translator: victory <[email protected]>\n"
1010 "Language-Team: none\n"
2525 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
2626 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
2727 #: en/live-build.7:1
28 #, no-wrap
29 msgid "2014-12-10"
30 msgstr ""
31
32 #. type: TH
33 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
34 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
35 #: en/live-build.7:1
36 #, no-wrap
37 msgid "4.0.4-1"
38 msgstr ""
28 #, fuzzy, no-wrap
29 msgid "2015-08-23"
30 msgstr "2015-02-07"
31
32 #. type: TH
33 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
34 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
35 #: en/live-build.7:1
36 #, fuzzy, no-wrap
37 msgid "5.0~a11-1"
38 msgstr "5.0~a3-1"
3939
4040 #. type: TH
4141 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
7878
7979 #. type: SH
8080 #: en/lb.1:11 en/lb_binary.1:9 en/lb_bootstrap.1:9 en/lb_build.1:9
81 #: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:225 en/lb_source.1:9
81 #: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:223 en/lb_source.1:9
8282 #: en/live-build.7:11
8383 #, no-wrap
8484 msgid "DESCRIPTION"
9595
9696 #. type: SH
9797 #: en/lb.1:16 en/lb_binary.1:14 en/lb_bootstrap.1:14 en/lb_build.1:14
98 #: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:234 en/lb_source.1:14
98 #: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:232 en/lb_source.1:14
9999 #: en/live-build.7:20
100100 #, no-wrap
101101 msgid "OPTIONS"
114114
115115 #. type: SH
116116 #: en/lb.1:19 en/lb_binary.1:17 en/lb_bootstrap.1:17 en/lb_build.1:17
117 #: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:466 en/lb_source.1:17
118 #: en/live-build.7:215
117 #: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:462 en/lb_source.1:17
118 #: en/live-build.7:213
119119 #, no-wrap
120120 msgid "FILES"
121121 msgstr "ファイル"
129129
130130 #. type: SH
131131 #: en/lb.1:22 en/lb_binary.1:20 en/lb_bootstrap.1:20 en/lb_build.1:22
132 #: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:473 en/lb_source.1:20
133 #: en/live-build.7:219
132 #: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:469 en/lb_source.1:20
133 #: en/live-build.7:217
134134 #, no-wrap
135135 msgid "SEE ALSO"
136136 msgstr "関連項目"
137137
138138 #. type: Plain text
139139 #: en/lb.1:24 en/lb_binary.1:22 en/lb_bootstrap.1:22 en/lb_build.1:24
140 #: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:475 en/lb_source.1:22
140 #: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:471 en/lb_source.1:22
141141 msgid "I<live-build>(7)"
142142 msgstr "I<live-build>(7)"
143143
144144 #. type: Plain text
145145 #: en/lb.1:26 en/lb_binary.1:24 en/lb_bootstrap.1:24 en/lb_build.1:26
146 #: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:481 en/lb_source.1:24
147 #: en/live-build.7:225
146 #: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:477 en/lb_source.1:24
147 #: en/live-build.7:223
148148 msgid "This program is a part of live-build."
149149 msgstr "このプログラムは live-build の一部です。"
150150
151151 #. type: SH
152152 #: en/lb.1:27 en/lb_binary.1:25 en/lb_bootstrap.1:25 en/lb_build.1:27
153 #: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:482 en/lb_source.1:25
154 #: en/live-build.7:226
153 #: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:478 en/lb_source.1:25
154 #: en/live-build.7:224
155155 #, no-wrap
156156 msgid "HOMEPAGE"
157157 msgstr "ホームページ"
158158
159159 #. type: Plain text
160160 #: en/lb.1:29 en/lb_binary.1:27 en/lb_bootstrap.1:27 en/lb_build.1:29
161 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:484 en/lb_source.1:27
162 #: en/live-build.7:228
161 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:480 en/lb_source.1:27
162 #: en/live-build.7:226
163163 msgid ""
164164 "More information about live-build and the Live Systems project can be found "
165165 "on the homepage at E<lt>I<http://live-systems.org/>E<gt> and in the manual "
171171
172172 #. type: SH
173173 #: en/lb.1:30 en/lb_binary.1:28 en/lb_bootstrap.1:28 en/lb_build.1:30
174 #: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:485 en/lb_source.1:28
175 #: en/live-build.7:229
174 #: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:481 en/lb_source.1:28
175 #: en/live-build.7:227
176176 #, no-wrap
177177 msgid "BUGS"
178178 msgstr "バグ"
179179
180180 #. type: Plain text
181181 #: en/lb.1:32 en/lb_binary.1:30 en/lb_bootstrap.1:30 en/lb_build.1:32
182 #: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:487 en/lb_source.1:30
183 #: en/live-build.7:231
182 #: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:483 en/lb_source.1:30
183 #: en/live-build.7:229
184184 msgid ""
185185 "Bugs can be reported by submitting a bugreport for the live-build package in "
186186 "the Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
194194
195195 #. type: SH
196196 #: en/lb.1:33 en/lb_binary.1:31 en/lb_bootstrap.1:31 en/lb_build.1:33
197 #: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:488 en/lb_source.1:31
198 #: en/live-build.7:232
197 #: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:484 en/lb_source.1:31
198 #: en/live-build.7:230
199199 #, no-wrap
200200 msgid "AUTHOR"
201201 msgstr "作者"
202202
203203 #. type: Plain text
204204 #: en/lb.1:34 en/lb_binary.1:32 en/lb_bootstrap.1:32 en/lb_build.1:34
205 #: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:489 en/lb_source.1:32
206 #: en/live-build.7:233
205 #: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:485 en/lb_source.1:32
206 #: en/live-build.7:231
207207 msgid ""
208208 "live-build was written by Daniel Baumann E<lt>I<[email protected]>E<gt>."
209209 msgstr ""
44 msgid ""
55 msgstr ""
66 "Project-Id-Version: live-build\n"
7 "POT-Creation-Date: 2014-12-10 08:24+0100\n"
7 "POT-Creation-Date: 2015-08-23 10:57+0200\n"
88 "PO-Revision-Date: 2014-08-28 02:52+0900\n"
99 "Last-Translator: victory <[email protected]>\n"
1010 "Language-Team: none\n"
2525 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
2626 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
2727 #: en/live-build.7:1
28 #, no-wrap
29 msgid "2014-12-10"
30 msgstr ""
31
32 #. type: TH
33 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
34 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
35 #: en/live-build.7:1
36 #, no-wrap
37 msgid "4.0.4-1"
38 msgstr ""
28 #, fuzzy, no-wrap
29 msgid "2015-08-23"
30 msgstr "2015-02-07"
31
32 #. type: TH
33 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
34 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
35 #: en/live-build.7:1
36 #, fuzzy, no-wrap
37 msgid "5.0~a11-1"
38 msgstr "5.0~a3-1"
3939
4040 #. type: TH
4141 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
6363
6464 #. type: SH
6565 #: en/lb.1:11 en/lb_binary.1:9 en/lb_bootstrap.1:9 en/lb_build.1:9
66 #: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:225 en/lb_source.1:9
66 #: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:223 en/lb_source.1:9
6767 #: en/live-build.7:11
6868 #, no-wrap
6969 msgid "DESCRIPTION"
7171
7272 #. type: SH
7373 #: en/lb.1:16 en/lb_binary.1:14 en/lb_bootstrap.1:14 en/lb_build.1:14
74 #: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:234 en/lb_source.1:14
74 #: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:232 en/lb_source.1:14
7575 #: en/live-build.7:20
7676 #, no-wrap
7777 msgid "OPTIONS"
7979
8080 #. type: SH
8181 #: en/lb.1:19 en/lb_binary.1:17 en/lb_bootstrap.1:17 en/lb_build.1:17
82 #: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:466 en/lb_source.1:17
83 #: en/live-build.7:215
82 #: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:462 en/lb_source.1:17
83 #: en/live-build.7:213
8484 #, no-wrap
8585 msgid "FILES"
8686 msgstr "ファイル"
9494
9595 #. type: SH
9696 #: en/lb.1:22 en/lb_binary.1:20 en/lb_bootstrap.1:20 en/lb_build.1:22
97 #: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:473 en/lb_source.1:20
98 #: en/live-build.7:219
97 #: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:469 en/lb_source.1:20
98 #: en/live-build.7:217
9999 #, no-wrap
100100 msgid "SEE ALSO"
101101 msgstr "関連項目"
102102
103103 #. type: Plain text
104104 #: en/lb.1:24 en/lb_binary.1:22 en/lb_bootstrap.1:22 en/lb_build.1:24
105 #: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:475 en/lb_source.1:22
105 #: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:471 en/lb_source.1:22
106106 msgid "I<live-build>(7)"
107107 msgstr "I<live-build>(7)"
108108
109109 #. type: Plain text
110110 #: en/lb.1:26 en/lb_binary.1:24 en/lb_bootstrap.1:24 en/lb_build.1:26
111 #: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:481 en/lb_source.1:24
112 #: en/live-build.7:225
111 #: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:477 en/lb_source.1:24
112 #: en/live-build.7:223
113113 msgid "This program is a part of live-build."
114114 msgstr "このプログラムは live-build の一部です。"
115115
116116 #. type: SH
117117 #: en/lb.1:27 en/lb_binary.1:25 en/lb_bootstrap.1:25 en/lb_build.1:27
118 #: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:482 en/lb_source.1:25
119 #: en/live-build.7:226
118 #: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:478 en/lb_source.1:25
119 #: en/live-build.7:224
120120 #, no-wrap
121121 msgid "HOMEPAGE"
122122 msgstr "ホームページ"
123123
124124 #. type: Plain text
125125 #: en/lb.1:29 en/lb_binary.1:27 en/lb_bootstrap.1:27 en/lb_build.1:29
126 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:484 en/lb_source.1:27
127 #: en/live-build.7:228
126 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:480 en/lb_source.1:27
127 #: en/live-build.7:226
128128 msgid ""
129129 "More information about live-build and the Live Systems project can be found "
130130 "on the homepage at E<lt>I<http://live-systems.org/>E<gt> and in the manual "
136136
137137 #. type: SH
138138 #: en/lb.1:30 en/lb_binary.1:28 en/lb_bootstrap.1:28 en/lb_build.1:30
139 #: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:485 en/lb_source.1:28
140 #: en/live-build.7:229
139 #: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:481 en/lb_source.1:28
140 #: en/live-build.7:227
141141 #, no-wrap
142142 msgid "BUGS"
143143 msgstr "バグ"
144144
145145 #. type: Plain text
146146 #: en/lb.1:32 en/lb_binary.1:30 en/lb_bootstrap.1:30 en/lb_build.1:32
147 #: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:487 en/lb_source.1:30
148 #: en/live-build.7:231
147 #: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:483 en/lb_source.1:30
148 #: en/live-build.7:229
149149 msgid ""
150150 "Bugs can be reported by submitting a bugreport for the live-build package in "
151151 "the Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
159159
160160 #. type: SH
161161 #: en/lb.1:33 en/lb_binary.1:31 en/lb_bootstrap.1:31 en/lb_build.1:33
162 #: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:488 en/lb_source.1:31
163 #: en/live-build.7:232
162 #: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:484 en/lb_source.1:31
163 #: en/live-build.7:230
164164 #, no-wrap
165165 msgid "AUTHOR"
166166 msgstr "作者"
167167
168168 #. type: Plain text
169169 #: en/lb.1:34 en/lb_binary.1:32 en/lb_bootstrap.1:32 en/lb_build.1:34
170 #: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:489 en/lb_source.1:32
171 #: en/live-build.7:233
170 #: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:485 en/lb_source.1:32
171 #: en/live-build.7:231
172172 msgid ""
173173 "live-build was written by Daniel Baumann E<lt>I<[email protected]>E<gt>."
174174 msgstr ""
44 msgid ""
55 msgstr ""
66 "Project-Id-Version: live-build\n"
7 "POT-Creation-Date: 2014-12-10 08:24+0100\n"
7 "POT-Creation-Date: 2015-08-23 10:57+0200\n"
88 "PO-Revision-Date: 2014-08-29 06:25+0900\n"
99 "Last-Translator: victory <[email protected]>\n"
1010 "Language-Team: none\n"
2525 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
2626 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
2727 #: en/live-build.7:1
28 #, no-wrap
29 msgid "2014-12-10"
30 msgstr ""
31
32 #. type: TH
33 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
34 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
35 #: en/live-build.7:1
36 #, no-wrap
37 msgid "4.0.4-1"
38 msgstr ""
28 #, fuzzy, no-wrap
29 msgid "2015-08-23"
30 msgstr "2015-02-07"
31
32 #. type: TH
33 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
34 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
35 #: en/live-build.7:1
36 #, fuzzy, no-wrap
37 msgid "5.0~a11-1"
38 msgstr "5.0~a3-1"
3939
4040 #. type: TH
4141 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
6363
6464 #. type: SH
6565 #: en/lb.1:11 en/lb_binary.1:9 en/lb_bootstrap.1:9 en/lb_build.1:9
66 #: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:225 en/lb_source.1:9
66 #: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:223 en/lb_source.1:9
6767 #: en/live-build.7:11
6868 #, no-wrap
6969 msgid "DESCRIPTION"
7171
7272 #. type: SH
7373 #: en/lb.1:16 en/lb_binary.1:14 en/lb_bootstrap.1:14 en/lb_build.1:14
74 #: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:234 en/lb_source.1:14
74 #: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:232 en/lb_source.1:14
7575 #: en/live-build.7:20
7676 #, no-wrap
7777 msgid "OPTIONS"
7979
8080 #. type: SH
8181 #: en/lb.1:19 en/lb_binary.1:17 en/lb_bootstrap.1:17 en/lb_build.1:17
82 #: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:466 en/lb_source.1:17
83 #: en/live-build.7:215
82 #: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:462 en/lb_source.1:17
83 #: en/live-build.7:213
8484 #, no-wrap
8585 msgid "FILES"
8686 msgstr "ファイル"
9494
9595 #. type: SH
9696 #: en/lb.1:22 en/lb_binary.1:20 en/lb_bootstrap.1:20 en/lb_build.1:22
97 #: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:473 en/lb_source.1:20
98 #: en/live-build.7:219
97 #: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:469 en/lb_source.1:20
98 #: en/live-build.7:217
9999 #, no-wrap
100100 msgid "SEE ALSO"
101101 msgstr "関連項目"
102102
103103 #. type: Plain text
104104 #: en/lb.1:24 en/lb_binary.1:22 en/lb_bootstrap.1:22 en/lb_build.1:24
105 #: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:475 en/lb_source.1:22
105 #: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:471 en/lb_source.1:22
106106 msgid "I<live-build>(7)"
107107 msgstr "I<live-build>(7)"
108108
109109 #. type: Plain text
110110 #: en/lb.1:26 en/lb_binary.1:24 en/lb_bootstrap.1:24 en/lb_build.1:26
111 #: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:481 en/lb_source.1:24
112 #: en/live-build.7:225
111 #: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:477 en/lb_source.1:24
112 #: en/live-build.7:223
113113 msgid "This program is a part of live-build."
114114 msgstr "このプログラムは live-build の一部です。"
115115
116116 #. type: SH
117117 #: en/lb.1:27 en/lb_binary.1:25 en/lb_bootstrap.1:25 en/lb_build.1:27
118 #: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:482 en/lb_source.1:25
119 #: en/live-build.7:226
118 #: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:478 en/lb_source.1:25
119 #: en/live-build.7:224
120120 #, no-wrap
121121 msgid "HOMEPAGE"
122122 msgstr "ホームページ"
123123
124124 #. type: Plain text
125125 #: en/lb.1:29 en/lb_binary.1:27 en/lb_bootstrap.1:27 en/lb_build.1:29
126 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:484 en/lb_source.1:27
127 #: en/live-build.7:228
126 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:480 en/lb_source.1:27
127 #: en/live-build.7:226
128128 msgid ""
129129 "More information about live-build and the Live Systems project can be found "
130130 "on the homepage at E<lt>I<http://live-systems.org/>E<gt> and in the manual "
136136
137137 #. type: SH
138138 #: en/lb.1:30 en/lb_binary.1:28 en/lb_bootstrap.1:28 en/lb_build.1:30
139 #: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:485 en/lb_source.1:28
140 #: en/live-build.7:229
139 #: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:481 en/lb_source.1:28
140 #: en/live-build.7:227
141141 #, no-wrap
142142 msgid "BUGS"
143143 msgstr "バグ"
144144
145145 #. type: Plain text
146146 #: en/lb.1:32 en/lb_binary.1:30 en/lb_bootstrap.1:30 en/lb_build.1:32
147 #: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:487 en/lb_source.1:30
148 #: en/live-build.7:231
147 #: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:483 en/lb_source.1:30
148 #: en/live-build.7:229
149149 msgid ""
150150 "Bugs can be reported by submitting a bugreport for the live-build package in "
151151 "the Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
159159
160160 #. type: SH
161161 #: en/lb.1:33 en/lb_binary.1:31 en/lb_bootstrap.1:31 en/lb_build.1:33
162 #: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:488 en/lb_source.1:31
163 #: en/live-build.7:232
162 #: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:484 en/lb_source.1:31
163 #: en/live-build.7:230
164164 #, no-wrap
165165 msgid "AUTHOR"
166166 msgstr "作者"
167167
168168 #. type: Plain text
169169 #: en/lb.1:34 en/lb_binary.1:32 en/lb_bootstrap.1:32 en/lb_build.1:34
170 #: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:489 en/lb_source.1:32
171 #: en/live-build.7:233
170 #: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:485 en/lb_source.1:32
171 #: en/live-build.7:231
172172 msgid ""
173173 "live-build was written by Daniel Baumann E<lt>I<[email protected]>E<gt>."
174174 msgstr ""
44 msgid ""
55 msgstr ""
66 "Project-Id-Version: live-build\n"
7 "POT-Creation-Date: 2014-12-10 08:24+0100\n"
7 "POT-Creation-Date: 2015-08-23 10:57+0200\n"
88 "PO-Revision-Date: 2014-08-28 02:52+0900\n"
99 "Last-Translator: victory <[email protected]>\n"
1010 "Language-Team: none\n"
2525 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
2626 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
2727 #: en/live-build.7:1
28 #, no-wrap
29 msgid "2014-12-10"
30 msgstr ""
31
32 #. type: TH
33 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
34 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
35 #: en/live-build.7:1
36 #, no-wrap
37 msgid "4.0.4-1"
38 msgstr ""
28 #, fuzzy, no-wrap
29 msgid "2015-08-23"
30 msgstr "2015-02-07"
31
32 #. type: TH
33 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
34 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
35 #: en/live-build.7:1
36 #, fuzzy, no-wrap
37 msgid "5.0~a11-1"
38 msgstr "5.0~a3-1"
3939
4040 #. type: TH
4141 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
6363
6464 #. type: SH
6565 #: en/lb.1:11 en/lb_binary.1:9 en/lb_bootstrap.1:9 en/lb_build.1:9
66 #: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:225 en/lb_source.1:9
66 #: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:223 en/lb_source.1:9
6767 #: en/live-build.7:11
6868 #, no-wrap
6969 msgid "DESCRIPTION"
7171
7272 #. type: SH
7373 #: en/lb.1:16 en/lb_binary.1:14 en/lb_bootstrap.1:14 en/lb_build.1:14
74 #: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:234 en/lb_source.1:14
74 #: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:232 en/lb_source.1:14
7575 #: en/live-build.7:20
7676 #, no-wrap
7777 msgid "OPTIONS"
7979
8080 #. type: SH
8181 #: en/lb.1:19 en/lb_binary.1:17 en/lb_bootstrap.1:17 en/lb_build.1:17
82 #: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:466 en/lb_source.1:17
83 #: en/live-build.7:215
82 #: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:462 en/lb_source.1:17
83 #: en/live-build.7:213
8484 #, no-wrap
8585 msgid "FILES"
8686 msgstr "ファイル"
8787
8888 #. type: SH
8989 #: en/lb.1:22 en/lb_binary.1:20 en/lb_bootstrap.1:20 en/lb_build.1:22
90 #: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:473 en/lb_source.1:20
91 #: en/live-build.7:219
90 #: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:469 en/lb_source.1:20
91 #: en/live-build.7:217
9292 #, no-wrap
9393 msgid "SEE ALSO"
9494 msgstr "関連項目"
9595
9696 #. type: Plain text
9797 #: en/lb.1:24 en/lb_binary.1:22 en/lb_bootstrap.1:22 en/lb_build.1:24
98 #: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:475 en/lb_source.1:22
98 #: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:471 en/lb_source.1:22
9999 msgid "I<live-build>(7)"
100100 msgstr "I<live-build>(7)"
101101
102102 #. type: Plain text
103103 #: en/lb.1:26 en/lb_binary.1:24 en/lb_bootstrap.1:24 en/lb_build.1:26
104 #: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:481 en/lb_source.1:24
105 #: en/live-build.7:225
104 #: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:477 en/lb_source.1:24
105 #: en/live-build.7:223
106106 msgid "This program is a part of live-build."
107107 msgstr "このプログラムは live-build の一部です。"
108108
109109 #. type: SH
110110 #: en/lb.1:27 en/lb_binary.1:25 en/lb_bootstrap.1:25 en/lb_build.1:27
111 #: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:482 en/lb_source.1:25
112 #: en/live-build.7:226
111 #: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:478 en/lb_source.1:25
112 #: en/live-build.7:224
113113 #, no-wrap
114114 msgid "HOMEPAGE"
115115 msgstr "ホームページ"
116116
117117 #. type: Plain text
118118 #: en/lb.1:29 en/lb_binary.1:27 en/lb_bootstrap.1:27 en/lb_build.1:29
119 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:484 en/lb_source.1:27
120 #: en/live-build.7:228
119 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:480 en/lb_source.1:27
120 #: en/live-build.7:226
121121 msgid ""
122122 "More information about live-build and the Live Systems project can be found "
123123 "on the homepage at E<lt>I<http://live-systems.org/>E<gt> and in the manual "
129129
130130 #. type: SH
131131 #: en/lb.1:30 en/lb_binary.1:28 en/lb_bootstrap.1:28 en/lb_build.1:30
132 #: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:485 en/lb_source.1:28
133 #: en/live-build.7:229
132 #: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:481 en/lb_source.1:28
133 #: en/live-build.7:227
134134 #, no-wrap
135135 msgid "BUGS"
136136 msgstr "バグ"
137137
138138 #. type: Plain text
139139 #: en/lb.1:32 en/lb_binary.1:30 en/lb_bootstrap.1:30 en/lb_build.1:32
140 #: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:487 en/lb_source.1:30
141 #: en/live-build.7:231
140 #: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:483 en/lb_source.1:30
141 #: en/live-build.7:229
142142 msgid ""
143143 "Bugs can be reported by submitting a bugreport for the live-build package in "
144144 "the Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
152152
153153 #. type: SH
154154 #: en/lb.1:33 en/lb_binary.1:31 en/lb_bootstrap.1:31 en/lb_build.1:33
155 #: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:488 en/lb_source.1:31
156 #: en/live-build.7:232
155 #: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:484 en/lb_source.1:31
156 #: en/live-build.7:230
157157 #, no-wrap
158158 msgid "AUTHOR"
159159 msgstr "作者"
160160
161161 #. type: Plain text
162162 #: en/lb.1:34 en/lb_binary.1:32 en/lb_bootstrap.1:32 en/lb_build.1:34
163 #: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:489 en/lb_source.1:32
164 #: en/live-build.7:233
163 #: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:485 en/lb_source.1:32
164 #: en/live-build.7:231
165165 msgid ""
166166 "live-build was written by Daniel Baumann E<lt>I<[email protected]>E<gt>."
167167 msgstr ""
44 msgid ""
55 msgstr ""
66 "Project-Id-Version: live-build\n"
7 "POT-Creation-Date: 2014-12-10 08:24+0100\n"
7 "POT-Creation-Date: 2015-08-23 10:57+0200\n"
88 "PO-Revision-Date: 2014-08-28 02:52+0900\n"
99 "Last-Translator: victory <[email protected]>\n"
1010 "Language-Team: none\n"
2525 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
2626 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
2727 #: en/live-build.7:1
28 #, no-wrap
29 msgid "2014-12-10"
30 msgstr ""
31
32 #. type: TH
33 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
34 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
35 #: en/live-build.7:1
36 #, no-wrap
37 msgid "4.0.4-1"
38 msgstr ""
28 #, fuzzy, no-wrap
29 msgid "2015-08-23"
30 msgstr "2015-02-07"
31
32 #. type: TH
33 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
34 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
35 #: en/live-build.7:1
36 #, fuzzy, no-wrap
37 msgid "5.0~a11-1"
38 msgstr "5.0~a3-1"
3939
4040 #. type: TH
4141 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
6363
6464 #. type: SH
6565 #: en/lb.1:11 en/lb_binary.1:9 en/lb_bootstrap.1:9 en/lb_build.1:9
66 #: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:225 en/lb_source.1:9
66 #: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:223 en/lb_source.1:9
6767 #: en/live-build.7:11
6868 #, no-wrap
6969 msgid "DESCRIPTION"
7171
7272 #. type: SH
7373 #: en/lb.1:16 en/lb_binary.1:14 en/lb_bootstrap.1:14 en/lb_build.1:14
74 #: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:234 en/lb_source.1:14
74 #: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:232 en/lb_source.1:14
7575 #: en/live-build.7:20
7676 #, no-wrap
7777 msgid "OPTIONS"
7979
8080 #. type: SH
8181 #: en/lb.1:19 en/lb_binary.1:17 en/lb_bootstrap.1:17 en/lb_build.1:17
82 #: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:466 en/lb_source.1:17
83 #: en/live-build.7:215
82 #: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:462 en/lb_source.1:17
83 #: en/live-build.7:213
8484 #, no-wrap
8585 msgid "FILES"
8686 msgstr "ファイル"
9494
9595 #. type: SH
9696 #: en/lb.1:22 en/lb_binary.1:20 en/lb_bootstrap.1:20 en/lb_build.1:22
97 #: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:473 en/lb_source.1:20
98 #: en/live-build.7:219
97 #: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:469 en/lb_source.1:20
98 #: en/live-build.7:217
9999 #, no-wrap
100100 msgid "SEE ALSO"
101101 msgstr "関連項目"
102102
103103 #. type: Plain text
104104 #: en/lb.1:24 en/lb_binary.1:22 en/lb_bootstrap.1:22 en/lb_build.1:24
105 #: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:475 en/lb_source.1:22
105 #: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:471 en/lb_source.1:22
106106 msgid "I<live-build>(7)"
107107 msgstr "I<live-build>(7)"
108108
109109 #. type: Plain text
110110 #: en/lb.1:26 en/lb_binary.1:24 en/lb_bootstrap.1:24 en/lb_build.1:26
111 #: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:481 en/lb_source.1:24
112 #: en/live-build.7:225
111 #: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:477 en/lb_source.1:24
112 #: en/live-build.7:223
113113 msgid "This program is a part of live-build."
114114 msgstr "このプログラムは live-build の一部です。"
115115
116116 #. type: SH
117117 #: en/lb.1:27 en/lb_binary.1:25 en/lb_bootstrap.1:25 en/lb_build.1:27
118 #: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:482 en/lb_source.1:25
119 #: en/live-build.7:226
118 #: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:478 en/lb_source.1:25
119 #: en/live-build.7:224
120120 #, no-wrap
121121 msgid "HOMEPAGE"
122122 msgstr "ホームページ"
123123
124124 #. type: Plain text
125125 #: en/lb.1:29 en/lb_binary.1:27 en/lb_bootstrap.1:27 en/lb_build.1:29
126 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:484 en/lb_source.1:27
127 #: en/live-build.7:228
126 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:480 en/lb_source.1:27
127 #: en/live-build.7:226
128128 msgid ""
129129 "More information about live-build and the Live Systems project can be found "
130130 "on the homepage at E<lt>I<http://live-systems.org/>E<gt> and in the manual "
136136
137137 #. type: SH
138138 #: en/lb.1:30 en/lb_binary.1:28 en/lb_bootstrap.1:28 en/lb_build.1:30
139 #: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:485 en/lb_source.1:28
140 #: en/live-build.7:229
139 #: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:481 en/lb_source.1:28
140 #: en/live-build.7:227
141141 #, no-wrap
142142 msgid "BUGS"
143143 msgstr "バグ"
144144
145145 #. type: Plain text
146146 #: en/lb.1:32 en/lb_binary.1:30 en/lb_bootstrap.1:30 en/lb_build.1:32
147 #: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:487 en/lb_source.1:30
148 #: en/live-build.7:231
147 #: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:483 en/lb_source.1:30
148 #: en/live-build.7:229
149149 msgid ""
150150 "Bugs can be reported by submitting a bugreport for the live-build package in "
151151 "the Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
159159
160160 #. type: SH
161161 #: en/lb.1:33 en/lb_binary.1:31 en/lb_bootstrap.1:31 en/lb_build.1:33
162 #: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:488 en/lb_source.1:31
163 #: en/live-build.7:232
162 #: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:484 en/lb_source.1:31
163 #: en/live-build.7:230
164164 #, no-wrap
165165 msgid "AUTHOR"
166166 msgstr "作者"
167167
168168 #. type: Plain text
169169 #: en/lb.1:34 en/lb_binary.1:32 en/lb_bootstrap.1:32 en/lb_build.1:34
170 #: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:489 en/lb_source.1:32
171 #: en/live-build.7:233
170 #: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:485 en/lb_source.1:32
171 #: en/live-build.7:231
172172 msgid ""
173173 "live-build was written by Daniel Baumann E<lt>I<[email protected]>E<gt>."
174174 msgstr ""
44 msgid ""
55 msgstr ""
66 "Project-Id-Version: live-build\n"
7 "POT-Creation-Date: 2014-12-10 08:24+0100\n"
7 "POT-Creation-Date: 2015-08-23 10:57+0200\n"
88 "PO-Revision-Date: 2014-08-28 02:52+0900\n"
99 "Last-Translator: victory <[email protected]>\n"
1010 "Language-Team: none\n"
2525 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
2626 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
2727 #: en/live-build.7:1
28 #, no-wrap
29 msgid "2014-12-10"
30 msgstr ""
28 #, fuzzy, no-wrap
29 msgid "2015-08-23"
30 msgstr "2015-02-07"
3131
3232 #. type: TH
3333 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
3434 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
3535 #: en/live-build.7:1
36 #, no-wrap
37 msgid "4.0.4-1"
38 msgstr ""
36 #, fuzzy, no-wrap
37 msgid "5.0~a11-1"
38 msgstr "5.0~a3-1"
3939
4040 #. type: TH
4141 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
6363
6464 #. type: SH
6565 #: en/lb.1:11 en/lb_binary.1:9 en/lb_bootstrap.1:9 en/lb_build.1:9
66 #: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:225 en/lb_source.1:9
66 #: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:223 en/lb_source.1:9
6767 #: en/live-build.7:11
6868 #, no-wrap
6969 msgid "DESCRIPTION"
7171
7272 #. type: SH
7373 #: en/lb.1:16 en/lb_binary.1:14 en/lb_bootstrap.1:14 en/lb_build.1:14
74 #: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:234 en/lb_source.1:14
74 #: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:232 en/lb_source.1:14
7575 #: en/live-build.7:20
7676 #, no-wrap
7777 msgid "OPTIONS"
7979
8080 #. type: SH
8181 #: en/lb.1:19 en/lb_binary.1:17 en/lb_bootstrap.1:17 en/lb_build.1:17
82 #: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:466 en/lb_source.1:17
83 #: en/live-build.7:215
82 #: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:462 en/lb_source.1:17
83 #: en/live-build.7:213
8484 #, no-wrap
8585 msgid "FILES"
8686 msgstr "ファイル"
8787
8888 #. type: SH
8989 #: en/lb.1:22 en/lb_binary.1:20 en/lb_bootstrap.1:20 en/lb_build.1:22
90 #: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:473 en/lb_source.1:20
91 #: en/live-build.7:219
90 #: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:469 en/lb_source.1:20
91 #: en/live-build.7:217
9292 #, no-wrap
9393 msgid "SEE ALSO"
9494 msgstr "関連項目"
9595
9696 #. type: Plain text
9797 #: en/lb.1:24 en/lb_binary.1:22 en/lb_bootstrap.1:22 en/lb_build.1:24
98 #: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:475 en/lb_source.1:22
98 #: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:471 en/lb_source.1:22
9999 msgid "I<live-build>(7)"
100100 msgstr "I<live-build>(7)"
101101
102102 #. type: Plain text
103103 #: en/lb.1:26 en/lb_binary.1:24 en/lb_bootstrap.1:24 en/lb_build.1:26
104 #: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:481 en/lb_source.1:24
105 #: en/live-build.7:225
104 #: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:477 en/lb_source.1:24
105 #: en/live-build.7:223
106106 msgid "This program is a part of live-build."
107107 msgstr "このプログラムは live-build の一部です。"
108108
109109 #. type: SH
110110 #: en/lb.1:27 en/lb_binary.1:25 en/lb_bootstrap.1:25 en/lb_build.1:27
111 #: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:482 en/lb_source.1:25
112 #: en/live-build.7:226
111 #: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:478 en/lb_source.1:25
112 #: en/live-build.7:224
113113 #, no-wrap
114114 msgid "HOMEPAGE"
115115 msgstr "ホームページ"
116116
117117 #. type: Plain text
118118 #: en/lb.1:29 en/lb_binary.1:27 en/lb_bootstrap.1:27 en/lb_build.1:29
119 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:484 en/lb_source.1:27
120 #: en/live-build.7:228
119 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:480 en/lb_source.1:27
120 #: en/live-build.7:226
121121 msgid ""
122122 "More information about live-build and the Live Systems project can be found "
123123 "on the homepage at E<lt>I<http://live-systems.org/>E<gt> and in the manual "
129129
130130 #. type: SH
131131 #: en/lb.1:30 en/lb_binary.1:28 en/lb_bootstrap.1:28 en/lb_build.1:30
132 #: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:485 en/lb_source.1:28
133 #: en/live-build.7:229
132 #: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:481 en/lb_source.1:28
133 #: en/live-build.7:227
134134 #, no-wrap
135135 msgid "BUGS"
136136 msgstr "バグ"
137137
138138 #. type: Plain text
139139 #: en/lb.1:32 en/lb_binary.1:30 en/lb_bootstrap.1:30 en/lb_build.1:32
140 #: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:487 en/lb_source.1:30
141 #: en/live-build.7:231
140 #: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:483 en/lb_source.1:30
141 #: en/live-build.7:229
142142 msgid ""
143143 "Bugs can be reported by submitting a bugreport for the live-build package in "
144144 "the Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
152152
153153 #. type: SH
154154 #: en/lb.1:33 en/lb_binary.1:31 en/lb_bootstrap.1:31 en/lb_build.1:33
155 #: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:488 en/lb_source.1:31
156 #: en/live-build.7:232
155 #: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:484 en/lb_source.1:31
156 #: en/live-build.7:230
157157 #, no-wrap
158158 msgid "AUTHOR"
159159 msgstr "作者"
160160
161161 #. type: Plain text
162162 #: en/lb.1:34 en/lb_binary.1:32 en/lb_bootstrap.1:32 en/lb_build.1:34
163 #: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:489 en/lb_source.1:32
164 #: en/live-build.7:233
163 #: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:485 en/lb_source.1:32
164 #: en/live-build.7:231
165165 msgid ""
166166 "live-build was written by Daniel Baumann E<lt>I<[email protected]>E<gt>."
167167 msgstr ""
00 # Japanese translations for live-build package
1 # Copyright (C) 2014 victory <[email protected]>
1 # Copyright (C) 2014-2015 victory <[email protected]>
22 # This file is distributed under the same license as the live-build package.
33 #
44 msgid ""
55 msgstr ""
66 "Project-Id-Version: live-build\n"
7 "POT-Creation-Date: 2014-12-10 08:24+0100\n"
8 "PO-Revision-Date: 2014-09-07 13:13+0900\n"
7 "POT-Creation-Date: 2015-08-23 10:57+0200\n"
8 "PO-Revision-Date: 2015-02-07 14:57+0900\n"
99 "Last-Translator: victory <[email protected]>\n"
1010 "Language-Team: none\n"
1111 "Language: ja\n"
2525 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
2626 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
2727 #: en/live-build.7:1
28 #, no-wrap
29 msgid "2014-12-10"
30 msgstr ""
28 #, fuzzy, no-wrap
29 msgid "2015-08-23"
30 msgstr "2015-02-07"
3131
3232 #. type: TH
3333 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
3434 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
3535 #: en/live-build.7:1
36 #, no-wrap
37 msgid "4.0.4-1"
38 msgstr ""
36 #, fuzzy, no-wrap
37 msgid "5.0~a11-1"
38 msgstr "5.0~a3-1"
3939
4040 #. type: TH
4141 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
6363
6464 #. type: SH
6565 #: en/lb.1:11 en/lb_binary.1:9 en/lb_bootstrap.1:9 en/lb_build.1:9
66 #: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:225 en/lb_source.1:9
66 #: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:223 en/lb_source.1:9
6767 #: en/live-build.7:11
6868 #, no-wrap
6969 msgid "DESCRIPTION"
7171
7272 #. type: SH
7373 #: en/lb.1:16 en/lb_binary.1:14 en/lb_bootstrap.1:14 en/lb_build.1:14
74 #: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:234 en/lb_source.1:14
74 #: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:232 en/lb_source.1:14
7575 #: en/live-build.7:20
7676 #, no-wrap
7777 msgid "OPTIONS"
7979
8080 #. type: SH
8181 #: en/lb.1:19 en/lb_binary.1:17 en/lb_bootstrap.1:17 en/lb_build.1:17
82 #: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:466 en/lb_source.1:17
83 #: en/live-build.7:215
82 #: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:462 en/lb_source.1:17
83 #: en/live-build.7:213
8484 #, no-wrap
8585 msgid "FILES"
8686 msgstr "ファイル"
8787
8888 #. type: SH
8989 #: en/lb.1:22 en/lb_binary.1:20 en/lb_bootstrap.1:20 en/lb_build.1:22
90 #: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:473 en/lb_source.1:20
91 #: en/live-build.7:219
90 #: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:469 en/lb_source.1:20
91 #: en/live-build.7:217
9292 #, no-wrap
9393 msgid "SEE ALSO"
9494 msgstr "関連項目"
9595
9696 #. type: Plain text
9797 #: en/lb.1:24 en/lb_binary.1:22 en/lb_bootstrap.1:22 en/lb_build.1:24
98 #: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:475 en/lb_source.1:22
98 #: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:471 en/lb_source.1:22
9999 msgid "I<live-build>(7)"
100100 msgstr "I<live-build>(7)"
101101
102102 #. type: Plain text
103103 #: en/lb.1:26 en/lb_binary.1:24 en/lb_bootstrap.1:24 en/lb_build.1:26
104 #: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:481 en/lb_source.1:24
105 #: en/live-build.7:225
104 #: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:477 en/lb_source.1:24
105 #: en/live-build.7:223
106106 msgid "This program is a part of live-build."
107107 msgstr "このプログラムは live-build の一部です。"
108108
109109 #. type: SH
110110 #: en/lb.1:27 en/lb_binary.1:25 en/lb_bootstrap.1:25 en/lb_build.1:27
111 #: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:482 en/lb_source.1:25
112 #: en/live-build.7:226
111 #: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:478 en/lb_source.1:25
112 #: en/live-build.7:224
113113 #, no-wrap
114114 msgid "HOMEPAGE"
115115 msgstr "ホームページ"
116116
117117 #. type: Plain text
118118 #: en/lb.1:29 en/lb_binary.1:27 en/lb_bootstrap.1:27 en/lb_build.1:29
119 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:484 en/lb_source.1:27
120 #: en/live-build.7:228
119 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:480 en/lb_source.1:27
120 #: en/live-build.7:226
121121 msgid ""
122122 "More information about live-build and the Live Systems project can be found "
123123 "on the homepage at E<lt>I<http://live-systems.org/>E<gt> and in the manual "
129129
130130 #. type: SH
131131 #: en/lb.1:30 en/lb_binary.1:28 en/lb_bootstrap.1:28 en/lb_build.1:30
132 #: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:485 en/lb_source.1:28
133 #: en/live-build.7:229
132 #: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:481 en/lb_source.1:28
133 #: en/live-build.7:227
134134 #, no-wrap
135135 msgid "BUGS"
136136 msgstr "バグ"
137137
138138 #. type: Plain text
139139 #: en/lb.1:32 en/lb_binary.1:30 en/lb_bootstrap.1:30 en/lb_build.1:32
140 #: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:487 en/lb_source.1:30
141 #: en/live-build.7:231
140 #: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:483 en/lb_source.1:30
141 #: en/live-build.7:229
142142 msgid ""
143143 "Bugs can be reported by submitting a bugreport for the live-build package in "
144144 "the Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
152152
153153 #. type: SH
154154 #: en/lb.1:33 en/lb_binary.1:31 en/lb_bootstrap.1:31 en/lb_build.1:33
155 #: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:488 en/lb_source.1:31
156 #: en/live-build.7:232
155 #: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:484 en/lb_source.1:31
156 #: en/live-build.7:230
157157 #, no-wrap
158158 msgid "AUTHOR"
159159 msgstr "作者"
160160
161161 #. type: Plain text
162162 #: en/lb.1:34 en/lb_binary.1:32 en/lb_bootstrap.1:32 en/lb_build.1:34
163 #: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:489 en/lb_source.1:32
164 #: en/live-build.7:233
163 #: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:485 en/lb_source.1:32
164 #: en/live-build.7:231
165165 msgid ""
166166 "live-build was written by Daniel Baumann E<lt>I<[email protected]>E<gt>."
167167 msgstr ""
261261
262262 #. type: Plain text
263263 #: en/lb_config.1:43
264 #, fuzzy
265 #| msgid " [B<--bootloader> grub|syslinux]"
266264 msgid " [B<--bootloader> grub|grub2|syslinux]"
267 msgstr " [B<--bootloader> grub|syslinux]"
265 msgstr " [B<--bootloader> grub|grub2|syslinux]"
268266
269267 #. type: Plain text
270268 #: en/lb_config.1:45
271 msgid " [B<--bootstrap> cdebootstrap|cdebootstrap-static|debootstrap]"
272 msgstr " [B<--bootstrap> cdebootstrap|cdebootstrap-static|debootstrap]"
273
274 #. type: Plain text
275 #: en/lb_config.1:47
276269 msgid " [B<--cache> true|false]"
277270 msgstr " [B<--cache> true|false]"
278271
279272 #. type: Plain text
280 #: en/lb_config.1:49
273 #: en/lb_config.1:47
281274 msgid " [B<--cache-indices> true|false]"
282275 msgstr " [B<--cache-indices> true|false]"
283276
284277 #. type: Plain text
285 #: en/lb_config.1:51
278 #: en/lb_config.1:49
286279 msgid " [B<--cache-packages> true|false]"
287280 msgstr " [B<--cache-packages> true|false]"
288281
289282 #. type: Plain text
290 #: en/lb_config.1:53
283 #: en/lb_config.1:51
291284 msgid " [B<--cache-stages> I<STAGE>|I<\"STAGES\">]"
292285 msgstr " [B<--cache-stages> I<段階>|I<\"段階\">]"
293286
294287 #. type: Plain text
295 #: en/lb_config.1:55
288 #: en/lb_config.1:53
296289 msgid " [B<--checksums> md5|sha1|sha256|none]"
297290 msgstr " [B<--checksums> md5|sha1|sha256|none]"
298291
299292 #. type: Plain text
300 #: en/lb_config.1:57
293 #: en/lb_config.1:55
301294 msgid " [B<--compression> bzip2|gzip|lzip|none]"
302295 msgstr " [B<--compression> bzip2|gzip|lzip|none]"
303296
304297 #. type: Plain text
305 #: en/lb_config.1:59
298 #: en/lb_config.1:57
306299 msgid " [B<--config> I<GIT_URL::GIT_ID>]"
307300 msgstr " [B<--config> I<GIT_URL::GIT_ID>]"
308301
309302 #. type: Plain text
310 #: en/lb_config.1:61
303 #: en/lb_config.1:59
311304 msgid " [B<--build-with-chroot> true|false]"
312305 msgstr " [B<--build-with-chroot> true|false]"
313306
314307 #. type: Plain text
315 #: en/lb_config.1:63
308 #: en/lb_config.1:61
316309 msgid " [B<--chroot-filesystem> ext2|ext3|ext4|squashfs|jffs2|none]"
317310 msgstr " [B<--chroot-filesystem> ext2|ext3|ext4|squashfs|jffs2|none]"
318311
319312 #. type: Plain text
320 #: en/lb_config.1:65
313 #: en/lb_config.1:63
321314 msgid " [B<--clean>]"
322315 msgstr " [B<--clean>]"
323316
324317 #. type: Plain text
325 #: en/lb_config.1:67
318 #: en/lb_config.1:65
326319 msgid " [-c|B<--conffile> I<FILE>]"
327320 msgstr " [-c|B<--conffile> I<ファイル>]"
328321
329322 #. type: Plain text
330 #: en/lb_config.1:69
323 #: en/lb_config.1:67
331324 msgid " [B<--debconf-frontend> dialog|editor|noninteractive|readline]"
332325 msgstr " [B<--debconf-frontend> dialog|editor|noninteractive|readline]"
333326
334327 #. type: Plain text
335 #: en/lb_config.1:71
328 #: en/lb_config.1:69
336329 msgid " [B<--debconf-priority> low|medium|high|critical]"
337330 msgstr " [B<--debconf-priority> low|medium|high|critical]"
338331
339332 #. type: Plain text
333 #: en/lb_config.1:71
334 msgid ""
335 " [B<--debian-installer> true|cdrom|netinst|netboot|businesscard|live|false]"
336 msgstr ""
337 " [B<--debian-installer> true|cdrom|netinst|netboot|businesscard|live|false]"
338
339 #. type: Plain text
340340 #: en/lb_config.1:73
341 msgid ""
342 " [B<--debian-installer> true|cdrom|netinst|netboot|businesscard|live|false]"
343 msgstr ""
344 " [B<--debian-installer> true|cdrom|netinst|netboot|businesscard|live|false]"
345
346 #. type: Plain text
347 #: en/lb_config.1:75
348341 msgid " [B<--debian-installer-distribution> daily|I<CODENAME>]"
349342 msgstr " [B<--debian-installer-distribution> daily|I<コード名>]"
350343
351344 #. type: Plain text
352 #: en/lb_config.1:77
345 #: en/lb_config.1:75
353346 msgid " [B<--debian-installer-preseedfile> I<FILE>|I<URL>]"
354347 msgstr " [B<--debian-installer-preseedfile> I<ファイル>|I<URL>]"
355348
356349 #. type: Plain text
357 #: en/lb_config.1:79
350 #: en/lb_config.1:77
358351 msgid " [B<--debian-installer-gui> true|false]"
359352 msgstr " [B<--debian-installer-gui> true|false]"
360353
361354 #. type: Plain text
362 #: en/lb_config.1:81
355 #: en/lb_config.1:79
363356 msgid " [B<--debug>]"
364357 msgstr " [B<--debug>]"
365358
366359 #. type: Plain text
367 #: en/lb_config.1:83
360 #: en/lb_config.1:81
368361 msgid " [-d|B<--distribution> I<CODENAME>]"
369362 msgstr " [-d|B<--distribution> I<コード名>]"
370363
371364 #. type: Plain text
372 #: en/lb_config.1:85
365 #: en/lb_config.1:83
373366 msgid " [B<--parent-distribution> I<CODENAME>]"
374367 msgstr " [B<--parent-distribution> I<コード名>]"
375368
376369 #. type: Plain text
377 #: en/lb_config.1:87
370 #: en/lb_config.1:85
378371 msgid " [B<--parent-debian-installer-distribution> I<CODENAME>]"
379372 msgstr " [B<--parent-debian-installer-distribution> I<コード名>]"
380373
381374 #. type: Plain text
382 #: en/lb_config.1:89
375 #: en/lb_config.1:87
383376 msgid " [B<--dump>]"
384377 msgstr " [B<--dump>]"
385378
386379 #. type: Plain text
387 #: en/lb_config.1:91
380 #: en/lb_config.1:89
388381 msgid " [B<--fdisk> fdisk|fdisk.dist]"
389382 msgstr " [B<--fdisk> fdisk|fdisk.dist]"
390383
391384 #. type: Plain text
392 #: en/lb_config.1:93
385 #: en/lb_config.1:91
393386 msgid " [B<--firmware-binary true|false>]"
394387 msgstr " [B<--firmware-binary true|false>]"
395388
396389 #. type: Plain text
397 #: en/lb_config.1:95
390 #: en/lb_config.1:93
398391 msgid " [B<--firmware-chroot true|false>]"
399392 msgstr " [B<--firmware-chroot true|false>]"
400393
401394 #. type: Plain text
402 #: en/lb_config.1:97
395 #: en/lb_config.1:95
403396 msgid " [B<--force>]"
404397 msgstr " [B<--force>]"
405398
406399 #. type: Plain text
407 #: en/lb_config.1:99
400 #: en/lb_config.1:97
408401 msgid " [B<--grub-splash> I<FILE>]"
409402 msgstr " [B<--grub-splash> I<ファイル>]"
410403
411404 #. type: Plain text
412 #: en/lb_config.1:101
405 #: en/lb_config.1:99
413406 msgid " [B<--gzip-options> I<OPTION>|\"I<OPTIONS>\"]"
414407 msgstr " [B<--gzip-options> I<オプション>|\"I<オプション>\"]"
415408
416409 #. type: Plain text
417 #: en/lb_config.1:103
410 #: en/lb_config.1:101
418411 msgid " [B<--hooks> I<FILE>]"
419412 msgstr " [B<--hooks> I<ファイル>]"
420413
421414 #. type: Plain text
422 #: en/lb_config.1:105
415 #: en/lb_config.1:103
423416 msgid " [B<--ignore-system-defaults>]"
424417 msgstr " [B<--ignore-system-defaults>]"
425418
426419 #. type: Plain text
427 #: en/lb_config.1:107
420 #: en/lb_config.1:105
428421 msgid " [B<--initramfs> auto|none|live-boot|casper]"
429422 msgstr " [B<--initramfs> auto|none|live-boot|casper]"
430423
431424 #. type: Plain text
432 #: en/lb_config.1:109
425 #: en/lb_config.1:107
433426 msgid " [B<--initramfs-compression> bzip2|gzip|lzma]"
434427 msgstr " [B<--initramfs-compression> bzip2|gzip|lzma]"
435428
436429 #. type: Plain text
437 #: en/lb_config.1:111
430 #: en/lb_config.1:109
438431 msgid " [B<--initsystem> sysvinit|runit|systemd|upstart|none]"
439432 msgstr " [B<--initsystem> sysvinit|runit|systemd|upstart|none]"
440433
441434 #. type: Plain text
442 #: en/lb_config.1:113
435 #: en/lb_config.1:111
443436 msgid " [B<--interactive> shell]"
444437 msgstr " [B<--interactive> shell]"
445438
446439 #. type: Plain text
447 #: en/lb_config.1:115
440 #: en/lb_config.1:113
448441 msgid " [B<--isohybrid-options> I<OPTION>|\"I<OPTIONS>\"]"
449442 msgstr " [B<--isohybrid-options> I<オプション>|\"I<オプション>\"]"
450443
451444 #. type: Plain text
452 #: en/lb_config.1:117
445 #: en/lb_config.1:115
453446 msgid " [B<--iso-application> I<NAME>]"
454447 msgstr " [B<--iso-application> I<名前>]"
455448
456449 #. type: Plain text
457 #: en/lb_config.1:119
450 #: en/lb_config.1:117
458451 msgid " [B<--iso-preparer> I<NAME>]"
459452 msgstr " [B<--iso-preparer> I<NAME>]"
460453
461454 #. type: Plain text
462 #: en/lb_config.1:121
455 #: en/lb_config.1:119
463456 msgid " [B<--iso-publisher> I<NAME>]"
464457 msgstr " [B<--iso-publisher> I<名前>]"
465458
466459 #. type: Plain text
467 #: en/lb_config.1:123
460 #: en/lb_config.1:121
468461 msgid " [B<--iso-volume> I<NAME>]"
469462 msgstr " [B<--iso-volume> I<名前>]"
470463
471464 #. type: Plain text
472 #: en/lb_config.1:125
465 #: en/lb_config.1:123
473466 msgid " [B<--jffs2-eraseblock> I<SIZE>]"
474467 msgstr " [B<--jffs2-eraseblock> I<サイズ>]"
475468
476469 #. type: Plain text
477 #: en/lb_config.1:127
470 #: en/lb_config.1:125
478471 msgid " [B<--keyring-packages> I<PACKAGE|\"PACKAGES\">]"
479472 msgstr " [B<--keyring-packages> I<パッケージ|\"パッケージ\">]"
480473
481474 #. type: Plain text
482 #: en/lb_config.1:129
475 #: en/lb_config.1:127
483476 msgid " [-k|B<--linux-flavours> I<FLAVOUR>|I<\"FLAVOURS\">]"
484477 msgstr " [-k|B<--linux-flavours> I<フレーバー>|I<\"フレーバー\">]"
485478
486479 #. type: Plain text
487 #: en/lb_config.1:131
480 #: en/lb_config.1:129
488481 msgid " [B<--linux-packages> I<\"PACKAGES\">]"
489482 msgstr " [B<--linux-packages> I<\"パッケージ\">]"
490483
491484 #. type: Plain text
492 #: en/lb_config.1:133
485 #: en/lb_config.1:131
493486 msgid " [B<--losetup> losetup|losetup.orig]"
494487 msgstr " [B<--losetup> losetup|losetup.orig]"
495488
496489 #. type: Plain text
497 #: en/lb_config.1:135
490 #: en/lb_config.1:133
498491 msgid " [B<--memtest> memtest86+|memtest86|none]"
499492 msgstr " [B<--memtest> memtest86+|memtest86|none]"
500493
501494 #. type: Plain text
502 #: en/lb_config.1:137
495 #: en/lb_config.1:135
503496 msgid " [-m|B<--parent-mirror-bootstrap> I<URL>]"
504497 msgstr " [-m|B<--parent-mirror-bootstrap> I<URL>]"
505498
506499 #. type: Plain text
507 #: en/lb_config.1:139
500 #: en/lb_config.1:137
508501 msgid " [B<--parent-mirror-chroot> I<URL>]"
509502 msgstr " [B<--parent-mirror-chroot> I<URL>]"
510503
511504 #. type: Plain text
512 #: en/lb_config.1:141
505 #: en/lb_config.1:139
513506 msgid " [B<--parent-mirror-chroot-security> I<URL>]"
514507 msgstr " [B<--parent-mirror-chroot-security> I<URL>]"
515508
516509 #. type: Plain text
517 #: en/lb_config.1:143
510 #: en/lb_config.1:141
518511 msgid " [B<--parent-mirror-chroot-updates> I<URL>]"
519512 msgstr " [B<--parent-mirror-chroot-updates> I<URL>]"
520513
521514 #. type: Plain text
522 #: en/lb_config.1:145
515 #: en/lb_config.1:143
523516 msgid " [B<--parent-mirror-chroot-backports> I<URL>]"
524517 msgstr " [B<--parent-mirror-chroot-backports> I<URL>]"
525518
526519 #. type: Plain text
527 #: en/lb_config.1:147
520 #: en/lb_config.1:145
528521 msgid " [B<--parent-mirror-binary> I<URL>]"
529522 msgstr " [B<--parent-mirror-binary> I<URL>]"
530523
531524 #. type: Plain text
532 #: en/lb_config.1:149
525 #: en/lb_config.1:147
533526 msgid " [B<--parent-mirror-binary-security> I<URL>]"
534527 msgstr " [B<--parent-mirror-binary-security> I<URL>]"
535528
536529 #. type: Plain text
537 #: en/lb_config.1:151
530 #: en/lb_config.1:149
538531 msgid " [B<--parent-mirror-binary-updates> I<URL>]"
539532 msgstr " [B<--parent-mirror-binary-updates> I<URL>]"
540533
541534 #. type: Plain text
542 #: en/lb_config.1:153
535 #: en/lb_config.1:151
543536 msgid " [B<--parent-mirror-binary-backports> I<URL>]"
544537 msgstr " [B<--parent-mirror-binary-backports> I<URL>]"
545538
546539 #. type: Plain text
547 #: en/lb_config.1:155
540 #: en/lb_config.1:153
548541 msgid " [B<--parent-mirror-debian-installer> I<URL>]"
549542 msgstr " [B<--parent-mirror-debian-installer> I<URL>]"
550543
551544 #. type: Plain text
552 #: en/lb_config.1:157
545 #: en/lb_config.1:155
553546 msgid " [B<--mirror-bootstrap> I<URL>]"
554547 msgstr " [B<--mirror-bootstrap> I<URL>]"
555548
556549 #. type: Plain text
557 #: en/lb_config.1:159
550 #: en/lb_config.1:157
558551 msgid " [B<--mirror-chroot> I<URL>]"
559552 msgstr " [B<--mirror-chroot> I<URL>]"
560553
561554 #. type: Plain text
562 #: en/lb_config.1:161
555 #: en/lb_config.1:159
563556 msgid " [B<--mirror-chroot-security> I<URL>]"
564557 msgstr " [B<--mirror-chroot-security> I<URL>]"
565558
566559 #. type: Plain text
567 #: en/lb_config.1:163
560 #: en/lb_config.1:161
568561 msgid " [B<--mirror-chroot-updates> I<URL>]"
569562 msgstr " [B<--mirror-chroot-updates> I<URL>]"
570563
571564 #. type: Plain text
572 #: en/lb_config.1:165
565 #: en/lb_config.1:163
573566 msgid " [B<--mirror-chroot-backports> I<URL>]"
574567 msgstr " [B<--mirror-chroot-backports> I<URL>]"
575568
576569 #. type: Plain text
577 #: en/lb_config.1:167
570 #: en/lb_config.1:165
578571 msgid " [B<--mirror-binary> I<URL>]"
579572 msgstr " [B<--mirror-binary> I<URL>]"
580573
581574 #. type: Plain text
582 #: en/lb_config.1:169
575 #: en/lb_config.1:167
583576 msgid " [B<--mirror-binary-security> I<URL>]"
584577 msgstr " [B<--mirror-binary-security> I<URL>]"
585578
586579 #. type: Plain text
587 #: en/lb_config.1:171
580 #: en/lb_config.1:169
588581 msgid " [B<--mirror-binary-updates> I<URL>]"
589582 msgstr " [B<--mirror-binary-updates> I<URL>]"
590583
591584 #. type: Plain text
592 #: en/lb_config.1:173
585 #: en/lb_config.1:171
593586 msgid " [B<--mirror-binary-backports> I<URL>]"
594587 msgstr " [B<--mirror-binary-backports> I<URL>]"
595588
596589 #. type: Plain text
597 #: en/lb_config.1:175
590 #: en/lb_config.1:173
598591 msgid " [B<--mirror-debian-installer> I<URL>]"
599592 msgstr " [B<--mirror-debian-installer> I<URL>]"
600593
601594 #. type: Plain text
602 #: en/lb_config.1:177
595 #: en/lb_config.1:175
603596 msgid " [B<--mode> debian|progress-linux|ubuntu]"
604597 msgstr " [B<--mode> debian|progress-linux|ubuntu]"
605598
606599 #. type: Plain text
607 #: en/lb_config.1:179
600 #: en/lb_config.1:177
608601 msgid " [B<--system> live|normal]"
609602 msgstr " [B<--system> live|normal]"
610603
611604 #. type: Plain text
612 #: en/lb_config.1:181
605 #: en/lb_config.1:179
613606 msgid " [B<--net-root-filesystem> nfs|cfs]"
614607 msgstr " [B<--net-root-filesystem> nfs|cfs]"
615608
616609 #. type: Plain text
617 #: en/lb_config.1:183
610 #: en/lb_config.1:181
618611 msgid " [B<--net-root-mountoptions> I<OPTIONS>]"
619612 msgstr " [B<--net-root-mountoptions> I<オプション>]"
620613
621614 #. type: Plain text
622 #: en/lb_config.1:185
615 #: en/lb_config.1:183
623616 msgid " [B<--net-root-path> I<PATH>]"
624617 msgstr " [B<--net-root-path> I<パス>]"
625618
626619 #. type: Plain text
627 #: en/lb_config.1:187
620 #: en/lb_config.1:185
628621 msgid " [B<--net-root-server> I<IP>|I<HOSTNAME>]"
629622 msgstr " [B<--net-root-server> I<IPアドレス>|I<ホスト名>]"
630623
631624 #. type: Plain text
632 #: en/lb_config.1:189
625 #: en/lb_config.1:187
633626 msgid " [B<--net-cow-filesystem> nfs|cfs]"
634627 msgstr " [B<--net-cow-filesystem> nfs|cfs]"
635628
636629 #. type: Plain text
637 #: en/lb_config.1:191
630 #: en/lb_config.1:189
638631 msgid " [B<--net-cow-mountoptions> I<OPTIONS>]"
639632 msgstr " [B<--net-cow-mountoptions> I<オプション>]"
640633
641634 #. type: Plain text
642 #: en/lb_config.1:193
635 #: en/lb_config.1:191
643636 msgid " [B<--net-cow-path> I<PATH>]"
644637 msgstr " [B<--net-cow-path> I<パス>]"
645638
646639 #. type: Plain text
647 #: en/lb_config.1:195
640 #: en/lb_config.1:193
648641 msgid " [B<--net-cow-server> I<IP>|I<HOSTNAME>]"
649642 msgstr " [B<--net-cow-server> I<IPアドレス>|I<ホスト名>]"
650643
651644 #. type: Plain text
652 #: en/lb_config.1:197
645 #: en/lb_config.1:195
653646 msgid " [B<--net-tarball> true|false]"
654647 msgstr " [B<--net-tarball> true|false]"
655648
656649 #. type: Plain text
657 #: en/lb_config.1:199
650 #: en/lb_config.1:197
658651 msgid " [B<--quiet>]"
659652 msgstr " [B<--quiet>]"
660653
661654 #. type: Plain text
662 #: en/lb_config.1:201
655 #: en/lb_config.1:199
663656 msgid " [B<--archive-areas> I<ARCHIVE_AREA>|I<\"ARCHIVE_AREAS\">]"
664657 msgstr " [B<--archive-areas> I<アーカイブ領域>|I<\"アーカイブ領域\">]"
665658
666659 #. type: Plain text
667 #: en/lb_config.1:203
660 #: en/lb_config.1:201
668661 msgid ""
669662 " [B<--parent-archive-areas> I<PARENT_ARCHIVE_AREA>|I<\"PARENT_ARCHIVE_AREAS"
670663 "\">]"
672665 " [B<--parent-archive-areas> I<親アーカイブ領域>|I<\"親アーカイブ領域\">]"
673666
674667 #. type: Plain text
675 #: en/lb_config.1:205
668 #: en/lb_config.1:203
676669 msgid " [B<--security> true|false]"
677670 msgstr " [B<--security> true|false]"
678671
679672 #. type: Plain text
680 #: en/lb_config.1:207
673 #: en/lb_config.1:205
681674 msgid " [B<--source> true|false]"
682675 msgstr " [B<--source> true|false]"
683676
684677 #. type: Plain text
685 #: en/lb_config.1:209
678 #: en/lb_config.1:207
686679 msgid " [-s|B<--source-images> iso|netboot|tar|hdd]"
687680 msgstr " [-s|B<--source-images> iso|netboot|tar|hdd]"
688681
689682 #. type: Plain text
690 #: en/lb_config.1:211
683 #: en/lb_config.1:209
691684 msgid " [B<--tasksel> apt|aptitude|tasksel]"
692685 msgstr " [B<--tasksel> apt|aptitude|tasksel]"
693686
694687 #. type: Plain text
695 #: en/lb_config.1:213
688 #: en/lb_config.1:211
696689 msgid " [B<--templates> I<PATH>]"
697690 msgstr " [B<--templates> I<パス>]"
698691
699692 #. type: Plain text
700 #: en/lb_config.1:215
693 #: en/lb_config.1:213
701694 msgid " [B<--hdd-size >I<MB>]"
702695 msgstr " [B<--hdd-size >I<MB>]"
703696
704697 #. type: Plain text
705 #: en/lb_config.1:217
698 #: en/lb_config.1:215
706699 msgid " [B<--updates> true|false]"
707700 msgstr " [B<--updates> true|false]"
708701
709702 #. type: Plain text
710 #: en/lb_config.1:219
703 #: en/lb_config.1:217
711704 msgid " [B<--backports> true|false]"
712705 msgstr " [B<--backports> true|false]"
713706
714707 #. type: Plain text
715 #: en/lb_config.1:221
708 #: en/lb_config.1:219
716709 msgid " [B<--verbose>]"
717710 msgstr " [B<--verbose>]"
718711
719712 #. FIXME
720713 #. type: Plain text
721 #: en/lb_config.1:224
714 #: en/lb_config.1:222
722715 msgid " [B<--win32-loader true|false]>"
723716 msgstr " [B<--win32-loader true|false]>"
724717
725718 #. type: Plain text
726 #: en/lb_config.1:227
719 #: en/lb_config.1:225
727720 msgid ""
728721 "B<lb config> is a high-level command (porcelain) of I<live-build>(7), the "
729722 "live systems tool suite."
733726
734727 #. FIXME
735728 #. type: Plain text
736 #: en/lb_config.1:230
729 #: en/lb_config.1:228
737730 msgid ""
738731 "B<lb config> populates the configuration directory for live-build. By "
739732 "default, this directory is named 'config' and is created in the current "
745738
746739 #. FIXME
747740 #. type: Plain text
748 #: en/lb_config.1:233
741 #: en/lb_config.1:231
749742 msgid ""
750743 "Note: Currently B<lb config> tries to be smart and sets defaults for some "
751744 "options depending on the setting of other options (e.g. which linux packages "
773766 "を削除して再び B<lb config> を実行してください。"
774767
775768 #. type: Plain text
776 #: en/lb_config.1:236
769 #: en/lb_config.1:234
777770 msgid ""
778771 "In addition to its specific options B<lb config> understands all generic "
779772 "live-build options. See I<live-build>(7) for a complete list of all generic "
785778
786779 #. FIXME
787780 #. type: IP
788 #: en/lb_config.1:238
781 #: en/lb_config.1:236
789782 #, no-wrap
790783 msgid "B<--apt> apt|aptitude"
791784 msgstr "B<--apt> apt|aptitude"
792785
793786 #. type: Plain text
794 #: en/lb_config.1:240
787 #: en/lb_config.1:238
795788 msgid ""
796789 "defines if apt-get or aptitude is used to install packages when building the "
797790 "image. The default is apt."
800793 "ちらを利用するか決定します。デフォルトは apt です。"
801794
802795 #. type: IP
803 #: en/lb_config.1:240
796 #: en/lb_config.1:238
804797 #, no-wrap
805798 msgid "B<--apt-ftp-proxy> I<URL>"
806799 msgstr "B<--apt-ftp-proxy> I<URL>"
807800
808801 #. type: Plain text
809 #: en/lb_config.1:242
802 #: en/lb_config.1:240
810803 msgid ""
811804 "sets the ftp proxy to be used by apt. By default, this is empty. Note that "
812805 "this variable is only for the proxy that gets used by apt internally within "
817810 "注意してください"
818811
819812 #. type: IP
820 #: en/lb_config.1:242
813 #: en/lb_config.1:240
821814 #, no-wrap
822815 msgid "B<--apt-http-proxy> I<URL>"
823816 msgstr "B<--apt-http-proxy> I<URL>"
824817
825818 #. type: Plain text
826 #: en/lb_config.1:244
819 #: en/lb_config.1:242
827820 msgid ""
828821 "sets the http proxy to be used by apt. By default, this is empty. Note that "
829822 "this variable is only for the proxy that gets used by apt internally within "
834827 "に注意してください"
835828
836829 #. type: IP
837 #: en/lb_config.1:244
830 #: en/lb_config.1:242
838831 #, no-wrap
839832 msgid "B<--apt-indices> true|false|none"
840833 msgstr "B<--apt-indices> true|false|none"
841834
842835 #. type: Plain text
843 #: en/lb_config.1:246
836 #: en/lb_config.1:244
844837 msgid ""
845838 "defines if the resulting images should have apt indices or not and defaults "
846839 "to true. If set to none, no indices are included at all."
849842 "トは true です。none をセットすると索引ファイルは一切収録されません。"
850843
851844 #. type: IP
852 #: en/lb_config.1:246
845 #: en/lb_config.1:244
853846 #, no-wrap
854847 msgid "B<--apt-options> I<OPTION>|\"I<OPTIONS>\""
855848 msgstr "B<--apt-options> I<オプション>|\"I<オプション>\""
856849
857850 #. type: Plain text
858 #: en/lb_config.1:248
851 #: en/lb_config.1:246
859852 msgid ""
860853 "defines the default options that will be appended to every apt call that is "
861854 "made inside chroot during the building of the image. By default, this is set "
866859 "対話的ではないインストール処理ができるようになっています。"
867860
868861 #. type: IP
869 #: en/lb_config.1:248
862 #: en/lb_config.1:246
870863 #, no-wrap
871864 msgid "B<--aptitude-options> I<OPTION>|\"I<OPTIONS>\""
872865 msgstr "B<--aptitude-options> I<オプション>|\"I<オプション>\""
873866
874867 #. type: Plain text
875 #: en/lb_config.1:250
868 #: en/lb_config.1:248
876869 msgid ""
877870 "defines the default options that will be appended to every aptitude call "
878871 "that is made inside chroot during building of the image. By default, this is "
883876 "て、パッケージの対話的ではないインストール処理ができるようになっています。"
884877
885878 #. type: IP
886 #: en/lb_config.1:250
879 #: en/lb_config.1:248
887880 #, no-wrap
888881 msgid "B<--apt-pipeline> I<DEPTH>"
889882 msgstr "B<--apt-pipeline> I<深度>"
890883
891884 #. type: Plain text
892 #: en/lb_config.1:252
885 #: en/lb_config.1:250
893886 msgid ""
894887 "sets the depth of the apt/aptitude pipeline. In cases where the remote "
895888 "server is not RFC conforming or buggy (such as Squid 2.0.2) this option can "
908901 "ん。"
909902
910903 #. type: IP
911 #: en/lb_config.1:252
904 #: en/lb_config.1:250
912905 #, no-wrap
913906 msgid "B<--apt-recommends> true|false"
914907 msgstr "B<--apt-recommends> true|false"
915908
916909 #. type: Plain text
917 #: en/lb_config.1:254
910 #: en/lb_config.1:252
918911 msgid ""
919912 "defines if apt should install recommended packages automatically. By "
920913 "default, this is true."
923916 "は true です。"
924917
925918 #. type: IP
926 #: en/lb_config.1:254
919 #: en/lb_config.1:252
927920 #, no-wrap
928921 msgid "B<--apt-secure> true|false"
929922 msgstr "B<--apt-secure> true|false"
930923
931924 #. type: Plain text
932 #: en/lb_config.1:256
925 #: en/lb_config.1:254
933926 msgid ""
934927 "defines if apt should check repository signatures. This is true by default."
935928 msgstr ""
936929 "aptがリポジトリの署名を確認すべきか否かを決定します。デフォルトは true です。"
937930
938931 #. type: IP
939 #: en/lb_config.1:256
932 #: en/lb_config.1:254
940933 #, no-wrap
941934 msgid "B<--apt-source-archives> true|false"
942935 msgstr "B<--apt-source-archives> true|false"
943936
944937 #. type: Plain text
945 #: en/lb_config.1:258
938 #: en/lb_config.1:256
946939 msgid ""
947940 "defines if deb-src entries should be included in the resulting live image or "
948941 "not, defaults to true."
951944 "ルトは true です。"
952945
953946 #. type: IP
954 #: en/lb_config.1:258
947 #: en/lb_config.1:256
955948 #, no-wrap
956949 msgid "-a|B<--architectures> I<ARCHITECTURE>"
957950 msgstr "-a|B<--architectures> I<アーキテクチャ>"
958951
959952 #. type: Plain text
960 #: en/lb_config.1:260
953 #: en/lb_config.1:258
961954 msgid ""
962955 "defines the architecture of the to be build image. By default, this is set "
963956 "to the host architecture. Note that you cannot crossbuild for another "
974967 "ます。しかし i386 システムで powerpc 用イメージをビルドするのは不可能です。"
975968
976969 #. type: IP
977 #: en/lb_config.1:260
970 #: en/lb_config.1:258
978971 #, no-wrap
979972 msgid "-b|B<--binary-images> iso|iso-hybrid|netboot|tar|hdd"
980973 msgstr "-b|B<--binary-images> iso|iso-hybrid|netboot|tar|hdd"
981974
982975 #. type: Plain text
983 #: en/lb_config.1:262
976 #: en/lb_config.1:260
984977 msgid ""
985978 "defines the image type to build. By default, for images using syslinux this "
986979 "is set to iso-hybrid to build CD/DVD images that may also be used like hdd "
992985 "す。"
993986
994987 #. type: IP
995 #: en/lb_config.1:262
988 #: en/lb_config.1:260
996989 #, no-wrap
997990 msgid "B<--binary-filesystem> fat16|fat32|ext2|ext3|ext4"
998991 msgstr "B<--binary-filesystem> fat16|fat32|ext2|ext3|ext4"
999992
1000993 #. type: Plain text
1001 #: en/lb_config.1:264
994 #: en/lb_config.1:262
1002995 msgid ""
1003996 "defines the filesystem to be used in the image type. This only has an effect "
1004997 "if the selected binary image type does allow to choose a filesystem. For "
10191012 "的に fat32 に切り替えられることに注意してください。"
10201013
10211014 #. type: IP
1022 #: en/lb_config.1:264
1015 #: en/lb_config.1:262
10231016 #, no-wrap
10241017 msgid "B<--bootappend-install> I<PARAMETER>|\"I<PARAMETERS>\""
10251018 msgstr "B<--bootappend-install> I<パラメータ>|\"I<パラメータ>\""
10261019
10271020 #. type: Plain text
1028 #: en/lb_config.1:266
1021 #: en/lb_config.1:264
10291022 msgid "sets boot parameters specific to debian-installer, if included."
10301023 msgstr ""
10311024 "debian-installer を収録した場合、debian-installer 特有のブートパラメータを"
10321025 "セットします。"
10331026
10341027 #. type: IP
1035 #: en/lb_config.1:266
1028 #: en/lb_config.1:264
10361029 #, no-wrap
10371030 msgid "B<--bootappend-live> I<PARAMETER>|\"I<PARAMETERS>\""
10381031 msgstr "B<--bootappend-live> I<パラメータ>|\"I<パラメータ>\""
10391032
10401033 #. type: Plain text
1041 #: en/lb_config.1:268
1034 #: en/lb_config.1:266
10421035 msgid ""
10431036 "sets boot parameters specific to debian-live. A complete list of boot "
10441037 "parameters can be found in the I<live-boot>(7) and I<live-config>(7) manual "
10481041 "I<live-boot>(7) 及び I<live-config>(7) マニュアルページにあります。"
10491042
10501043 #. type: IP
1044 #: en/lb_config.1:266
1045 #, no-wrap
1046 msgid "B<--bootloader> grub|grub2|syslinux"
1047 msgstr "B<--bootloader> grub|grub2|syslinux"
1048
1049 #. type: Plain text
10511050 #: en/lb_config.1:268
1052 #, fuzzy, no-wrap
1053 #| msgid "B<--bootloader> grub|syslinux"
1054 msgid "B<--bootloader> grub|grub2|syslinux"
1055 msgstr "B<--bootloader> grub|syslinux"
1056
1057 #. type: Plain text
1058 #: en/lb_config.1:270
10591051 msgid ""
10601052 "defines which bootloader is being used in the generated image. This has only "
10611053 "an effect if the selected binary image type does allow to choose the "
10761068 "なっています。"
10771069
10781070 #. type: IP
1079 #: en/lb_config.1:270
1080 #, no-wrap
1081 msgid "B<--bootstrap> cdebootstrap|cdebootstrap-static|debootstrap"
1082 msgstr "B<--bootstrap> cdebootstrap|cdebootstrap-static|debootstrap"
1083
1084 #. type: Plain text
1085 #: en/lb_config.1:272
1086 msgid ""
1087 "defines which program is used to bootstrap the debian chroot, default is "
1088 "debootstrap."
1089 msgstr ""
1090 "debian chroot でのパッケージ収集に利用するプログラムを選択します。デフォルト"
1091 "では debootstrap となっています。"
1092
1093 #. type: IP
1094 #: en/lb_config.1:272
1071 #: en/lb_config.1:268
10951072 #, no-wrap
10961073 msgid "B<--cache> true|false"
10971074 msgstr "B<--cache> true|false"
10981075
10991076 #. type: Plain text
1100 #: en/lb_config.1:274
1077 #: en/lb_config.1:270
11011078 msgid ""
11021079 "defines globally if any cache should be used at all. Different caches can be "
11031080 "controlled through the their own options."
11061083 "キャッシュそれぞれのオプションで制御できます。"
11071084
11081085 #. type: IP
1109 #: en/lb_config.1:274
1086 #: en/lb_config.1:270
11101087 #, no-wrap
11111088 msgid "B<--cache-indices> true|false"
11121089 msgstr "B<--cache-indices> true|false"
11131090
11141091 #. type: Plain text
1115 #: en/lb_config.1:276
1092 #: en/lb_config.1:272
11161093 msgid ""
11171094 "defines if downloaded package indices and lists should be cached which is "
11181095 "false by default. Enabling it would allow to rebuild an image completely "
11231100 "ルドできるようになりますが、以後の更新は得られなくなります。"
11241101
11251102 #. type: IP
1126 #: en/lb_config.1:276
1103 #: en/lb_config.1:272
11271104 #, no-wrap
11281105 msgid "B<--cache-packages> true|false"
11291106 msgstr "B<--cache-packages> true|false"
11301107
11311108 #. type: Plain text
1132 #: en/lb_config.1:278
1109 #: en/lb_config.1:274
11331110 msgid ""
11341111 "defines if downloaded packages files should be cached which is true by "
11351112 "default. Disabling it does save space consumption in your build directory, "
11461123 "が速いことがあります。"
11471124
11481125 #. type: IP
1149 #: en/lb_config.1:278
1126 #: en/lb_config.1:274
11501127 #, no-wrap
11511128 msgid "B<--cache-stages> true|false|I<STAGE>|\"I<STAGES>\""
11521129 msgstr "B<--cache-stages> true|false|I<段階>|\"I<段階>\""
11531130
11541131 #. type: Plain text
1155 #: en/lb_config.1:280
1132 #: en/lb_config.1:276
11561133 msgid ""
11571134 "sets which stages should be cached. By default set to bootstrap. As an "
11581135 "exception to the normal stage names, also rootfs can be used here which does "
11671144 "のは避けたい場合にこれは有用です。"
11681145
11691146 #. type: IP
1170 #: en/lb_config.1:280
1147 #: en/lb_config.1:276
11711148 #, no-wrap
11721149 msgid "B<--checksums> md5|sha1|sha256|none"
11731150 msgstr "B<--checksums> md5|sha1|sha256|none"
11741151
11751152 #. type: Plain text
1176 #: en/lb_config.1:282
1153 #: en/lb_config.1:278
11771154 msgid ""
11781155 "defines if the binary image should contain a file called md5sums.txt, "
11791156 "sha1sums.txt and/or sha256sums.txt. These lists all files on the image "
11921169 "ないことによりいくらか時間を節約できる可能性があります。"
11931170
11941171 #. type: IP
1195 #: en/lb_config.1:282
1172 #: en/lb_config.1:278
11961173 #, no-wrap
11971174 msgid "B<--compression> bzip2|gzip|lzip|none"
11981175 msgstr "B<--compression> bzip2|gzip|lzip|none"
11991176
12001177 #. type: Plain text
1201 #: en/lb_config.1:284
1178 #: en/lb_config.1:280
12021179 msgid ""
12031180 "defines the compression program to be used to compress tarballs. Defaults to "
12041181 "gzip."
12071184 "です。"
12081185
12091186 #. type: IP
1210 #: en/lb_config.1:284
1187 #: en/lb_config.1:280
12111188 #, no-wrap
12121189 msgid "B<--config> I<GIT_URL>::I<GIT_ID>"
12131190 msgstr "B<--config> I<GIT_URL>::I<GIT_ID>"
12141191
12151192 #. type: Plain text
1216 #: en/lb_config.1:286
1193 #: en/lb_config.1:282
12171194 msgid ""
12181195 "allows to bootstrap a config tree from a git repositories, optionally "
12191196 "appended by a Git Id (branch, commit, tag, etc.)."
12221199 "やコミット、タグ等) を指定できます。"
12231200
12241201 #. type: IP
1225 #: en/lb_config.1:286
1202 #: en/lb_config.1:282
12261203 #, no-wrap
12271204 msgid "B<--build-with-chroot> true|false"
12281205 msgstr "B<--build-with-chroot> true|false"
12291206
12301207 #. type: Plain text
1231 #: en/lb_config.1:288
1208 #: en/lb_config.1:284
12321209 msgid ""
12331210 "defines whether live-build should use the tools from within the chroot to "
12341211 "build the binary image or not by using and including the host system's "
12521229 "ションを決して無効化することのないようにしてください。 "
12531230
12541231 #. type: IP
1255 #: en/lb_config.1:288
1232 #: en/lb_config.1:284
12561233 #, no-wrap
12571234 msgid "B<--chroot-filesystem> ext2|ext3|ext4|squashfs|jffs2|none"
12581235 msgstr "B<--chroot-filesystem> ext2|ext3|ext4|squashfs|jffs2|none"
12591236
12601237 #. type: Plain text
1261 #: en/lb_config.1:290
1238 #: en/lb_config.1:286
12621239 msgid ""
12631240 "defines which filesystem type should be used for the root filesystem image. "
12641241 "If you use none, then no filesystem image is created and the root filesystem "
12751252 "では linux からの直接の実行をサポートしていないため機能しません。"
12761253
12771254 #. type: IP
1278 #: en/lb_config.1:290
1255 #: en/lb_config.1:286
12791256 #, no-wrap
12801257 msgid "B<--clean>"
12811258 msgstr "B<--clean>"
12821259
12831260 #. type: Plain text
1284 #: en/lb_config.1:292
1261 #: en/lb_config.1:288
12851262 msgid ""
12861263 "minimizes config directory by automatically removing unused and thus empty "
12871264 "subdirectories."
12901267 "小にします。"
12911268
12921269 #. type: IP
1293 #: en/lb_config.1:292
1270 #: en/lb_config.1:288
12941271 #, no-wrap
12951272 msgid "-c|B<--conffile> I<FILE>"
12961273 msgstr "-c|B<--conffile> I<ファイル>"
12971274
12981275 #. type: Plain text
1299 #: en/lb_config.1:294
1276 #: en/lb_config.1:290
13001277 msgid ""
13011278 "using a user specified alternative configuration file in addition to the "
13021279 "normally used one in the config directory."
13051282 "ファイルを使います。"
13061283
13071284 #. type: IP
1308 #: en/lb_config.1:294
1285 #: en/lb_config.1:290
13091286 #, no-wrap
13101287 msgid "B<--debconf-frontend> dialog|editor|noninteractive|readline"
13111288 msgstr "B<--debconf-frontend> dialog|editor|noninteractive|readline"
13121289
13131290 #. type: Plain text
1314 #: en/lb_config.1:296
1291 #: en/lb_config.1:292
13151292 msgid ""
13161293 "defines what value the debconf frontend should be set to inside the chroot. "
13171294 "Note that setting it to anything but noninteractive, which is the default, "
13221299 "てください。"
13231300
13241301 #. type: IP
1325 #: en/lb_config.1:296
1302 #: en/lb_config.1:292
13261303 #, no-wrap
13271304 msgid "B<--debconf-priority> low|medium|high|critical"
13281305 msgstr "B<--debconf-priority> low|medium|high|critical"
13291306
13301307 #. type: Plain text
1331 #: en/lb_config.1:298
1308 #: en/lb_config.1:294
13321309 msgid ""
13331310 "defines what value the debconf priority should be set to inside the chroot. "
13341311 "By default, it is set to critical, which means that almost no questions are "
13401317 "noninteractive 以外を指定している場合にのみ有効であることに注意してください"
13411318
13421319 #. type: IP
1343 #: en/lb_config.1:298
1320 #: en/lb_config.1:294
13441321 #, no-wrap
13451322 msgid "B<--debian-installer> true|cdrom|netinst|netboot|businesscard|live|false"
13461323 msgstr "B<--debian-installer> true|cdrom|netinst|netboot|businesscard|live|false"
13471324
13481325 #. type: Plain text
1349 #: en/lb_config.1:300
1326 #: en/lb_config.1:296
13501327 msgid ""
13511328 "defines which type, if any, of the debian-installer should be included in "
13521329 "the resulting binary image. By default, no installer is included. All "
13651342 "ムをインストールします。"
13661343
13671344 #. type: IP
1368 #: en/lb_config.1:300
1345 #: en/lb_config.1:296
13691346 #, no-wrap
13701347 msgid "B<--debian-installer-distribution> daily|I<CODENAME>"
13711348 msgstr "B<--debian-installer-distribution> daily|I<コード名>"
13721349
13731350 #. type: Plain text
1374 #: en/lb_config.1:302
1351 #: en/lb_config.1:298
13751352 msgid ""
13761353 "defines the distribution where the debian-installer files should be taken "
13771354 "out from. Normally, this should be set to the same distribution as the live "
13831360 "いは日次ビルドのインストーラを使いたいときもあります。"
13841361
13851362 #. type: IP
1386 #: en/lb_config.1:302
1363 #: en/lb_config.1:298
13871364 #, no-wrap
13881365 msgid "B<--debian-installer-preseedfile> I<FILE>|I<URL>"
13891366 msgstr "B<--debian-installer-preseedfile> I<ファイル>|I<URL>"
13901367
13911368 #. type: Plain text
1392 #: en/lb_config.1:304
1369 #: en/lb_config.1:300
13931370 msgid ""
13941371 "sets the filename or URL for an optionally used and included preseeding file "
13951372 "for debian-installer. If config/binary_debian-installer/preseed.cfg exists, "
14001377 "る場合はそれがデフォルトで利用されます。"
14011378
14021379 #. type: IP
1403 #: en/lb_config.1:304
1380 #: en/lb_config.1:300
14041381 #, no-wrap
14051382 msgid "B<--debian-installer-gui> true|false"
14061383 msgstr "B<--debian-installer-gui> true|false"
14071384
14081385 #. type: Plain text
1409 #: en/lb_config.1:306
1386 #: en/lb_config.1:302
14101387 msgid ""
14111388 "defines if the debian-installer graphical GTK interface should be true or "
14121389 "not. In Debian mode and for most versions of Ubuntu, this option is true, "
14171394 "それ以外では false となっています。"
14181395
14191396 #. type: IP
1420 #: en/lb_config.1:306 en/live-build.7:36
1397 #: en/lb_config.1:302 en/live-build.7:36
14211398 #, no-wrap
14221399 msgid "B<--debug>"
14231400 msgstr "B<--debug>"
14241401
14251402 #. type: Plain text
1426 #: en/lb_config.1:308
1403 #: en/lb_config.1:304
14271404 msgid "turn on debugging informational messages."
14281405 msgstr "デバッグ情報のメッセージを表示します。"
14291406
14301407 #. type: IP
1431 #: en/lb_config.1:308
1408 #: en/lb_config.1:304
14321409 #, no-wrap
14331410 msgid "-d|B<--distribution> I<CODENAME>"
14341411 msgstr "-d|B<--distribution> I<コード名>"
14351412
14361413 #. type: Plain text
1437 #: en/lb_config.1:310
1414 #: en/lb_config.1:306
14381415 msgid "defines the distribution of the resulting live system."
14391416 msgstr "出来上がる Live システムのディストリビューションを決定します。"
14401417
14411418 #. type: IP
1442 #: en/lb_config.1:310
1419 #: en/lb_config.1:306
14431420 #, no-wrap
14441421 msgid "-d|B<--parent-distribution> I<CODENAME>"
14451422 msgstr "-d|B<--parent-distribution> I<コード名>"
14461423
14471424 #. type: Plain text
1448 #: en/lb_config.1:312
1425 #: en/lb_config.1:308
14491426 msgid ""
14501427 "defines the parent distribution for derivatives of the resulting live system."
14511428 msgstr "出来上がる Live システムの派生元のディストリビューションを決定します。"
14521429
14531430 #. type: IP
1454 #: en/lb_config.1:312
1431 #: en/lb_config.1:308
14551432 #, no-wrap
14561433 msgid "-d|B<--parent-debian-installer-distribution> I<CODENAME>"
14571434 msgstr "-d|B<--parent-debian-installer-distribution> I<コード名>"
14581435
14591436 #. type: Plain text
1460 #: en/lb_config.1:314
1437 #: en/lb_config.1:310
14611438 msgid ""
14621439 "defines the parent debian-installer distribution for derivatives of the "
14631440 "resulting live system."
14661443 "を決定します。"
14671444
14681445 #. type: IP
1469 #: en/lb_config.1:314
1446 #: en/lb_config.1:310
14701447 #, no-wrap
14711448 msgid "B<--dump>"
14721449 msgstr "B<--dump>"
14731450
14741451 #. type: Plain text
1475 #: en/lb_config.1:316
1452 #: en/lb_config.1:312
14761453 msgid ""
14771454 "prepares a report of the currently present live system configuration and the "
14781455 "version of live-build used. This is useful to provide if you submit bug "
14841461 "け出し、再現するのに必要となる情報を全て提供します。"
14851462
14861463 #. type: IP
1487 #: en/lb_config.1:316
1464 #: en/lb_config.1:312
14881465 #, no-wrap
14891466 msgid "B<--fdisk> fdisk|fdisk.dist"
14901467 msgstr "B<--fdisk> fdisk|fdisk.dist"
14911468
14921469 #. type: Plain text
1493 #: en/lb_config.1:318
1470 #: en/lb_config.1:314
14941471 msgid ""
14951472 "sets the filename of the fdisk binary from the host system that should be "
14961473 "used. This is autodetected and does generally not need any customization."
14991476 "に検出されるため通常は独自に指定する必要はありません。"
15001477
15011478 #. type: IP
1502 #: en/lb_config.1:318 en/live-build.7:38
1479 #: en/lb_config.1:314 en/live-build.7:38
15031480 #, no-wrap
15041481 msgid "B<--force>"
15051482 msgstr "B<--force>"
15061483
15071484 #. type: Plain text
1508 #: en/lb_config.1:320
1485 #: en/lb_config.1:316
15091486 msgid ""
15101487 "forces re-execution of already run stages. Use only if you know what you are "
15111488 "doing. It is generally safer to use B<lb clean> to clean up before re-"
15161493 "して掃除すると安全性は上がります。"
15171494
15181495 #. type: IP
1519 #: en/lb_config.1:320
1496 #: en/lb_config.1:316
15201497 #, no-wrap
15211498 msgid "B<--grub-splash> I<FILE>"
15221499 msgstr "B<--grub-splash> I<ファイル>"
15231500
15241501 #. type: Plain text
1525 #: en/lb_config.1:322
1502 #: en/lb_config.1:318
15261503 msgid ""
15271504 "defines the name of an optional to be included splash screen graphic for the "
15281505 "grub bootloader."
15311508 "イル名を指定します。"
15321509
15331510 #. type: IP
1534 #: en/lb_config.1:322
1511 #: en/lb_config.1:318
15351512 #, no-wrap
15361513 msgid "B<--gzip-options> I<OPTION>|\"I<OPTIONS>\""
15371514 msgstr "B<--gzip-options> I<オプション>|\"I<オプション>\""
15381515
15391516 #. type: Plain text
1540 #: en/lb_config.1:324
1517 #: en/lb_config.1:320
15411518 msgid ""
15421519 "defines the default options that will be appended to (almost) every gzip "
15431520 "call during the building of the image. By default, this is set to --best to "
15501527 "rsyncable も動的に付加されます。"
15511528
15521529 #. type: IP
1553 #: en/lb_config.1:324
1530 #: en/lb_config.1:320
15541531 #, no-wrap
15551532 msgid "B<--hooks> I<FILE>"
15561533 msgstr "B<--hooks> I<ファイル>"
15571534
15581535 #. type: Plain text
1559 #: en/lb_config.1:326
1536 #: en/lb_config.1:322
15601537 msgid ""
15611538 "defines which hooks available in /usr/share/live/build/examples/hooks should "
15621539 "be activated. Normally, there are no hooks executed. Make sure you know and "
15671544 "何をするものなのか、確実に知って理解するようにしてください。"
15681545
15691546 #. type: IP
1570 #: en/lb_config.1:326
1547 #: en/lb_config.1:322
15711548 #, no-wrap
15721549 msgid "B<--ignore-system-defaults>"
15731550 msgstr "B<--ignore-system-defaults>"
15741551
15751552 #. type: Plain text
1576 #: en/lb_config.1:328
1553 #: en/lb_config.1:324
15771554 msgid ""
15781555 "B<lb config> by default reads system defaults from I</etc/live/build.conf> "
15791556 "and I</etc/live/build/*> when generating a new live system config directory. "
15861563 "す。"
15871564
15881565 #. type: IP
1589 #: en/lb_config.1:328
1566 #: en/lb_config.1:324
15901567 #, no-wrap
15911568 msgid "B<--initramfs> auto|none|live-boot|casper"
15921569 msgstr "B<--initramfs> auto|none|live-boot|casper"
15931570
15941571 #. type: Plain text
1595 #: en/lb_config.1:330
1572 #: en/lb_config.1:326
15961573 msgid ""
15971574 "sets the name of package that contains the live system specific initramfs "
15981575 "modification. By default, auto is used, which means that at build time of "
16081585 "です (実験的設定値)。"
16091586
16101587 #. type: IP
1611 #: en/lb_config.1:330
1588 #: en/lb_config.1:326
16121589 #, no-wrap
16131590 msgid "B<--initramfs-compression> bzip2|gzip|lzma]"
16141591 msgstr "B<--initramfs-compression> bzip2|gzip|lzma]"
16151592
16161593 #. type: Plain text
1617 #: en/lb_config.1:332
1594 #: en/lb_config.1:328
16181595 msgid ""
16191596 "defines the compression program to be used to compress the initramfs. "
16201597 "Defaults to gzip."
16231600 "す。"
16241601
16251602 #. type: IP
1626 #: en/lb_config.1:332
1603 #: en/lb_config.1:328
16271604 #, no-wrap
16281605 msgid "B<--interactive> shell"
16291606 msgstr "B<--interactive> shell"
16301607
16311608 #. type: Plain text
1632 #: en/lb_config.1:334
1609 #: en/lb_config.1:330
16331610 msgid ""
16341611 "defines if after the chroot stage and before the beginning of the binary "
16351612 "stage, a interactive shell login should be spawned in the chroot in order to "
16501627 "ろんデフォルトで false となっています。"
16511628
16521629 #. type: IP
1653 #: en/lb_config.1:334
1630 #: en/lb_config.1:330
16541631 #, no-wrap
16551632 msgid "B<--isohybrid-options> I<OPTION>|\"I<OPTIONS>\""
16561633 msgstr "B<--isohybrid-options> I<オプション>|\"I<オプション>\""
16571634
16581635 #. type: Plain text
1659 #: en/lb_config.1:336
1636 #: en/lb_config.1:332
16601637 msgid "defines options to pass to isohybrid."
16611638 msgstr "isohybrid に渡すオプションを指定します。"
16621639
16631640 #. type: IP
1664 #: en/lb_config.1:336
1641 #: en/lb_config.1:332
16651642 #, no-wrap
16661643 msgid "B<--iso-application> I<NAME>"
16671644 msgstr "B<--iso-application> I<名前>"
16681645
16691646 #. type: Plain text
1670 #: en/lb_config.1:338
1647 #: en/lb_config.1:334
16711648 msgid ""
16721649 "sets the APPLICATION field in the header of a resulting CD/DVD image and "
16731650 "defaults to \"Debian Live\" in debian mode, and \"Ubuntu Live\" in ubuntu "
16781655 "となっています。"
16791656
16801657 #. type: IP
1681 #: en/lb_config.1:338
1658 #: en/lb_config.1:334
16821659 #, no-wrap
16831660 msgid "B<--iso-preparer> I<NAME>"
16841661 msgstr "B<--iso-preparer> I<名前>"
16851662
16861663 #. type: Plain text
1687 #: en/lb_config.1:340
1664 #: en/lb_config.1:336
16881665 msgid ""
16891666 "sets the PREPARER field in the header of a resulting CD/DVD image. By "
16901667 "default this is set to \"live-build I<VERSION>; http://packages.qa.debian."
16971674 "に展開されます。"
16981675
16991676 #. type: IP
1700 #: en/lb_config.1:340
1677 #: en/lb_config.1:336
17011678 #, no-wrap
17021679 msgid "B<--iso-publisher> I<NAME>"
17031680 msgstr "B<--iso-publisher> I<名前>"
17041681
17051682 #. type: Plain text
1706 #: en/lb_config.1:342
1683 #: en/lb_config.1:338
17071684 msgid ""
17081685 "sets the PUBLISHED field in the header of a resulting CD/DVD image. By "
17091686 "default, this is set to 'Live Systems project; http:/live-systems.org/; "
17161693 "最新の適切な値に変更してください。"
17171694
17181695 #. type: IP
1719 #: en/lb_config.1:342
1696 #: en/lb_config.1:338
17201697 #, no-wrap
17211698 msgid "B<--iso-volume> I<NAME>"
17221699 msgstr "B<--iso-volume> I<名前>"
17231700
17241701 #. type: Plain text
1725 #: en/lb_config.1:344
1702 #: en/lb_config.1:340
17261703 msgid ""
17271704 "sets the VOLUME field in the header of a resulting CD/DVD and defaults to "
17281705 "'(I<MODE>) (I<DISTRIBUTION>) (I<DATE>)' whereas MODE is expanded to the name "
17351712 "は作成時の日付と時刻に展開されます。"
17361713
17371714 #. type: IP
1738 #: en/lb_config.1:344
1715 #: en/lb_config.1:340
17391716 #, no-wrap
17401717 msgid "B<--jffs2-eraseblock> I<SIZE>"
17411718 msgstr "B<--jffs2-eraseblock> I<サイズ>"
17421719
17431720 #. type: Plain text
1744 #: en/lb_config.1:346
1721 #: en/lb_config.1:342
17451722 msgid ""
17461723 "sets the eraseblock size for a JFFS2 (Second Journaling Flash File System) "
17471724 "filesystem. The default is 64 KiB. If you use an erase block size different "
17561733 "定します。"
17571734
17581735 #. type: IP
1759 #: en/lb_config.1:346
1736 #: en/lb_config.1:342
17601737 #, no-wrap
17611738 msgid "B<--keyring-packages> I<PACKAGE|\"PACKAGES>\""
17621739 msgstr "B<--keyring-packages> I<パッケージ|\"パッケージ>\""
17631740
17641741 #. type: Plain text
1765 #: en/lb_config.1:348
1742 #: en/lb_config.1:344
17661743 msgid ""
17671744 "sets the keyring package or additional keyring packages. By default this is "
17681745 "set to debian-archive-keyring."
17711748 "は debian-archive-keyring となっています。"
17721749
17731750 #. type: IP
1774 #: en/lb_config.1:348
1751 #: en/lb_config.1:344
17751752 #, no-wrap
17761753 msgid "-k|B<--linux-flavours> I<FLAVOUR>|\"I<FLAVOURS>\""
17771754 msgstr "-k|B<--linux-flavours> I<フレーバー>|\"I<フレーバー>\""
17781755
17791756 #. type: Plain text
1780 #: en/lb_config.1:350
1757 #: en/lb_config.1:346
17811758 msgid ""
17821759 "sets the kernel flavours to be installed. Note that in case you specify more "
17831760 "than that the first will be configured the default kernel that gets booted."
17871764 "意してください。"
17881765
17891766 #. type: IP
1790 #: en/lb_config.1:350
1767 #: en/lb_config.1:346
17911768 #, no-wrap
17921769 msgid "B<--linux-packages> \"I<PACKAGES>\""
17931770 msgstr "B<--linux-packages> \"I<パッケージ>\""
17941771
17951772 #. type: Plain text
1796 #: en/lb_config.1:352
1773 #: en/lb_config.1:348
17971774 msgid ""
17981775 "sets the internal name of the kernel packages naming scheme. If you use "
17991776 "debian kernel packages, you will not have to adjust it. If you decide to use "
18001777 "custom kernel packages that do not follow the debian naming scheme, remember "
18011778 "to set this option to the stub of the packages only (for debian this is "
18021779 "linux-image-2.6), so that I<STUB>-I<FLAVOUR> results in a valid package name "
1803 "(for debian e.g. linux-image-2.6-486). Preferably you use the meta package "
1804 "name, if any, for the stub, so that your configuration is ABI independent. "
1805 "Also don't forget that you have to include stubs of the binary modules "
1806 "packages for unionfs or aufs, and squashfs if you built them out-of-tree."
1780 "(for debian e.g. linux-image-586). Preferably you use the meta package name, "
1781 "if any, for the stub, so that your configuration is ABI independent. Also "
1782 "don't forget that you have to include stubs of the binary modules packages "
1783 "for unionfs or aufs, and squashfs if you built them out-of-tree."
18071784 msgstr ""
18081785 "カーネルのパッケージ命名規則に従った内部名をセットします。Debian のカーネル"
18091786 "パッケージを利用している場合は調整する必要はありません。Debian の命名規則に従"
18101787 "わない独自のカーネルパッケージを利用する場合にはこのオプションでパッケージの"
18111788 "前半部 (Debian の場合は linux-image-2.6) だけを忘れずに指定し、I<前半部>-I<フ"
1812 "レーバー> (Debian の場合は例えば linux-image-2.6-486) が有効なパッケージ名に"
1813 "なるようにしてください。好ましいのは、メタパッケージがある場合にはその名前を"
1814 "前半部に使うことで、そうすると設定とABIが独立します。また、unionfs や aufs、"
1789 "レーバー> (Debian の場合は例えば linux-image-586) が有効なパッケージ名になる"
1790 "ようにしてください。好ましいのは、メタパッケージがある場合にはその名前を前半"
1791 "部に使うことで、そうすると設定とABIが独立します。また、unionfs や aufs、"
18151792 "squashfs のバイナリモジュールパッケージについても、ツリー外でビルドした場合に"
18161793 "はその前半部を含める必要があることを忘れないようにしてください。"
18171794
18181795 #. type: IP
1819 #: en/lb_config.1:352
1796 #: en/lb_config.1:348
18201797 #, no-wrap
18211798 msgid "B<--losetup> losetup|losetup.orig"
18221799 msgstr "B<--losetup> losetup|losetup.orig"
18231800
18241801 #. type: Plain text
1825 #: en/lb_config.1:354
1802 #: en/lb_config.1:350
18261803 msgid ""
18271804 "sets the filename of the losetup binary from the host system that should be "
18281805 "used. This is autodetected and does generally not need any customization."
18311808 "的に検出されるため通常は独自に指定する必要はありません。"
18321809
18331810 #. type: IP
1834 #: en/lb_config.1:354
1811 #: en/lb_config.1:350
18351812 #, no-wrap
18361813 msgid "B<--memtest> memtest86+|memtest86|none"
18371814 msgstr "B<--memtest> memtest86+|memtest86|none"
18381815
18391816 #. type: Plain text
1840 #: en/lb_config.1:356
1817 #: en/lb_config.1:352
18411818 msgid ""
18421819 "defines if memtest, memtest86+ or no memory tester at all should be included "
18431820 "as secondary bootloader configuration. This is only available on amd64 and "
18481825 "i386 でのみ利用可能で、デフォルトは memtest86+ となっています。"
18491826
18501827 #. type: IP
1851 #: en/lb_config.1:356
1828 #: en/lb_config.1:352
18521829 #, no-wrap
18531830 msgid "-m|B<--parent-mirror-bootstrap> I<URL>"
18541831 msgstr "-m|B<--parent-mirror-bootstrap> I<URL>"
18551832
18561833 #. type: Plain text
1857 #: en/lb_config.1:358
1834 #: en/lb_config.1:354
18581835 msgid ""
18591836 "sets the location of the debian package mirror that should be used to "
18601837 "bootstrap from. This defaults to http://ftp.de.debian.org/debian/ which may "
18651842 "トではないかもしれません。"
18661843
18671844 #. type: IP
1868 #: en/lb_config.1:358
1845 #: en/lb_config.1:354
18691846 #, no-wrap
18701847 msgid "B<--parent-mirror-chroot> I<URL>"
18711848 msgstr "B<--parent-mirror-chroot> I<URL>"
18721849
18731850 #. type: Plain text
1874 #: en/lb_config.1:360
1851 #: en/lb_config.1:356
18751852 msgid ""
18761853 "sets the location of the debian package mirror that will be used to fetch "
18771854 "the packages in order to build the live system. By default, this is set to "
18821859 "た値が利用されます。"
18831860
18841861 #. type: IP
1885 #: en/lb_config.1:360
1862 #: en/lb_config.1:356
18861863 #, no-wrap
18871864 msgid "B<--parent-mirror-chroot-security> I<URL>"
18881865 msgstr "B<--parent-mirror-chroot-security> I<URL>"
18891866
18901867 #. type: Plain text
1891 #: en/lb_config.1:362
1868 #: en/lb_config.1:358
18921869 msgid ""
18931870 "sets the location of the debian security package mirror that will be used to "
18941871 "fetch the packages in order to build the live system. By default, this "
18991876 "debian.org/debian/」が利用されます。"
19001877
19011878 #. type: IP
1902 #: en/lb_config.1:362
1879 #: en/lb_config.1:358
19031880 #, no-wrap
19041881 msgid "B<--parent-mirror-chroot-updates> I<URL>"
19051882 msgstr "B<--parent-mirror-chroot-updates> I<URL>"
19061883
19071884 #. type: Plain text
1908 #: en/lb_config.1:364
1885 #: en/lb_config.1:360
19091886 msgid ""
19101887 "sets the location of the debian updates package mirror that will be used to "
19111888 "fetch packages in order to build the live system. By default, this is set to "
19161893 "指定された値が利用されます。"
19171894
19181895 #. type: IP
1919 #: en/lb_config.1:364
1896 #: en/lb_config.1:360
19201897 #, no-wrap
19211898 msgid "B<--parent-mirror-chroot-backports> I<URL>"
19221899 msgstr "B<--parent-mirror-chroot-backports> I<URL>"
19231900
19241901 #. type: Plain text
1925 #: en/lb_config.1:366
1902 #: en/lb_config.1:362
19261903 msgid ""
19271904 "sets the location of the debian backports package mirror that will be used "
19281905 "to fetch packages in order to build the live system. By default, this points "
19331910 "debian.org/debian-backports/」が利用されます。"
19341911
19351912 #. type: IP
1936 #: en/lb_config.1:366
1913 #: en/lb_config.1:362
19371914 #, no-wrap
19381915 msgid "B<--parent-mirror-binary> I<URL>"
19391916 msgstr "B<--parent-mirror-binary> I<URL>"
19401917
19411918 #. type: Plain text
1942 #: en/lb_config.1:368
1919 #: en/lb_config.1:364
19431920 msgid ""
19441921 "sets the location of the debian package mirror that should end up configured "
19451922 "in the final image and which is the one a user would see and use. This has "
19461923 "not necessarily to be the same that is used to build the image, e.g. if you "
19471924 "use a local mirror but want to have an official mirror in the image. By "
1948 "default, 'http://http.debian.net/debian/' is used."
1925 "default, 'http://httpredir.debian.org/debian/' is used."
19491926 msgstr ""
19501927 "出来上がったイメージ中で設定され、ユーザが利用することになる Debian パッケー"
19511928 "ジミラーの場所を指定します。これはイメージのビルドに利用するものと同一である"
19521929 "必要はありません。例えばローカルミラーを利用しているけれどもイメージでは公式"
1953 "のミラーを使うようにしたい場合。デフォルトでは「http://http.debian.net/"
1930 "のミラーを使うようにしたい場合。デフォルトでは「http://httpredir.debian.org/"
19541931 "debian/」を利用します。"
19551932
19561933 #. type: IP
1957 #: en/lb_config.1:368
1934 #: en/lb_config.1:364
19581935 #, no-wrap
19591936 msgid "B<--parent-mirror-binary-security> I<URL>"
19601937 msgstr "B<--parent-mirror-binary-security> I<URL>"
19611938
19621939 #. type: Plain text
1963 #: en/lb_config.1:370
1940 #: en/lb_config.1:366
19641941 msgid ""
19651942 "sets the location of the debian security package mirror that should end up "
19661943 "configured in the final image. By default, 'http://security.debian.org/' is "
19701947 "セットします。デフォルトでは「http://security.debian.org/」が利用されます。"
19711948
19721949 #. type: IP
1973 #: en/lb_config.1:370
1950 #: en/lb_config.1:366
19741951 #, no-wrap
19751952 msgid "B<--parent-mirror-binary-updates> I<URL>"
19761953 msgstr "B<--parent-mirror-binary-updates> I<URL>"
19771954
19781955 #. type: Plain text
1979 #: en/lb_config.1:372
1956 #: en/lb_config.1:368
19801957 msgid ""
19811958 "sets the location of the debian updates package mirror that should end up "
19821959 "configured in the final image. By default, the value of --parent-mirror-"
19871964 "す。"
19881965
19891966 #. type: IP
1990 #: en/lb_config.1:372
1967 #: en/lb_config.1:368
19911968 #, no-wrap
19921969 msgid "B<--parent-mirror-binary-backports> I<URL>"
19931970 msgstr "B<--parent-mirror-binary-backports> I<URL>"
19941971
19951972 #. type: Plain text
1996 #: en/lb_config.1:374
1973 #: en/lb_config.1:370
19971974 msgid ""
19981975 "sets the location of the debian backports package mirror that should end up "
19991976 "configured in the final image. By default, 'http://backports.debian.org/"
20041981 "が利用されます。"
20051982
20061983 #. type: IP
2007 #: en/lb_config.1:374
1984 #: en/lb_config.1:370
20081985 #, no-wrap
20091986 msgid "B<--parent-mirror-debian-installer> I<URL>"
20101987 msgstr "B<--parent-mirror-debian-installer> I<URL>"
20111988
20121989 #. type: Plain text
2013 #: en/lb_config.1:376
1990 #: en/lb_config.1:372
20141991 msgid ""
20151992 "sets the location of the mirror that will be used to fetch the debian "
20161993 "installer images. By default, this points to the same mirror used to build "
20211998 "まり --parent-mirror-bootstrap で指定された値が利用されます。"
20221999
20232000 #. type: IP
2024 #: en/lb_config.1:376
2001 #: en/lb_config.1:372
20252002 #, no-wrap
20262003 msgid "B<--mirror-bootstrap> I<URL>"
20272004 msgstr "B<--mirror-bootstrap> I<URL>"
20282005
20292006 #. type: Plain text
2030 #: en/lb_config.1:378
2007 #: en/lb_config.1:374
20312008 msgid ""
20322009 "sets the location of the debian package mirror that should be used to "
20332010 "bootstrap the derivative from. This defaults to http://ftp.de.debian.org/"
20382015 "切なデフォルトではないかもしれません。"
20392016
20402017 #. type: IP
2041 #: en/lb_config.1:378
2018 #: en/lb_config.1:374
20422019 #, no-wrap
20432020 msgid "B<--mirror-chroot> I<URL>"
20442021 msgstr "B<--mirror-chroot> I<URL>"
20452022
20462023 #. type: Plain text
2047 #: en/lb_config.1:380
2024 #: en/lb_config.1:376
20482025 msgid ""
20492026 "sets the location of the debian package mirror that will be used to fetch "
20502027 "the packages of the derivative in order to build the live system. By "
20552032 "された値が利用されます。"
20562033
20572034 #. type: IP
2058 #: en/lb_config.1:380
2035 #: en/lb_config.1:376
20592036 #, no-wrap
20602037 msgid "B<--mirror-chroot-security> I<URL>"
20612038 msgstr "B<--mirror-chroot-security> I<URL>"
20622039
20632040 #. type: Plain text
2064 #: en/lb_config.1:382
2041 #: en/lb_config.1:378
20652042 msgid ""
20662043 "sets the location of the debian security package mirror that will be used to "
20672044 "fetch the packages of the derivative in order to build the live system. By "
20722049 "security.debian.org/debian/」が利用されます。"
20732050
20742051 #. type: IP
2075 #: en/lb_config.1:382
2052 #: en/lb_config.1:378
20762053 #, no-wrap
20772054 msgid "B<--mirror-chroot-updates> I<URL>"
20782055 msgstr "B<--mirror-chroot-updates> I<URL>"
20792056
20802057 #. type: Plain text
2081 #: en/lb_config.1:384
2058 #: en/lb_config.1:380
20822059 msgid ""
20832060 "sets the location of the debian updates package mirror that will be used to "
20842061 "fetch packages of the derivative in order to build the live system. By "
20892066 "chroot で指定された値が利用されます。"
20902067
20912068 #. type: IP
2092 #: en/lb_config.1:384
2069 #: en/lb_config.1:380
20932070 #, no-wrap
20942071 msgid "B<--mirror-chroot-backports> I<URL>"
20952072 msgstr "B<--mirror-chroot-backports> I<URL>"
20962073
20972074 #. type: Plain text
2098 #: en/lb_config.1:386
2075 #: en/lb_config.1:382
20992076 msgid ""
21002077 "sets the location of the debian backports package mirror that will be used "
21012078 "to fetch packages of the derivative in order to build the live system. By "
21062083 "backports.debian.org/debian-backports/」が利用されます。"
21072084
21082085 #. type: IP
2109 #: en/lb_config.1:386
2086 #: en/lb_config.1:382
21102087 #, no-wrap
21112088 msgid "B<--mirror-binary> I<URL>"
21122089 msgstr "B<--mirror-binary> I<URL>"
21132090
21142091 #. type: Plain text
2115 #: en/lb_config.1:388
2092 #: en/lb_config.1:384
21162093 msgid ""
21172094 "sets the location of the derivative package mirror that should end up "
21182095 "configured in the final image and which is the one a user would see and use. "
21232100 "出来上がったイメージ中で設定され、ユーザが利用することになる派生物のパッケー"
21242101 "ジミラーの場所を指定します。これはイメージのビルドに利用するものと同一である"
21252102 "必要はありません。例えばローカルミラーを利用しているけれどもイメージでは公式"
2126 "のミラーを使うようにしたい場合。デフォルトでは「http://http.debian.net/"
2103 "のミラーを使うようにしたい場合。デフォルトでは「http://httpredir.debian.org/"
21272104 "debian/」を利用します。"
21282105
21292106 #. type: IP
2130 #: en/lb_config.1:388
2107 #: en/lb_config.1:384
21312108 #, no-wrap
21322109 msgid "B<--mirror-binary-security> I<URL>"
21332110 msgstr "B<--mirror-binary-security> I<URL>"
21342111
21352112 #. type: Plain text
2136 #: en/lb_config.1:390
2113 #: en/lb_config.1:386
21372114 msgid ""
21382115 "sets the location of the derivatives security package mirror that should end "
21392116 "up configured in the final image."
21422119 "所をセットします。"
21432120
21442121 #. type: IP
2145 #: en/lb_config.1:390
2122 #: en/lb_config.1:386
21462123 #, no-wrap
21472124 msgid "B<--mirror-binary-updates> I<URL>"
21482125 msgstr "B<--mirror-binary-updates> I<URL>"
21492126
21502127 #. type: Plain text
2151 #: en/lb_config.1:392
2128 #: en/lb_config.1:388
21522129 msgid ""
21532130 "sets the location of the derivatives updates package mirror that should end "
21542131 "up configured in the final image."
21572134 "セットします。"
21582135
21592136 #. type: IP
2160 #: en/lb_config.1:392
2137 #: en/lb_config.1:388
21612138 #, no-wrap
21622139 msgid "B<--mirror-binary-backports> I<URL>"
21632140 msgstr "B<--mirror-binary-backports> I<URL>"
21642141
21652142 #. type: Plain text
2166 #: en/lb_config.1:394
2143 #: en/lb_config.1:390
21672144 msgid ""
21682145 "sets the location of the derivatives backports package mirror that should "
21692146 "end up configured in the final image."
21722149 "をセットします。"
21732150
21742151 #. type: IP
2175 #: en/lb_config.1:394
2152 #: en/lb_config.1:390
21762153 #, no-wrap
21772154 msgid "B<--mirror-debian-installer> I<URL>"
21782155 msgstr "B<--mirror-debian-installer> I<URL>"
21792156
21802157 #. type: Plain text
2181 #: en/lb_config.1:396
2158 #: en/lb_config.1:392
21822159 msgid ""
21832160 "sets the location of the mirror that will be used to fetch the debian "
21842161 "installer images of the derivative. By default, this points to the same "
21892166 "ミラー、つまり --mirror-bootstrap で指定された値が利用されます。"
21902167
21912168 #. type: IP
2192 #: en/lb_config.1:396
2169 #: en/lb_config.1:392
21932170 #, no-wrap
21942171 msgid "B<--mode> debian|progress|ubuntu"
21952172 msgstr "B<--mode> debian|progress|ubuntu"
21962173
21972174 #. type: Plain text
2198 #: en/lb_config.1:398
2175 #: en/lb_config.1:394
21992176 msgid ""
22002177 "defines a global mode to load project specific defaults. By default this is "
22012178 "set to debian."
22042181 "フォルトでは debian となっています。"
22052182
22062183 #. type: IP
2207 #: en/lb_config.1:398
2184 #: en/lb_config.1:394
22082185 #, no-wrap
22092186 msgid "B<--system> live|normal"
22102187 msgstr "B<--system> live|normal"
22112188
22122189 #. type: Plain text
2213 #: en/lb_config.1:400
2190 #: en/lb_config.1:396
22142191 msgid ""
22152192 "defines if the resulting system image should a live system or a normal, non-"
22162193 "live system."
22192196 "普通のイメージにするのかを指定します。"
22202197
22212198 #. type: IP
2222 #: en/lb_config.1:400
2199 #: en/lb_config.1:396
22232200 #, no-wrap
22242201 msgid "B<--net-root-filesystem> nfs|cfs"
22252202 msgstr "B<--net-root-filesystem> nfs|cfs"
22262203
22272204 #. type: Plain text
2228 #: en/lb_config.1:402
2205 #: en/lb_config.1:398
22292206 msgid ""
22302207 "defines the filesystem that will be configured in the bootloader "
22312208 "configuration for your netboot image. This defaults to nfs."
22342211 "ムを指定します。デフォルトは nfs となっています。"
22352212
22362213 #. type: IP
2237 #: en/lb_config.1:402
2214 #: en/lb_config.1:398
22382215 #, no-wrap
22392216 msgid "B<--net-root-mountoptions> I<OPTIONS>"
22402217 msgstr "B<--net-root-mountoptions> I<オプション>"
22412218
22422219 #. type: Plain text
2243 #: en/lb_config.1:404
2220 #: en/lb_config.1:400
22442221 msgid ""
22452222 "sets additional options for mounting the root filesystem in netboot images "
22462223 "and is by default empty."
22492226 "オプションを指定します。デフォルトは空です。"
22502227
22512228 #. type: IP
2252 #: en/lb_config.1:404
2229 #: en/lb_config.1:400
22532230 #, no-wrap
22542231 msgid "B<--net-root-path> I<PATH>"
22552232 msgstr "B<--net-root-path> I<パス>"
22562233
22572234 #. type: Plain text
2258 #: en/lb_config.1:406
2235 #: en/lb_config.1:402
22592236 msgid ""
22602237 "sets the file path that will be configured in the bootloader configuration "
22612238 "for your netboot image. This defaults to /srv/debian-live in debian mode, "
22662243 "モードでは「/srv/ubuntu-live」となっています。"
22672244
22682245 #. type: IP
2269 #: en/lb_config.1:406
2246 #: en/lb_config.1:402
22702247 #, no-wrap
22712248 msgid "B<--net-root-server> I<IP>|I<HOSTNAME>"
22722249 msgstr "B<--net-root-server> I<IPアドレス>|I<ホスト名>"
22732250
22742251 #. type: Plain text
2275 #: en/lb_config.1:408
2252 #: en/lb_config.1:404
22762253 msgid ""
22772254 "sets the IP or hostname that will be configured in the bootloader "
22782255 "configuration for the root filesystem of your netboot image. This defaults "
22832260 "ています。"
22842261
22852262 #. type: IP
2286 #: en/lb_config.1:408
2263 #: en/lb_config.1:404
22872264 #, no-wrap
22882265 msgid "B<--net-cow-filesystem> nfs|cfs"
22892266 msgstr "B<--net-cow-filesystem> nfs|cfs"
22902267
22912268 #. type: Plain text
2292 #: en/lb_config.1:410
2269 #: en/lb_config.1:406
22932270 msgid ""
22942271 "defines the filesystem type for the copy-on-write layer and defaults to nfs."
22952272 msgstr ""
22972274 "です。"
22982275
22992276 #. type: IP
2300 #: en/lb_config.1:410
2277 #: en/lb_config.1:406
23012278 #, no-wrap
23022279 msgid "B<--net-cow-mountoptions> I<OPTIONS>"
23032280 msgstr "B<--net-cow-mountoptions> I<オプション>"
23042281
23052282 #. type: Plain text
2306 #: en/lb_config.1:412
2283 #: en/lb_config.1:408
23072284 msgid ""
23082285 "sets additional options for mounting the copy-on-write layer in netboot "
23092286 "images and is by default empty."
23122289 "追加オプションを指定します。デフォルトは空です。"
23132290
23142291 #. type: IP
2315 #: en/lb_config.1:412
2292 #: en/lb_config.1:408
23162293 #, no-wrap
23172294 msgid "B<--net-cow-path> I<PATH>"
23182295 msgstr "B<--net-cow-path> I<パス>"
23192296
23202297 #. type: Plain text
2321 #: en/lb_config.1:414
2298 #: en/lb_config.1:410
23222299 msgid ""
23232300 "defines the path to client writable filesystem. Anywhere that "
23242301 "I<client_mac_address> is specified in the path live-boot will substitute the "
23292306 "MACアドレスをハイフンで区切ったものに置き換えます。"
23302307
23312308 #. type: Plain text
2332 #: en/lb_config.1:417
2309 #: en/lb_config.1:413
23332310 msgid "Example:"
23342311 msgstr "例:"
23352312
23362313 #. type: Plain text
2337 #: en/lb_config.1:419
2314 #: en/lb_config.1:415
23382315 msgid "/export/hosts/client_mac_address"
23392316 msgstr "/export/hosts/client_mac_address"
23402317
23412318 #. type: Plain text
2342 #: en/lb_config.1:421
2319 #: en/lb_config.1:417
23432320 msgid "/export/hosts/00-16-D3-33-92-E8"
23442321 msgstr "/export/hosts/00-16-D3-33-92-E8"
23452322
23462323 #. type: IP
2347 #: en/lb_config.1:421
2324 #: en/lb_config.1:417
23482325 #, no-wrap
23492326 msgid "B<--net-cow-server> I<IP>|I<HOSTNAME>"
23502327 msgstr "B<--net-cow-server> I<IPアドレス>|I<ホスト名>"
23512328
23522329 #. type: Plain text
2353 #: en/lb_config.1:423
2330 #: en/lb_config.1:419
23542331 msgid ""
23552332 "sets the IP or hostname that will be configured in the bootloader "
23562333 "configuration for the copy-on-write filesystem of your netboot image and is "
23602337 "ローダ設定で設定するIPアドレスやホスト名をセットします。デフォルトは空です。"
23612338
23622339 #. type: IP
2363 #: en/lb_config.1:423
2340 #: en/lb_config.1:419
23642341 #, no-wrap
23652342 msgid "B<--net-tarball> true|false"
23662343 msgstr "B<--net-tarball> true|false"
23672344
23682345 #. type: Plain text
2369 #: en/lb_config.1:425
2346 #: en/lb_config.1:421
23702347 msgid ""
23712348 "defines if a compressed tarball should be created. Disabling this options "
23722349 "leads to no tarball at all, the plain binary directory is considered the "
23772354 "リが出力されることになります。デフォルトは true です。"
23782355
23792356 #. type: IP
2380 #: en/lb_config.1:425 en/live-build.7:40
2357 #: en/lb_config.1:421 en/live-build.7:40
23812358 #, no-wrap
23822359 msgid "B<--quiet>"
23832360 msgstr "B<--quiet>"
23842361
23852362 #. type: Plain text
2386 #: en/lb_config.1:427
2363 #: en/lb_config.1:423
23872364 msgid "reduces the verbosity of messages output by B<lb build>."
23882365 msgstr "B<lb build> からのメッセージの出力を少なくします。"
23892366
23902367 #. type: IP
2391 #: en/lb_config.1:427
2368 #: en/lb_config.1:423
23922369 #, no-wrap
23932370 msgid "B<--archive-areas> I<ARCHIVE_AREA>|\"I<ARCHIVE_AREAS>\""
23942371 msgstr "B<--archive-areas> I<アーカイブ領域>|\"I<アーカイブ領域>\""
23952372
23962373 #. type: Plain text
2397 #: en/lb_config.1:429
2374 #: en/lb_config.1:425
23982375 msgid ""
23992376 "defines which package archive areas of a debian packages archive should be "
24002377 "used for configured debian package mirrors. By default, this is set to main. "
24082385 "能かどうか、各パッケージのライセンスを忘れずに確認してください。"
24092386
24102387 #. type: IP
2411 #: en/lb_config.1:429
2388 #: en/lb_config.1:425
24122389 #, no-wrap
24132390 msgid "B<--parent-archive-areas> I<PARENT_ARCHIVE_AREA>|\"I<PARENT_ARCHIVE_AREAS>\""
24142391 msgstr "B<--parent-archive-areas> I<親アーカイブ領域>|\"I<親アーカイブ領域>\""
24152392
24162393 #. type: Plain text
2417 #: en/lb_config.1:431
2394 #: en/lb_config.1:427
24182395 msgid "defines the archive areas for derivatives of the resulting live system."
24192396 msgstr ""
24202397 "出来上がる Live システムの派生物のアーカイブ領域のディストリビューションを決"
24212398 "定します。"
24222399
24232400 #. type: IP
2424 #: en/lb_config.1:431
2401 #: en/lb_config.1:427
24252402 #, no-wrap
24262403 msgid "B<--security> true|false"
24272404 msgstr "B<--security> true|false"
24282405
24292406 #. type: Plain text
2430 #: en/lb_config.1:433
2407 #: en/lb_config.1:429
24312408 msgid ""
24322409 "defines if the security repositories specified in the security mirror "
24332410 "options should be used or not."
24362413 "かを決定します。"
24372414
24382415 #. type: IP
2439 #: en/lb_config.1:433
2416 #: en/lb_config.1:429
24402417 #, no-wrap
24412418 msgid "B<--source> true|false"
24422419 msgstr "B<--source> true|false"
24432420
24442421 #. type: Plain text
2445 #: en/lb_config.1:435
2422 #: en/lb_config.1:431
24462423 msgid ""
24472424 "defines if a corresponding source image to the binary image should be build. "
24482425 "By default this is false because most people do not require this and would "
24572434 "を確認すべきです。"
24582435
24592436 #. type: IP
2460 #: en/lb_config.1:435
2437 #: en/lb_config.1:431
24612438 #, no-wrap
24622439 msgid "-s|B<--source-images> iso|netboot|tar|hdd"
24632440 msgstr "-s|B<--source-images> iso|netboot|tar|hdd"
24642441
24652442 #. type: Plain text
2466 #: en/lb_config.1:437
2443 #: en/lb_config.1:433
24672444 msgid "defines the image type for the source image. Default is tar."
24682445 msgstr "ソースイメージのイメージの種類を指定します。デフォルトは tar です。"
24692446
24702447 #. type: IP
2471 #: en/lb_config.1:437
2448 #: en/lb_config.1:433
24722449 #, no-wrap
24732450 msgid "B<--firmware-binary> true|false"
24742451 msgstr "B<--firmware-binary> true|false"
24752452
24762453 #. type: Plain text
2477 #: en/lb_config.1:439
2454 #: en/lb_config.1:435
24782455 msgid ""
24792456 "defines if firmware packages should be automatically included into the "
24802457 "binary pool for debian-installer. Note that only firmware packages available "
24912468 "ん。"
24922469
24932470 #. type: IP
2494 #: en/lb_config.1:439
2471 #: en/lb_config.1:435
24952472 #, no-wrap
24962473 msgid "B<--firmware-chroot> true|false"
24972474 msgstr "B<--firmware-chroot> true|false"
24982475
24992476 #. type: Plain text
2500 #: en/lb_config.1:441
2477 #: en/lb_config.1:437
25012478 msgid ""
25022479 "defines if firmware packages should be automatically included into the live "
25032480 "image. Note that only firmware packages available within the configured "
25122489 "パッケージ一覧で明示的に指定したパッケージには干渉しません。"
25132490
25142491 #. type: IP
2515 #: en/lb_config.1:441
2492 #: en/lb_config.1:437
25162493 #, no-wrap
25172494 msgid "B<--swap-file-path> I<PATH>"
25182495 msgstr "B<--swap-file-path> I<パス>"
25192496
25202497 #. type: Plain text
2521 #: en/lb_config.1:443
2498 #: en/lb_config.1:439
25222499 msgid ""
25232500 "defines the path to a swap file to create in the binary image. Default is "
25242501 "not to create a swap file."
25272504 "はスワップファイルを作成しません。"
25282505
25292506 #. type: IP
2530 #: en/lb_config.1:443
2507 #: en/lb_config.1:439
25312508 #, no-wrap
25322509 msgid "B<--swap-file-size> I<MB>"
25332510 msgstr "B<--swap-file-size> I<MB>"
25342511
25352512 #. type: Plain text
2536 #: en/lb_config.1:445
2513 #: en/lb_config.1:441
25372514 msgid ""
25382515 "defines what size in megabytes the swap file should be, if one is to be "
25392516 "created. Default is 512MB."
25422519 "512MB です。"
25432520
25442521 #. type: IP
2545 #: en/lb_config.1:445
2522 #: en/lb_config.1:441
25462523 #, no-wrap
25472524 msgid "B<--tasksel> apt|aptitude|tasksel"
25482525 msgstr "B<--tasksel> apt|aptitude|tasksel"
25492526
25502527 #. type: Plain text
2551 #: en/lb_config.1:447
2528 #: en/lb_config.1:443
25522529 msgid ""
25532530 "selects which program is used to install tasks. By default, this is set to "
25542531 "tasksel."
25572534 "となっています。"
25582535
25592536 #. type: IP
2560 #: en/lb_config.1:447
2537 #: en/lb_config.1:443
25612538 #, no-wrap
25622539 msgid "B<--templates> I<PATH>"
25632540 msgstr "B<--templates> I<パス>"
25642541
25652542 #. type: Plain text
2566 #: en/lb_config.1:449
2543 #: en/lb_config.1:445
25672544 msgid ""
25682545 "sets the path to the templates that live-build is going to use, e.g. for "
25692546 "bootloaders. By default, this is set to /usr/share/live/build/templates/."
25722549 "す。デフォルトでは /usr/share/live/build/templates/ となっています。"
25732550
25742551 #. type: IP
2575 #: en/lb_config.1:449
2552 #: en/lb_config.1:445
25762553 #, no-wrap
25772554 msgid "B<--hdd-size> MB"
25782555 msgstr "B<--hdd-size> MB"
25792556
25802557 #. type: Plain text
2581 #: en/lb_config.1:451
2558 #: en/lb_config.1:447
25822559 msgid ""
25832560 "defines what size the hdd image should be. Note that although the default is "
25842561 "set to 10000 (= 10GB), it will not need 10GB space on your harddisk as the "
25892566 "10GB の空き容量が必要というわけではないことに注意してください。"
25902567
25912568 #. type: IP
2592 #: en/lb_config.1:451
2569 #: en/lb_config.1:447
25932570 #, no-wrap
25942571 msgid "B<--updates> true|false"
25952572 msgstr "B<--updates> true|false"
25962573
25972574 #. type: Plain text
2598 #: en/lb_config.1:453
2575 #: en/lb_config.1:449
25992576 msgid ""
26002577 "defines if debian updates package archives should be included in the image "
26012578 "or not."
26032580 "イメージに updates パッケージアーカイブを収録すべきか否かを決定します。"
26042581
26052582 #. type: IP
2606 #: en/lb_config.1:453
2583 #: en/lb_config.1:449
26072584 #, no-wrap
26082585 msgid "B<--backports> true|false"
26092586 msgstr "B<--backports> true|false"
26102587
26112588 #. type: Plain text
2612 #: en/lb_config.1:455
2589 #: en/lb_config.1:451
26132590 msgid ""
26142591 "defines if debian backports package archives should be included in the image "
26152592 "or not."
26172594 "イメージに backports パッケージアーカイブを収録すべきか否かを決定します。"
26182595
26192596 #. type: IP
2620 #: en/lb_config.1:455 en/live-build.7:42
2597 #: en/lb_config.1:451 en/live-build.7:42
26212598 #, no-wrap
26222599 msgid "B<--verbose>"
26232600 msgstr "B<--verbose>"
26242601
26252602 #. type: Plain text
2626 #: en/lb_config.1:457
2603 #: en/lb_config.1:453
26272604 msgid "increases the verbosity of messages output by B<lb build>."
26282605 msgstr "B<lb build> からのメッセージの出力を多くします。"
26292606
26302607 #. type: IP
2631 #: en/lb_config.1:457
2608 #: en/lb_config.1:453
26322609 #, no-wrap
26332610 msgid "B<--win32-loader true|false>"
26342611 msgstr "B<--win32-loader true|false>"
26352612
26362613 #. FIXME
26372614 #. type: Plain text
2638 #: en/lb_config.1:460
2615 #: en/lb_config.1:456
26392616 msgid "defines if win32-loader should be included in the binary image or not."
26402617 msgstr "バイナリイメージに win32-loader を収録すべきか否かを決定します。"
26412618
26422619 #. type: SH
2643 #: en/lb_config.1:461
2620 #: en/lb_config.1:457
26442621 #, no-wrap
26452622 msgid "ENVIRONMENT"
26462623 msgstr "環境変数"
26472624
26482625 #. FIXME
26492626 #. type: Plain text
2650 #: en/lb_config.1:464
2627 #: en/lb_config.1:460
26512628 msgid ""
26522629 "Currently, command line switches can also be specified through the "
26532630 "corresponding environment variable. However, this generally should not be "
26672644
26682645 #. FIXME
26692646 #. type: IP
2670 #: en/lb_config.1:468
2647 #: en/lb_config.1:464
26712648 #, no-wrap
26722649 msgid "B<auto/config>"
26732650 msgstr "B<auto/config>"
26742651
26752652 #. type: IP
2676 #: en/lb_config.1:469
2653 #: en/lb_config.1:465
26772654 #, no-wrap
26782655 msgid "B</etc/live/build.conf, /etc/live/build/*>"
26792656 msgstr "B</etc/live/build.conf, /etc/live/build/*>"
26802657
26812658 #. FIXME
26822659 #. type: Plain text
2683 #: en/lb_config.1:472
2660 #: en/lb_config.1:468
26842661 msgid ""
26852662 "An optional, global configuration file for B<lb config> variables. It is "
26862663 "useful to specify a few system wide defaults, like "
26932670 "無効にできます。"
26942671
26952672 #. type: Plain text
2696 #: en/lb_config.1:477 en/live-build.7:221
2673 #: en/lb_config.1:473 en/live-build.7:219
26972674 msgid "I<live-boot>(7)"
26982675 msgstr "I<live-boot>(7)"
26992676
27002677 #. type: Plain text
2701 #: en/lb_config.1:479 en/live-build.7:223
2678 #: en/lb_config.1:475 en/live-build.7:221
27022679 msgid "I<live-config>(7)"
27032680 msgstr "I<live-config>(7)"
44 msgid ""
55 msgstr ""
66 "Project-Id-Version: live-build\n"
7 "POT-Creation-Date: 2014-12-10 08:24+0100\n"
7 "POT-Creation-Date: 2015-08-23 10:57+0200\n"
88 "PO-Revision-Date: 2014-08-28 02:52+0900\n"
99 "Last-Translator: victory <[email protected]>\n"
1010 "Language-Team: none\n"
2525 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
2626 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
2727 #: en/live-build.7:1
28 #, no-wrap
29 msgid "2014-12-10"
30 msgstr ""
31
32 #. type: TH
33 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
34 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
35 #: en/live-build.7:1
36 #, no-wrap
37 msgid "4.0.4-1"
38 msgstr ""
28 #, fuzzy, no-wrap
29 msgid "2015-08-23"
30 msgstr "2015-02-07"
31
32 #. type: TH
33 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
34 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
35 #: en/live-build.7:1
36 #, fuzzy, no-wrap
37 msgid "5.0~a11-1"
38 msgstr "5.0~a3-1"
3939
4040 #. type: TH
4141 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
6363
6464 #. type: SH
6565 #: en/lb.1:11 en/lb_binary.1:9 en/lb_bootstrap.1:9 en/lb_build.1:9
66 #: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:225 en/lb_source.1:9
66 #: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:223 en/lb_source.1:9
6767 #: en/live-build.7:11
6868 #, no-wrap
6969 msgid "DESCRIPTION"
7171
7272 #. type: SH
7373 #: en/lb.1:16 en/lb_binary.1:14 en/lb_bootstrap.1:14 en/lb_build.1:14
74 #: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:234 en/lb_source.1:14
74 #: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:232 en/lb_source.1:14
7575 #: en/live-build.7:20
7676 #, no-wrap
7777 msgid "OPTIONS"
7979
8080 #. type: SH
8181 #: en/lb.1:19 en/lb_binary.1:17 en/lb_bootstrap.1:17 en/lb_build.1:17
82 #: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:466 en/lb_source.1:17
83 #: en/live-build.7:215
82 #: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:462 en/lb_source.1:17
83 #: en/live-build.7:213
8484 #, no-wrap
8585 msgid "FILES"
8686 msgstr "ファイル"
9494
9595 #. type: SH
9696 #: en/lb.1:22 en/lb_binary.1:20 en/lb_bootstrap.1:20 en/lb_build.1:22
97 #: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:473 en/lb_source.1:20
98 #: en/live-build.7:219
97 #: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:469 en/lb_source.1:20
98 #: en/live-build.7:217
9999 #, no-wrap
100100 msgid "SEE ALSO"
101101 msgstr "関連項目"
102102
103103 #. type: Plain text
104104 #: en/lb.1:24 en/lb_binary.1:22 en/lb_bootstrap.1:22 en/lb_build.1:24
105 #: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:475 en/lb_source.1:22
105 #: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:471 en/lb_source.1:22
106106 msgid "I<live-build>(7)"
107107 msgstr "I<live-build>(7)"
108108
109109 #. type: Plain text
110110 #: en/lb.1:26 en/lb_binary.1:24 en/lb_bootstrap.1:24 en/lb_build.1:26
111 #: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:481 en/lb_source.1:24
112 #: en/live-build.7:225
111 #: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:477 en/lb_source.1:24
112 #: en/live-build.7:223
113113 msgid "This program is a part of live-build."
114114 msgstr "このプログラムは live-build の一部です。"
115115
116116 #. type: SH
117117 #: en/lb.1:27 en/lb_binary.1:25 en/lb_bootstrap.1:25 en/lb_build.1:27
118 #: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:482 en/lb_source.1:25
119 #: en/live-build.7:226
118 #: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:478 en/lb_source.1:25
119 #: en/live-build.7:224
120120 #, no-wrap
121121 msgid "HOMEPAGE"
122122 msgstr "ホームページ"
123123
124124 #. type: Plain text
125125 #: en/lb.1:29 en/lb_binary.1:27 en/lb_bootstrap.1:27 en/lb_build.1:29
126 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:484 en/lb_source.1:27
127 #: en/live-build.7:228
126 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:480 en/lb_source.1:27
127 #: en/live-build.7:226
128128 msgid ""
129129 "More information about live-build and the Live Systems project can be found "
130130 "on the homepage at E<lt>I<http://live-systems.org/>E<gt> and in the manual "
136136
137137 #. type: SH
138138 #: en/lb.1:30 en/lb_binary.1:28 en/lb_bootstrap.1:28 en/lb_build.1:30
139 #: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:485 en/lb_source.1:28
140 #: en/live-build.7:229
139 #: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:481 en/lb_source.1:28
140 #: en/live-build.7:227
141141 #, no-wrap
142142 msgid "BUGS"
143143 msgstr "バグ"
144144
145145 #. type: Plain text
146146 #: en/lb.1:32 en/lb_binary.1:30 en/lb_bootstrap.1:30 en/lb_build.1:32
147 #: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:487 en/lb_source.1:30
148 #: en/live-build.7:231
147 #: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:483 en/lb_source.1:30
148 #: en/live-build.7:229
149149 msgid ""
150150 "Bugs can be reported by submitting a bugreport for the live-build package in "
151151 "the Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
159159
160160 #. type: SH
161161 #: en/lb.1:33 en/lb_binary.1:31 en/lb_bootstrap.1:31 en/lb_build.1:33
162 #: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:488 en/lb_source.1:31
163 #: en/live-build.7:232
162 #: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:484 en/lb_source.1:31
163 #: en/live-build.7:230
164164 #, no-wrap
165165 msgid "AUTHOR"
166166 msgstr "作者"
167167
168168 #. type: Plain text
169169 #: en/lb.1:34 en/lb_binary.1:32 en/lb_bootstrap.1:32 en/lb_build.1:34
170 #: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:489 en/lb_source.1:32
171 #: en/live-build.7:233
170 #: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:485 en/lb_source.1:32
171 #: en/live-build.7:231
172172 msgid ""
173173 "live-build was written by Daniel Baumann E<lt>I<[email protected]>E<gt>."
174174 msgstr ""
44 msgid ""
55 msgstr ""
66 "Project-Id-Version: live-build\n"
7 "POT-Creation-Date: 2014-12-10 08:24+0100\n"
7 "POT-Creation-Date: 2015-08-23 10:57+0200\n"
88 "PO-Revision-Date: 2014-08-28 02:52+0900\n"
99 "Last-Translator: victory <[email protected]>\n"
1010 "Language-Team: none\n"
2525 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
2626 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
2727 #: en/live-build.7:1
28 #, no-wrap
29 msgid "2014-12-10"
30 msgstr ""
28 #, fuzzy, no-wrap
29 msgid "2015-08-23"
30 msgstr "2015-02-07"
3131
3232 #. type: TH
3333 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
3434 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
3535 #: en/live-build.7:1
36 #, no-wrap
37 msgid "4.0.4-1"
38 msgstr ""
36 #, fuzzy, no-wrap
37 msgid "5.0~a11-1"
38 msgstr "5.0~a3-1"
3939
4040 #. type: TH
4141 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
6363
6464 #. type: SH
6565 #: en/lb.1:11 en/lb_binary.1:9 en/lb_bootstrap.1:9 en/lb_build.1:9
66 #: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:225 en/lb_source.1:9
66 #: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:223 en/lb_source.1:9
6767 #: en/live-build.7:11
6868 #, no-wrap
6969 msgid "DESCRIPTION"
7171
7272 #. type: SH
7373 #: en/lb.1:16 en/lb_binary.1:14 en/lb_bootstrap.1:14 en/lb_build.1:14
74 #: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:234 en/lb_source.1:14
74 #: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:232 en/lb_source.1:14
7575 #: en/live-build.7:20
7676 #, no-wrap
7777 msgid "OPTIONS"
7979
8080 #. type: SH
8181 #: en/lb.1:19 en/lb_binary.1:17 en/lb_bootstrap.1:17 en/lb_build.1:17
82 #: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:466 en/lb_source.1:17
83 #: en/live-build.7:215
82 #: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:462 en/lb_source.1:17
83 #: en/live-build.7:213
8484 #, no-wrap
8585 msgid "FILES"
8686 msgstr "ファイル"
8787
8888 #. type: SH
8989 #: en/lb.1:22 en/lb_binary.1:20 en/lb_bootstrap.1:20 en/lb_build.1:22
90 #: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:473 en/lb_source.1:20
91 #: en/live-build.7:219
90 #: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:469 en/lb_source.1:20
91 #: en/live-build.7:217
9292 #, no-wrap
9393 msgid "SEE ALSO"
9494 msgstr "関連項目"
9595
9696 #. type: Plain text
9797 #: en/lb.1:26 en/lb_binary.1:24 en/lb_bootstrap.1:24 en/lb_build.1:26
98 #: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:481 en/lb_source.1:24
99 #: en/live-build.7:225
98 #: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:477 en/lb_source.1:24
99 #: en/live-build.7:223
100100 msgid "This program is a part of live-build."
101101 msgstr "このプログラムは live-build の一部です。"
102102
103103 #. type: SH
104104 #: en/lb.1:27 en/lb_binary.1:25 en/lb_bootstrap.1:25 en/lb_build.1:27
105 #: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:482 en/lb_source.1:25
106 #: en/live-build.7:226
105 #: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:478 en/lb_source.1:25
106 #: en/live-build.7:224
107107 #, no-wrap
108108 msgid "HOMEPAGE"
109109 msgstr "ホームページ"
110110
111111 #. type: Plain text
112112 #: en/lb.1:29 en/lb_binary.1:27 en/lb_bootstrap.1:27 en/lb_build.1:29
113 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:484 en/lb_source.1:27
114 #: en/live-build.7:228
113 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:480 en/lb_source.1:27
114 #: en/live-build.7:226
115115 msgid ""
116116 "More information about live-build and the Live Systems project can be found "
117117 "on the homepage at E<lt>I<http://live-systems.org/>E<gt> and in the manual "
123123
124124 #. type: SH
125125 #: en/lb.1:30 en/lb_binary.1:28 en/lb_bootstrap.1:28 en/lb_build.1:30
126 #: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:485 en/lb_source.1:28
127 #: en/live-build.7:229
126 #: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:481 en/lb_source.1:28
127 #: en/live-build.7:227
128128 #, no-wrap
129129 msgid "BUGS"
130130 msgstr "バグ"
131131
132132 #. type: Plain text
133133 #: en/lb.1:32 en/lb_binary.1:30 en/lb_bootstrap.1:30 en/lb_build.1:32
134 #: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:487 en/lb_source.1:30
135 #: en/live-build.7:231
134 #: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:483 en/lb_source.1:30
135 #: en/live-build.7:229
136136 msgid ""
137137 "Bugs can be reported by submitting a bugreport for the live-build package in "
138138 "the Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
146146
147147 #. type: SH
148148 #: en/lb.1:33 en/lb_binary.1:31 en/lb_bootstrap.1:31 en/lb_build.1:33
149 #: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:488 en/lb_source.1:31
150 #: en/live-build.7:232
149 #: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:484 en/lb_source.1:31
150 #: en/live-build.7:230
151151 #, no-wrap
152152 msgid "AUTHOR"
153153 msgstr "作者"
154154
155155 #. type: Plain text
156156 #: en/lb.1:34 en/lb_binary.1:32 en/lb_bootstrap.1:32 en/lb_build.1:34
157 #: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:489 en/lb_source.1:32
158 #: en/live-build.7:233
157 #: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:485 en/lb_source.1:32
158 #: en/live-build.7:231
159159 msgid ""
160160 "live-build was written by Daniel Baumann E<lt>I<[email protected]>E<gt>."
161161 msgstr ""
163163 "書かれました。"
164164
165165 #. type: IP
166 #: en/lb_config.1:306 en/live-build.7:36
166 #: en/lb_config.1:302 en/live-build.7:36
167167 #, no-wrap
168168 msgid "B<--debug>"
169169 msgstr "B<--debug>"
170170
171171 #. type: IP
172 #: en/lb_config.1:318 en/live-build.7:38
172 #: en/lb_config.1:314 en/live-build.7:38
173173 #, no-wrap
174174 msgid "B<--force>"
175175 msgstr "B<--force>"
176176
177177 #. type: IP
178 #: en/lb_config.1:425 en/live-build.7:40
178 #: en/lb_config.1:421 en/live-build.7:40
179179 #, no-wrap
180180 msgid "B<--quiet>"
181181 msgstr "B<--quiet>"
182182
183183 #. type: IP
184 #: en/lb_config.1:455 en/live-build.7:42
184 #: en/lb_config.1:451 en/live-build.7:42
185185 #, no-wrap
186186 msgid "B<--verbose>"
187187 msgstr "B<--verbose>"
188188
189189 #. type: Plain text
190 #: en/lb_config.1:477 en/live-build.7:221
190 #: en/lb_config.1:473 en/live-build.7:219
191191 msgid "I<live-boot>(7)"
192192 msgstr "I<live-boot>(7)"
193193
194194 #. type: Plain text
195 #: en/lb_config.1:479 en/live-build.7:223
195 #: en/lb_config.1:475 en/live-build.7:221
196196 msgid "I<live-config>(7)"
197197 msgstr "I<live-config>(7)"
198198
572572 #. type: IP
573573 #: en/live-build.7:89
574574 #, no-wrap
575 msgid "B<lb_bootstrap_cdebootstrap>(1)"
576 msgstr "B<lb_bootstrap_cdebootstrap>(1)"
577
578 #. type: Plain text
579 #: en/live-build.7:91
580 msgid "bootstrap a Debian system with cdebootstrap(1)"
581 msgstr "cdebootstrap(1) により Debian システムのパッケージ収集を行います"
582
583 #. type: IP
584 #: en/live-build.7:91
585 #, no-wrap
586575 msgid "B<lb_bootstrap_debootstrap>(1)"
587576 msgstr "B<lb_bootstrap_debootstrap>(1)"
588577
589578 #. type: Plain text
590 #: en/live-build.7:93
579 #: en/live-build.7:91
591580 msgid "bootstrap a Debian system with debootstrap(8)"
592581 msgstr "debootstrap(8) により Debian システムのパッケージ収集を行います"
593582
594583 #. type: SS
595 #: en/live-build.7:93
584 #: en/live-build.7:91
596585 #, no-wrap
597586 msgid "Chroot commands"
598587 msgstr "chroot コマンド"
599588
600589 #. type: IP
601 #: en/live-build.7:94
590 #: en/live-build.7:92
602591 #, no-wrap
603592 msgid "B<lb_chroot_apt>(1)"
604593 msgstr "B<lb_chroot_apt>(1)"
605594
606595 #. type: Plain text
607 #: en/live-build.7:96
596 #: en/live-build.7:94
608597 msgid "manage /etc/apt/apt.conf"
609598 msgstr "/etc/apt/apt.conf の管理"
610599
611600 #. type: IP
612 #: en/live-build.7:96
601 #: en/live-build.7:94
613602 #, no-wrap
614603 msgid "B<lb_chroot_cache>(1)"
615604 msgstr "B<lb_chroot_cache>(1)"
616605
617606 #. type: Plain text
618 #: en/live-build.7:98
607 #: en/live-build.7:96
619608 msgid "cache chroot stage"
620609 msgstr "chroot 段階をキャッシュします"
621610
622611 #. type: IP
623 #: en/live-build.7:98
612 #: en/live-build.7:96
624613 #, no-wrap
625614 msgid "B<lb_chroot_debianchroot>(1)"
626615 msgstr "B<lb_chroot_debianchroot>(1)"
627616
628617 #. type: Plain text
629 #: en/live-build.7:100
618 #: en/live-build.7:98
630619 msgid "manage /etc/debian_chroot"
631620 msgstr "/etc/debian_chroot の管理"
632621
633622 #. type: IP
634 #: en/live-build.7:100
623 #: en/live-build.7:98
635624 #, no-wrap
636625 msgid "B<lb_chroot_devpts>(1)"
637626 msgstr "B<lb_chroot_devpts>(1)"
638627
639628 #. type: Plain text
640 #: en/live-build.7:102
629 #: en/live-build.7:100
641630 msgid "mount /dev/pts"
642631 msgstr "/dev/pts をマウントします。"
643632
644633 #. type: IP
645 #: en/live-build.7:102
634 #: en/live-build.7:100
646635 #, no-wrap
647636 msgid "B<lb_chroot_dpkg>(1)"
648637 msgstr "B<lb_chroot_dpkg>(1)"
649638
650639 #. type: Plain text
651 #: en/live-build.7:104
640 #: en/live-build.7:102
652641 msgid "manage /sbin/dpkg"
653642 msgstr "/sbin/dpkg の管理"
654643
655644 #. type: IP
656 #: en/live-build.7:104
645 #: en/live-build.7:102
657646 #, no-wrap
658647 msgid "B<lb_chroot_hacks>(1)"
659648 msgstr "B<lb_chroot_hacks>(1)"
660649
661650 #. type: Plain text
662 #: en/live-build.7:106
651 #: en/live-build.7:104
663652 msgid "execute hacks in chroot"
664653 msgstr "hacks (応急的な操作を行うスクリプト) を chroot で実行します"
665654
666655 #. type: IP
667 #: en/live-build.7:106
656 #: en/live-build.7:104
668657 #, no-wrap
669658 msgid "B<lb_chroot_hostname>(1)"
670659 msgstr "B<lb_chroot_hostname>(1)"
671660
672661 #. type: Plain text
673 #: en/live-build.7:108
662 #: en/live-build.7:106
674663 msgid "manage /bin/hostname"
675664 msgstr "/bin/hostname の管理"
676665
677666 #. type: IP
678 #: en/live-build.7:108
667 #: en/live-build.7:106
679668 #, no-wrap
680669 msgid "B<lb_chroot_hosts>(1)"
681670 msgstr "B<lb_chroot_hosts>(1)"
682671
683672 #. type: Plain text
684 #: en/live-build.7:110
673 #: en/live-build.7:108
685674 msgid "manage /etc/hosts"
686675 msgstr "/etc/hosts の管理"
687676
688677 #. type: IP
689 #: en/live-build.7:110
678 #: en/live-build.7:108
690679 #, no-wrap
691680 msgid "B<lb_chroot_install-packages>(1)"
692681 msgstr "B<lb_chroot_install-packages>(1)"
693682
694683 #. type: Plain text
695 #: en/live-build.7:112
684 #: en/live-build.7:110
696685 msgid "install queued packages into chroot"
697686 msgstr "キューにあるパッケージを chroot にインストールします"
698687
699688 #. type: IP
700 #: en/live-build.7:112
689 #: en/live-build.7:110
701690 #, no-wrap
702691 msgid "B<lb_chroot_interactive>(1)"
703692 msgstr "B<lb_chroot_interactive>(1)"
704693
705694 #. type: Plain text
706 #: en/live-build.7:114
695 #: en/live-build.7:112
707696 msgid "make build interactive"
708697 msgstr "対話的にビルドします"
709698
710699 #. type: IP
711 #: en/live-build.7:114
700 #: en/live-build.7:112
712701 #, no-wrap
713702 msgid "B<lb_chroot_linux-image>(1)"
714703 msgstr "B<lb_chroot_linux-image>(1)"
715704
716705 #. type: Plain text
717 #: en/live-build.7:116
706 #: en/live-build.7:114
718707 msgid "manage /etc/kernel-img.conf"
719708 msgstr "/etc/kernel-img.conf の管理"
720709
721710 #. type: IP
722 #: en/live-build.7:116
711 #: en/live-build.7:114
723712 #, no-wrap
724713 msgid "B<lb_chroot_hooks>(1)"
725714 msgstr "B<lb_chroot_hooks>(1)"
726715
727716 #. type: Plain text
728 #: en/live-build.7:118
717 #: en/live-build.7:116
729718 msgid "execute local hooks in chroot"
730719 msgstr "ローカルフックを chroot で実行します"
731720
732721 #. type: IP
733 #: en/live-build.7:118
722 #: en/live-build.7:116
734723 #, no-wrap
735724 msgid "B<lb_chroot_local-includes>(1)"
736725 msgstr "B<lb_chroot_local-includes>(1)"
737726
738727 #. type: Plain text
739 #: en/live-build.7:120
728 #: en/live-build.7:118
740729 msgid "copy local files into chroot"
741730 msgstr "ローカルファイルを chroot にコピーします"
742731
743732 #. type: IP
744 #: en/live-build.7:120
733 #: en/live-build.7:118
745734 #, no-wrap
746735 msgid "B<lb_chroot_packages>(1)"
747736 msgstr "B<lb_chroot_packages>(1)"
748737
749738 #. type: Plain text
750 #: en/live-build.7:122
739 #: en/live-build.7:120
751740 msgid "queue install of packages into chroot"
752741 msgstr "chroot にインストールするパッケージをキューに追加します"
753742
754743 #. type: IP
755 #: en/live-build.7:122
744 #: en/live-build.7:120
756745 #, no-wrap
757746 msgid "B<lb_chroot_local-patches>(1)"
758747 msgstr "B<lb_chroot_local-patches>(1)"
759748
760749 #. type: Plain text
761 #: en/live-build.7:124
750 #: en/live-build.7:122
762751 msgid "apply local patches against chroot"
763752 msgstr "ローカルのパッチを chroot に適用させます"
764753
765754 #. type: IP
766 #: en/live-build.7:124
755 #: en/live-build.7:122
767756 #, no-wrap
768757 msgid "B<lb_chroot_local-preseed>(1)"
769758 msgstr "B<lb_chroot_local-preseed>(1)"
770759
771760 #. type: Plain text
772 #: en/live-build.7:126
761 #: en/live-build.7:124
773762 msgid "use debconf local preseeding file"
774763 msgstr "ローカルにある debconf の preseed 用ファイルを利用します"
775764
776765 #. type: IP
777 #: en/live-build.7:126
766 #: en/live-build.7:124
778767 #, no-wrap
779768 msgid "B<lb_chroot_packagelists>(1)"
780769 msgstr "B<lb_chroot_packagelists>(1)"
781770
782771 #. type: Plain text
783 #: en/live-build.7:128
772 #: en/live-build.7:126
784773 msgid "queue install of package lists into chroot"
785774 msgstr "chroot にインストールするパッケージ一覧をキューに追加します"
786775
787776 #. type: IP
788 #: en/live-build.7:128
777 #: en/live-build.7:126
789778 #, no-wrap
790779 msgid "B<lb_chroot_proc>(1)"
791780 msgstr "B<lb_chroot_proc>(1)"
792781
793782 #. type: Plain text
794 #: en/live-build.7:130
783 #: en/live-build.7:128
795784 msgid "mount /proc"
796785 msgstr "/proc をマウントします。"
797786
798787 #. type: IP
799 #: en/live-build.7:130
788 #: en/live-build.7:128
800789 #, no-wrap
801790 msgid "B<lb_chroot_resolv>(1)"
802791 msgstr "B<lb_chroot_resolv>(1)"
803792
804793 #. type: Plain text
805 #: en/live-build.7:132
794 #: en/live-build.7:130
806795 msgid "manage /etc/resolv.conf"
807796 msgstr "/etc/resolv.conf の管理"
808797
809798 #. type: IP
810 #: en/live-build.7:132
799 #: en/live-build.7:130
811800 #, no-wrap
812801 msgid "B<lb_chroot_selinuxfs>(1)"
813802 msgstr "B<lb_chroot_selinuxfs>(1)"
814803
815804 #. type: Plain text
816 #: en/live-build.7:134
805 #: en/live-build.7:132
817806 msgid "mount /selinux"
818807 msgstr "/selinux をマウントします。"
819808
820809 #. type: IP
821 #: en/live-build.7:134
810 #: en/live-build.7:132
822811 #, no-wrap
823812 msgid "B<lb_chroot_archives>(1)"
824813 msgstr "B<lb_chroot_archives>(1)"
825814
826815 #. type: Plain text
827 #: en/live-build.7:136
816 #: en/live-build.7:134
828817 msgid "manage /etc/apt/sources.list"
829818 msgstr "/etc/apt/sources.list の管理"
830819
831820 #. type: IP
832 #: en/live-build.7:136
821 #: en/live-build.7:134
833822 #, no-wrap
834823 msgid "B<lb_chroot_sysfs>(1)"
835824 msgstr "B<lb_chroot_sysfs>(1)"
836825
837826 #. type: Plain text
838 #: en/live-build.7:138
827 #: en/live-build.7:136
839828 msgid "mount /sys"
840829 msgstr "/sys をマウントします。"
841830
842831 #. type: IP
843 #: en/live-build.7:138
832 #: en/live-build.7:136
844833 #, no-wrap
845834 msgid "B<lb_chroot_sysv-rc>(1)"
846835 msgstr "B<lb_chroot_sysv-rc>(1)"
847836
848837 #. type: Plain text
849 #: en/live-build.7:140
838 #: en/live-build.7:138
850839 msgid "manage /usr/sbin/policy-rc.d"
851840 msgstr "/usr/sbin/policy-rc.d の管理"
852841
853842 #. type: IP
854 #: en/live-build.7:140
843 #: en/live-build.7:138
855844 #, no-wrap
856845 msgid "B<lb_chroot_task-lists>(1)"
857846 msgstr "B<lb_chroot_task-lists>(1)"
858847
859848 #. type: Plain text
860 #: en/live-build.7:142
849 #: en/live-build.7:140
861850 msgid "install task lists into chroot"
862851 msgstr "タスク一覧を chroot にインストールします"
863852
864853 #. type: SS
865 #: en/live-build.7:142
854 #: en/live-build.7:140
866855 #, no-wrap
867856 msgid "Binary commands"
868857 msgstr "バイナリコマンド"
869858
870859 #. type: IP
871 #: en/live-build.7:143
860 #: en/live-build.7:141
872861 #, no-wrap
873862 msgid "B<lb_binary_chroot>(1)"
874863 msgstr "B<lb_binary_chroot>(1)"
875864
876865 #. type: Plain text
877 #: en/live-build.7:145
866 #: en/live-build.7:143
878867 msgid "copy chroot into chroot"
879868 msgstr "chroot を chroot にコピーします"
880869
881870 #. type: IP
882 #: en/live-build.7:145
871 #: en/live-build.7:143
883872 #, no-wrap
884873 msgid "B<lb_binary_debian-installer>(1)"
885874 msgstr "B<lb_binary_debian-installer>(1)"
886875
887876 #. type: Plain text
888 #: en/live-build.7:147
877 #: en/live-build.7:145
889878 msgid "install debian-installer into binary"
890879 msgstr "debian-installer をバイナリにインストールします"
891880
892881 #. type: IP
893 #: en/live-build.7:147
882 #: en/live-build.7:145
894883 #, no-wrap
895884 msgid "B<lb_binary_disk>(1)"
896885 msgstr "B<lb_binary_disk>(1)"
897886
898887 #. type: Plain text
899 #: en/live-build.7:149
888 #: en/live-build.7:147
900889 msgid "install disk information into binary"
901890 msgstr "ディスク情報をバイナリにインストールします"
902891
903892 #. type: IP
904 #: en/live-build.7:149
893 #: en/live-build.7:147
905894 #, no-wrap
906895 msgid "B<lb_binary_grub>(1)"
907896 msgstr "B<lb_binary_grub>(1)"
908897
909898 #. type: Plain text
910 #: en/live-build.7:151
899 #: en/live-build.7:149
911900 msgid "installs grub into binary"
912901 msgstr "grub をバイナリにインストールします"
913902
914903 #. type: IP
915 #: en/live-build.7:151
904 #: en/live-build.7:149
916905 #, no-wrap
917906 msgid "B<lb_binary_grub2>(1)"
918907 msgstr "B<lb_binary_grub2>(1)"
919908
920909 #. type: Plain text
921 #: en/live-build.7:153
910 #: en/live-build.7:151
922911 msgid "installs grub2 into binary"
923912 msgstr "grub2 をバイナリにインストールします"
924913
925914 #. type: IP
926 #: en/live-build.7:153
915 #: en/live-build.7:151
927916 #, no-wrap
928917 msgid "B<lb_binary_includes>(1)"
929918 msgstr "B<lb_binary_includes>(1)"
930919
931920 #. type: Plain text
932 #: en/live-build.7:155 en/live-build.7:163
921 #: en/live-build.7:153 en/live-build.7:161
933922 msgid "copy files into binary"
934923 msgstr "ファイルをバイナリにコピーします"
935924
936925 #. type: IP
937 #: en/live-build.7:155
926 #: en/live-build.7:153
938927 #, no-wrap
939928 msgid "B<lb_binary_iso>(1)"
940929 msgstr "B<lb_binary_iso>(1)"
941930
942931 #. type: Plain text
943 #: en/live-build.7:157
932 #: en/live-build.7:155
944933 msgid "build iso binary image"
945934 msgstr "ISOバイナリイメージをビルドします"
946935
947936 #. type: IP
948 #: en/live-build.7:157
937 #: en/live-build.7:155
949938 #, no-wrap
950939 msgid "B<lb_binary_linux-image>(1)"
951940 msgstr "B<lb_binary_linux-image>(1)"
952941
953942 #. type: Plain text
954 #: en/live-build.7:159
943 #: en/live-build.7:157
955944 msgid "install linux-image into binary"
956945 msgstr "linux-image をバイナリにインストールします"
957946
958947 #. type: IP
959 #: en/live-build.7:159
948 #: en/live-build.7:157
960949 #, no-wrap
961950 msgid "B<lb_binary_local-hooks>(1)"
962951 msgstr "B<lb_binary_local-hooks>(1)"
963952
964953 #. type: Plain text
965 #: en/live-build.7:161
954 #: en/live-build.7:159
966955 msgid "execute local hooks in binary"
967956 msgstr "ローカルフックをバイナリで実行します"
968957
969958 #. type: IP
970 #: en/live-build.7:161
959 #: en/live-build.7:159
971960 #, no-wrap
972961 msgid "B<lb_binary_local-includes>(1)"
973962 msgstr "B<lb_binary_local-includes>(1)"
974963
975964 #. type: IP
976 #: en/live-build.7:163
965 #: en/live-build.7:161
977966 #, no-wrap
978967 msgid "B<lb_binary_local-packagelists>(1)"
979968 msgstr "B<lb_binary_local-packagelists>(1)"
980969
981970 #. type: Plain text
982 #: en/live-build.7:165
971 #: en/live-build.7:163
983972 msgid "install local package lists into binary"
984973 msgstr "ローカルパッケージ一覧をバイナリにインストールします"
985974
986975 #. type: IP
987 #: en/live-build.7:165
976 #: en/live-build.7:163
988977 #, no-wrap
989978 msgid "B<lb_binary_manifest>(1)"
990979 msgstr "B<lb_binary_manifest>(1)"
991980
992981 #. type: Plain text
993 #: en/live-build.7:167
982 #: en/live-build.7:165
994983 msgid "create manifest"
995984 msgstr "名簿ファイルを作成します"
996985
997986 #. type: IP
998 #: en/live-build.7:167
987 #: en/live-build.7:165
999988 #, no-wrap
1000989 msgid "B<lb_binary_checksums>(1)"
1001990 msgstr "B<lb_binary_checksums>(1)"
1002991
1003992 #. type: Plain text
1004 #: en/live-build.7:169
993 #: en/live-build.7:167
1005994 msgid "create binary checksums (md5, sha1, and/or sha256)"
1006995 msgstr "バイナリのチェックサム (md5、sha1、sha256 のどれか) を作成します"
1007996
1008997 #. type: IP
1009 #: en/live-build.7:169
998 #: en/live-build.7:167
1010999 #, no-wrap
10111000 msgid "B<lb_binary_memtest>(1)"
10121001 msgstr "B<lb_binary_memtest>(1)"
10131002
10141003 #. type: Plain text
1015 #: en/live-build.7:171
1004 #: en/live-build.7:169
10161005 msgid "installs a memtest into binary"
10171006 msgstr "memtest をバイナリにインストールします"
10181007
10191008 #. type: IP
1020 #: en/live-build.7:171
1009 #: en/live-build.7:169
10211010 #, no-wrap
10221011 msgid "B<lb_binary_net>(1)"
10231012 msgstr "B<lb_binary_net>(1)"
10241013
10251014 #. type: Plain text
1026 #: en/live-build.7:173
1015 #: en/live-build.7:171
10271016 msgid "build netboot binary image"
10281017 msgstr "ネットワークブート用バイナリイメージをビルドします"
10291018
10301019 #. type: IP
1031 #: en/live-build.7:173
1020 #: en/live-build.7:171
10321021 #, no-wrap
10331022 msgid "B<lb_binary_rootfs>(1)"
10341023 msgstr "B<lb_binary_rootfs>(1)"
10351024
10361025 #. type: Plain text
1037 #: en/live-build.7:175
1026 #: en/live-build.7:173
10381027 msgid "build rootfs image"
10391028 msgstr "rootfs イメージをビルドします"
10401029
10411030 #. type: IP
1042 #: en/live-build.7:175
1031 #: en/live-build.7:173
10431032 #, no-wrap
10441033 msgid "B<lb_binary_syslinux>(1)"
10451034 msgstr "B<lb_binary_syslinux>(1)"
10461035
10471036 #. type: Plain text
1048 #: en/live-build.7:177
1037 #: en/live-build.7:175
10491038 msgid "installs syslinux into binary"
10501039 msgstr "syslinux をバイナリにインストールします"
10511040
10521041 #. type: IP
1053 #: en/live-build.7:177
1042 #: en/live-build.7:175
10541043 #, no-wrap
10551044 msgid "B<lb_binary_tar>(1)"
10561045 msgstr "B<lb_binary_tar>(1)"
10571046
10581047 #. type: Plain text
1059 #: en/live-build.7:179
1048 #: en/live-build.7:177
10601049 msgid "build harddisk binary image"
10611050 msgstr "ハードディスクバイナリイメージをビルドします"
10621051
10631052 #. type: IP
1064 #: en/live-build.7:179
1053 #: en/live-build.7:177
10651054 #, no-wrap
10661055 msgid "B<lb_binary_hdd>(1)"
10671056 msgstr "B<lb_binary_hdd>(1)"
10681057
10691058 #. type: Plain text
1070 #: en/live-build.7:181
1059 #: en/live-build.7:179
10711060 msgid "build binary hdd image"
10721061 msgstr "バイナリhddイメージをビルドします"
10731062
10741063 #. type: IP
1075 #: en/live-build.7:181
1064 #: en/live-build.7:179
10761065 #, no-wrap
10771066 msgid "B<lb_binary_win32-loader>(1)"
10781067 msgstr "B<lb_binary_win32-loader>(1)"
10791068
10801069 #. type: Plain text
1081 #: en/live-build.7:183
1070 #: en/live-build.7:181
10821071 msgid "installs win32-loader into binary"
10831072 msgstr "win32-loader をバイナリにインストールします"
10841073
10851074 #. type: SS
1086 #: en/live-build.7:183
1075 #: en/live-build.7:181
10871076 #, no-wrap
10881077 msgid "Source commands"
10891078 msgstr "ソースコマンド"
10901079
10911080 #. type: IP
1092 #: en/live-build.7:184
1081 #: en/live-build.7:182
10931082 #, no-wrap
10941083 msgid "B<lb_source_debian>(1)"
10951084 msgstr "B<lb_source_debian>(1)"
10961085
10971086 #. type: Plain text
1098 #: en/live-build.7:186
1087 #: en/live-build.7:184
10991088 msgid "download sources"
11001089 msgstr "ソースをダウンロードします"
11011090
11021091 #. type: IP
1103 #: en/live-build.7:186
1092 #: en/live-build.7:184
11041093 #, no-wrap
11051094 msgid "B<lb_source_debian-live>(1)"
11061095 msgstr "B<lb_source_debian-live>(1)"
11071096
11081097 #. type: Plain text
1109 #: en/live-build.7:188
1098 #: en/live-build.7:186
11101099 msgid "copy debian-live config into source"
11111100 msgstr "debian-live の設定をソースにコピーします。"
11121101
11131102 #. type: IP
1114 #: en/live-build.7:188
1103 #: en/live-build.7:186
11151104 #, no-wrap
11161105 msgid "B<lb_source_disk>(1)"
11171106 msgstr "B<lb_source_disk>(1)"
11181107
11191108 #. type: Plain text
1120 #: en/live-build.7:190
1109 #: en/live-build.7:188
11211110 msgid "install disk information into source"
11221111 msgstr "ディスク情報をソースにインストールします"
11231112
11241113 #. type: IP
1125 #: en/live-build.7:190
1114 #: en/live-build.7:188
11261115 #, no-wrap
11271116 msgid "B<lb_source_iso>(1)"
11281117 msgstr "B<lb_source_iso>(1)"
11291118
11301119 #. type: Plain text
1131 #: en/live-build.7:192
1120 #: en/live-build.7:190
11321121 msgid "build iso source image"
11331122 msgstr "ISOソースイメージをビルドします"
11341123
11351124 #. type: IP
1136 #: en/live-build.7:192
1125 #: en/live-build.7:190
11371126 #, no-wrap
11381127 msgid "B<lb_source_checksums>(1)"
11391128 msgstr "B<lb_source_checksums>(1)"
11401129
11411130 #. type: Plain text
1142 #: en/live-build.7:194
1131 #: en/live-build.7:192
11431132 msgid "create source checksums (md5, sha1, and/or sha256)"
11441133 msgstr "ソースのチェックサム (md5、sha1、sha256 のどれか) を作成します"
11451134
11461135 #. type: IP
1147 #: en/live-build.7:194
1136 #: en/live-build.7:192
11481137 #, no-wrap
11491138 msgid "B<lb_source_net>(1)"
11501139 msgstr "B<lb_source_net>(1)"
11511140
11521141 #. type: Plain text
1153 #: en/live-build.7:196
1142 #: en/live-build.7:194
11541143 msgid "build source net image"
11551144 msgstr ""
11561145
11571146 #. type: IP
1158 #: en/live-build.7:196
1147 #: en/live-build.7:194
11591148 #, no-wrap
11601149 msgid "B<lb_source_tar>(1)"
11611150 msgstr "B<lb_source_tar>(1)"
11621151
11631152 #. type: Plain text
1164 #: en/live-build.7:198
1153 #: en/live-build.7:196
11651154 msgid "build source tarball"
11661155 msgstr "ソースの tar アーカイブをビルドします"
11671156
11681157 #. type: IP
1169 #: en/live-build.7:198
1158 #: en/live-build.7:196
11701159 #, no-wrap
11711160 msgid "B<lb_source_hdd>(1)"
11721161 msgstr "B<lb_source_hdd>(1)"
11731162
11741163 #. FIXME
11751164 #. type: Plain text
1176 #: en/live-build.7:201
1165 #: en/live-build.7:199
11771166 msgid "build source hdd image"
11781167 msgstr "ソースhddイメージをビルドします"
11791168
11801169 #. type: SH
1181 #: en/live-build.7:202
1170 #: en/live-build.7:200
11821171 #, no-wrap
11831172 msgid "CONFIG FILES"
11841173 msgstr "設定ファイル"
11851174
11861175 #. FIXME
11871176 #. type: Plain text
1188 #: en/live-build.7:205
1177 #: en/live-build.7:203
11891178 msgid ""
11901179 "Many live-build commands make use of files in the I<config/> directory to "
11911180 "control what they do. Besides the common I<config/common>, which is used by "
12031192 "にわずかに複雑な方法を採っているものがあります。"
12041193
12051194 #. type: Plain text
1206 #: en/live-build.7:207
1195 #: en/live-build.7:205
12071196 msgid ""
12081197 "For example, lb_bootstrap_debootstrap uses files named config/bootstrap and "
12091198 "config/bootstrap_debootstrap to read the options it will use. See the man "
12201209 "にわずかに複雑な方法を採っているものがあります。"
12211210
12221211 #. type: Plain text
1223 #: en/live-build.7:209
1212 #: en/live-build.7:207
12241213 msgid ""
12251214 "Note that live-build will respect environment variables which are present in "
12261215 "the context of the shell it is running. If variables can be read from config "
12361225 "自動的にデフォルト値をセットします。"
12371226
12381227 #. type: Plain text
1239 #: en/live-build.7:211
1228 #: en/live-build.7:209
12401229 msgid ""
12411230 "In some rare cases, you may want to have different versions of these files "
12421231 "for different architectures or distributions. If files named config/stage."
12571246
12581247 #. FIXME
12591248 #. type: Plain text
1260 #: en/live-build.7:214
1249 #: en/live-build.7:212
12611250 msgid ""
12621251 "All config files are shell scripts which are sourced by a live-build "
12631252 "program. That means they have to follow the normal shell syntax. You can "
12691258 "す。"
12701259
12711260 #. type: IP
1272 #: en/live-build.7:216
1261 #: en/live-build.7:214
12731262 #, no-wrap
12741263 msgid "B</etc/live/build.conf>"
12751264 msgstr "B</etc/live/build.conf>"
12761265
12771266 #. type: IP
1278 #: en/live-build.7:217
1267 #: en/live-build.7:215
12791268 #, no-wrap
12801269 msgid "B</etc/live/build/*>"
12811270 msgstr "B</etc/live/build/*>"
55 #, fuzzy
66 msgid ""
77 msgstr ""
8 "Project-Id-Version: live-build 4.0.4-1\n"
9 "POT-Creation-Date: 2014-12-10 08:24+0100\n"
8 "Project-Id-Version: live-build 5.0~a11-1\n"
9 "POT-Creation-Date: 2015-08-23 10:57+0200\n"
1010 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1111 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1212 "Language-Team: LANGUAGE <[email protected]>\n"
2828 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
2929 #: en/live-build.7:1
3030 #, no-wrap
31 msgid "2014-12-10"
32 msgstr ""
33
34 #. type: TH
35 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
36 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
37 #: en/live-build.7:1
38 #, no-wrap
39 msgid "4.0.4-1"
31 msgid "2015-08-23"
32 msgstr ""
33
34 #. type: TH
35 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
36 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
37 #: en/live-build.7:1
38 #, no-wrap
39 msgid "5.0~a11-1"
4040 msgstr ""
4141
4242 #. type: TH
8080
8181 #. type: SH
8282 #: en/lb.1:11 en/lb_binary.1:9 en/lb_bootstrap.1:9 en/lb_build.1:9
83 #: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:225 en/lb_source.1:9
83 #: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:223 en/lb_source.1:9
8484 #: en/live-build.7:11
8585 #, no-wrap
8686 msgid "DESCRIPTION"
9595
9696 #. type: SH
9797 #: en/lb.1:16 en/lb_binary.1:14 en/lb_bootstrap.1:14 en/lb_build.1:14
98 #: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:234 en/lb_source.1:14
98 #: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:232 en/lb_source.1:14
9999 #: en/live-build.7:20
100100 #, no-wrap
101101 msgid "OPTIONS"
111111
112112 #. type: SH
113113 #: en/lb.1:19 en/lb_binary.1:17 en/lb_bootstrap.1:17 en/lb_build.1:17
114 #: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:466 en/lb_source.1:17
115 #: en/live-build.7:215
114 #: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:462 en/lb_source.1:17
115 #: en/live-build.7:213
116116 #, no-wrap
117117 msgid "FILES"
118118 msgstr ""
126126
127127 #. type: SH
128128 #: en/lb.1:22 en/lb_binary.1:20 en/lb_bootstrap.1:20 en/lb_build.1:22
129 #: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:473 en/lb_source.1:20
130 #: en/live-build.7:219
129 #: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:469 en/lb_source.1:20
130 #: en/live-build.7:217
131131 #, no-wrap
132132 msgid "SEE ALSO"
133133 msgstr ""
134134
135135 #. type: Plain text
136136 #: en/lb.1:24 en/lb_binary.1:22 en/lb_bootstrap.1:22 en/lb_build.1:24
137 #: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:475 en/lb_source.1:22
137 #: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:471 en/lb_source.1:22
138138 msgid "I<live-build>(7)"
139139 msgstr ""
140140
141141 #. type: Plain text
142142 #: en/lb.1:26 en/lb_binary.1:24 en/lb_bootstrap.1:24 en/lb_build.1:26
143 #: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:481 en/lb_source.1:24
144 #: en/live-build.7:225
143 #: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:477 en/lb_source.1:24
144 #: en/live-build.7:223
145145 msgid "This program is a part of live-build."
146146 msgstr ""
147147
148148 #. type: SH
149149 #: en/lb.1:27 en/lb_binary.1:25 en/lb_bootstrap.1:25 en/lb_build.1:27
150 #: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:482 en/lb_source.1:25
150 #: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:478 en/lb_source.1:25
151 #: en/live-build.7:224
152 #, no-wrap
153 msgid "HOMEPAGE"
154 msgstr ""
155
156 #. type: Plain text
157 #: en/lb.1:29 en/lb_binary.1:27 en/lb_bootstrap.1:27 en/lb_build.1:29
158 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:480 en/lb_source.1:27
151159 #: en/live-build.7:226
152 #, no-wrap
153 msgid "HOMEPAGE"
154 msgstr ""
155
156 #. type: Plain text
157 #: en/lb.1:29 en/lb_binary.1:27 en/lb_bootstrap.1:27 en/lb_build.1:29
158 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:484 en/lb_source.1:27
159 #: en/live-build.7:228
160160 msgid ""
161161 "More information about live-build and the Live Systems project can be found "
162162 "on the homepage at E<lt>I<http://live-systems.org/>E<gt> and in the manual "
165165
166166 #. type: SH
167167 #: en/lb.1:30 en/lb_binary.1:28 en/lb_bootstrap.1:28 en/lb_build.1:30
168 #: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:485 en/lb_source.1:28
168 #: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:481 en/lb_source.1:28
169 #: en/live-build.7:227
170 #, no-wrap
171 msgid "BUGS"
172 msgstr ""
173
174 #. type: Plain text
175 #: en/lb.1:32 en/lb_binary.1:30 en/lb_bootstrap.1:30 en/lb_build.1:32
176 #: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:483 en/lb_source.1:30
169177 #: en/live-build.7:229
170 #, no-wrap
171 msgid "BUGS"
172 msgstr ""
173
174 #. type: Plain text
175 #: en/lb.1:32 en/lb_binary.1:30 en/lb_bootstrap.1:30 en/lb_build.1:32
176 #: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:487 en/lb_source.1:30
177 #: en/live-build.7:231
178178 msgid ""
179179 "Bugs can be reported by submitting a bugreport for the live-build package in "
180180 "the Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
184184
185185 #. type: SH
186186 #: en/lb.1:33 en/lb_binary.1:31 en/lb_bootstrap.1:31 en/lb_build.1:33
187 #: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:488 en/lb_source.1:31
188 #: en/live-build.7:232
187 #: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:484 en/lb_source.1:31
188 #: en/live-build.7:230
189189 #, no-wrap
190190 msgid "AUTHOR"
191191 msgstr ""
192192
193193 #. type: Plain text
194194 #: en/lb.1:34 en/lb_binary.1:32 en/lb_bootstrap.1:32 en/lb_build.1:34
195 #: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:489 en/lb_source.1:32
196 #: en/live-build.7:233
195 #: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:485 en/lb_source.1:32
196 #: en/live-build.7:231
197197 msgid ""
198198 "live-build was written by Daniel Baumann E<lt>I<[email protected]>E<gt>."
199199 msgstr ""
55 #, fuzzy
66 msgid ""
77 msgstr ""
8 "Project-Id-Version: live-build 4.0.4-1\n"
9 "POT-Creation-Date: 2014-12-10 08:24+0100\n"
8 "Project-Id-Version: live-build 5.0~a11-1\n"
9 "POT-Creation-Date: 2015-08-23 10:57+0200\n"
1010 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1111 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1212 "Language-Team: LANGUAGE <[email protected]>\n"
2828 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
2929 #: en/live-build.7:1
3030 #, no-wrap
31 msgid "2014-12-10"
32 msgstr ""
33
34 #. type: TH
35 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
36 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
37 #: en/live-build.7:1
38 #, no-wrap
39 msgid "4.0.4-1"
31 msgid "2015-08-23"
32 msgstr ""
33
34 #. type: TH
35 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
36 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
37 #: en/live-build.7:1
38 #, no-wrap
39 msgid "5.0~a11-1"
4040 msgstr ""
4141
4242 #. type: TH
6565
6666 #. type: SH
6767 #: en/lb.1:11 en/lb_binary.1:9 en/lb_bootstrap.1:9 en/lb_build.1:9
68 #: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:225 en/lb_source.1:9
68 #: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:223 en/lb_source.1:9
6969 #: en/live-build.7:11
7070 #, no-wrap
7171 msgid "DESCRIPTION"
7373
7474 #. type: SH
7575 #: en/lb.1:16 en/lb_binary.1:14 en/lb_bootstrap.1:14 en/lb_build.1:14
76 #: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:234 en/lb_source.1:14
76 #: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:232 en/lb_source.1:14
7777 #: en/live-build.7:20
7878 #, no-wrap
7979 msgid "OPTIONS"
8181
8282 #. type: SH
8383 #: en/lb.1:19 en/lb_binary.1:17 en/lb_bootstrap.1:17 en/lb_build.1:17
84 #: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:466 en/lb_source.1:17
85 #: en/live-build.7:215
84 #: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:462 en/lb_source.1:17
85 #: en/live-build.7:213
8686 #, no-wrap
8787 msgid "FILES"
8888 msgstr ""
9696
9797 #. type: SH
9898 #: en/lb.1:22 en/lb_binary.1:20 en/lb_bootstrap.1:20 en/lb_build.1:22
99 #: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:473 en/lb_source.1:20
100 #: en/live-build.7:219
99 #: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:469 en/lb_source.1:20
100 #: en/live-build.7:217
101101 #, no-wrap
102102 msgid "SEE ALSO"
103103 msgstr ""
104104
105105 #. type: Plain text
106106 #: en/lb.1:24 en/lb_binary.1:22 en/lb_bootstrap.1:22 en/lb_build.1:24
107 #: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:475 en/lb_source.1:22
107 #: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:471 en/lb_source.1:22
108108 msgid "I<live-build>(7)"
109109 msgstr ""
110110
111111 #. type: Plain text
112112 #: en/lb.1:26 en/lb_binary.1:24 en/lb_bootstrap.1:24 en/lb_build.1:26
113 #: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:481 en/lb_source.1:24
114 #: en/live-build.7:225
113 #: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:477 en/lb_source.1:24
114 #: en/live-build.7:223
115115 msgid "This program is a part of live-build."
116116 msgstr ""
117117
118118 #. type: SH
119119 #: en/lb.1:27 en/lb_binary.1:25 en/lb_bootstrap.1:25 en/lb_build.1:27
120 #: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:482 en/lb_source.1:25
120 #: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:478 en/lb_source.1:25
121 #: en/live-build.7:224
122 #, no-wrap
123 msgid "HOMEPAGE"
124 msgstr ""
125
126 #. type: Plain text
127 #: en/lb.1:29 en/lb_binary.1:27 en/lb_bootstrap.1:27 en/lb_build.1:29
128 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:480 en/lb_source.1:27
121129 #: en/live-build.7:226
122 #, no-wrap
123 msgid "HOMEPAGE"
124 msgstr ""
125
126 #. type: Plain text
127 #: en/lb.1:29 en/lb_binary.1:27 en/lb_bootstrap.1:27 en/lb_build.1:29
128 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:484 en/lb_source.1:27
129 #: en/live-build.7:228
130130 msgid ""
131131 "More information about live-build and the Live Systems project can be found "
132132 "on the homepage at E<lt>I<http://live-systems.org/>E<gt> and in the manual "
135135
136136 #. type: SH
137137 #: en/lb.1:30 en/lb_binary.1:28 en/lb_bootstrap.1:28 en/lb_build.1:30
138 #: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:485 en/lb_source.1:28
138 #: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:481 en/lb_source.1:28
139 #: en/live-build.7:227
140 #, no-wrap
141 msgid "BUGS"
142 msgstr ""
143
144 #. type: Plain text
145 #: en/lb.1:32 en/lb_binary.1:30 en/lb_bootstrap.1:30 en/lb_build.1:32
146 #: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:483 en/lb_source.1:30
139147 #: en/live-build.7:229
140 #, no-wrap
141 msgid "BUGS"
142 msgstr ""
143
144 #. type: Plain text
145 #: en/lb.1:32 en/lb_binary.1:30 en/lb_bootstrap.1:30 en/lb_build.1:32
146 #: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:487 en/lb_source.1:30
147 #: en/live-build.7:231
148148 msgid ""
149149 "Bugs can be reported by submitting a bugreport for the live-build package in "
150150 "the Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
154154
155155 #. type: SH
156156 #: en/lb.1:33 en/lb_binary.1:31 en/lb_bootstrap.1:31 en/lb_build.1:33
157 #: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:488 en/lb_source.1:31
158 #: en/live-build.7:232
157 #: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:484 en/lb_source.1:31
158 #: en/live-build.7:230
159159 #, no-wrap
160160 msgid "AUTHOR"
161161 msgstr ""
162162
163163 #. type: Plain text
164164 #: en/lb.1:34 en/lb_binary.1:32 en/lb_bootstrap.1:32 en/lb_build.1:34
165 #: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:489 en/lb_source.1:32
166 #: en/live-build.7:233
165 #: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:485 en/lb_source.1:32
166 #: en/live-build.7:231
167167 msgid ""
168168 "live-build was written by Daniel Baumann E<lt>I<[email protected]>E<gt>."
169169 msgstr ""
55 #, fuzzy
66 msgid ""
77 msgstr ""
8 "Project-Id-Version: live-build 4.0.4-1\n"
9 "POT-Creation-Date: 2014-12-10 08:24+0100\n"
8 "Project-Id-Version: live-build 5.0~a11-1\n"
9 "POT-Creation-Date: 2015-08-23 10:57+0200\n"
1010 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1111 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1212 "Language-Team: LANGUAGE <[email protected]>\n"
2828 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
2929 #: en/live-build.7:1
3030 #, no-wrap
31 msgid "2014-12-10"
32 msgstr ""
33
34 #. type: TH
35 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
36 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
37 #: en/live-build.7:1
38 #, no-wrap
39 msgid "4.0.4-1"
31 msgid "2015-08-23"
32 msgstr ""
33
34 #. type: TH
35 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
36 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
37 #: en/live-build.7:1
38 #, no-wrap
39 msgid "5.0~a11-1"
4040 msgstr ""
4141
4242 #. type: TH
6565
6666 #. type: SH
6767 #: en/lb.1:11 en/lb_binary.1:9 en/lb_bootstrap.1:9 en/lb_build.1:9
68 #: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:225 en/lb_source.1:9
68 #: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:223 en/lb_source.1:9
6969 #: en/live-build.7:11
7070 #, no-wrap
7171 msgid "DESCRIPTION"
7373
7474 #. type: SH
7575 #: en/lb.1:16 en/lb_binary.1:14 en/lb_bootstrap.1:14 en/lb_build.1:14
76 #: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:234 en/lb_source.1:14
76 #: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:232 en/lb_source.1:14
7777 #: en/live-build.7:20
7878 #, no-wrap
7979 msgid "OPTIONS"
8181
8282 #. type: SH
8383 #: en/lb.1:19 en/lb_binary.1:17 en/lb_bootstrap.1:17 en/lb_build.1:17
84 #: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:466 en/lb_source.1:17
85 #: en/live-build.7:215
84 #: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:462 en/lb_source.1:17
85 #: en/live-build.7:213
8686 #, no-wrap
8787 msgid "FILES"
8888 msgstr ""
9696
9797 #. type: SH
9898 #: en/lb.1:22 en/lb_binary.1:20 en/lb_bootstrap.1:20 en/lb_build.1:22
99 #: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:473 en/lb_source.1:20
100 #: en/live-build.7:219
99 #: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:469 en/lb_source.1:20
100 #: en/live-build.7:217
101101 #, no-wrap
102102 msgid "SEE ALSO"
103103 msgstr ""
104104
105105 #. type: Plain text
106106 #: en/lb.1:24 en/lb_binary.1:22 en/lb_bootstrap.1:22 en/lb_build.1:24
107 #: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:475 en/lb_source.1:22
107 #: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:471 en/lb_source.1:22
108108 msgid "I<live-build>(7)"
109109 msgstr ""
110110
111111 #. type: Plain text
112112 #: en/lb.1:26 en/lb_binary.1:24 en/lb_bootstrap.1:24 en/lb_build.1:26
113 #: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:481 en/lb_source.1:24
114 #: en/live-build.7:225
113 #: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:477 en/lb_source.1:24
114 #: en/live-build.7:223
115115 msgid "This program is a part of live-build."
116116 msgstr ""
117117
118118 #. type: SH
119119 #: en/lb.1:27 en/lb_binary.1:25 en/lb_bootstrap.1:25 en/lb_build.1:27
120 #: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:482 en/lb_source.1:25
120 #: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:478 en/lb_source.1:25
121 #: en/live-build.7:224
122 #, no-wrap
123 msgid "HOMEPAGE"
124 msgstr ""
125
126 #. type: Plain text
127 #: en/lb.1:29 en/lb_binary.1:27 en/lb_bootstrap.1:27 en/lb_build.1:29
128 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:480 en/lb_source.1:27
121129 #: en/live-build.7:226
122 #, no-wrap
123 msgid "HOMEPAGE"
124 msgstr ""
125
126 #. type: Plain text
127 #: en/lb.1:29 en/lb_binary.1:27 en/lb_bootstrap.1:27 en/lb_build.1:29
128 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:484 en/lb_source.1:27
129 #: en/live-build.7:228
130130 msgid ""
131131 "More information about live-build and the Live Systems project can be found "
132132 "on the homepage at E<lt>I<http://live-systems.org/>E<gt> and in the manual "
135135
136136 #. type: SH
137137 #: en/lb.1:30 en/lb_binary.1:28 en/lb_bootstrap.1:28 en/lb_build.1:30
138 #: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:485 en/lb_source.1:28
138 #: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:481 en/lb_source.1:28
139 #: en/live-build.7:227
140 #, no-wrap
141 msgid "BUGS"
142 msgstr ""
143
144 #. type: Plain text
145 #: en/lb.1:32 en/lb_binary.1:30 en/lb_bootstrap.1:30 en/lb_build.1:32
146 #: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:483 en/lb_source.1:30
139147 #: en/live-build.7:229
140 #, no-wrap
141 msgid "BUGS"
142 msgstr ""
143
144 #. type: Plain text
145 #: en/lb.1:32 en/lb_binary.1:30 en/lb_bootstrap.1:30 en/lb_build.1:32
146 #: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:487 en/lb_source.1:30
147 #: en/live-build.7:231
148148 msgid ""
149149 "Bugs can be reported by submitting a bugreport for the live-build package in "
150150 "the Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
154154
155155 #. type: SH
156156 #: en/lb.1:33 en/lb_binary.1:31 en/lb_bootstrap.1:31 en/lb_build.1:33
157 #: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:488 en/lb_source.1:31
158 #: en/live-build.7:232
157 #: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:484 en/lb_source.1:31
158 #: en/live-build.7:230
159159 #, no-wrap
160160 msgid "AUTHOR"
161161 msgstr ""
162162
163163 #. type: Plain text
164164 #: en/lb.1:34 en/lb_binary.1:32 en/lb_bootstrap.1:32 en/lb_build.1:34
165 #: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:489 en/lb_source.1:32
166 #: en/live-build.7:233
165 #: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:485 en/lb_source.1:32
166 #: en/live-build.7:231
167167 msgid ""
168168 "live-build was written by Daniel Baumann E<lt>I<[email protected]>E<gt>."
169169 msgstr ""
55 #, fuzzy
66 msgid ""
77 msgstr ""
8 "Project-Id-Version: live-build 4.0.4-1\n"
9 "POT-Creation-Date: 2014-12-10 08:24+0100\n"
8 "Project-Id-Version: live-build 5.0~a11-1\n"
9 "POT-Creation-Date: 2015-08-23 10:57+0200\n"
1010 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1111 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1212 "Language-Team: LANGUAGE <[email protected]>\n"
2828 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
2929 #: en/live-build.7:1
3030 #, no-wrap
31 msgid "2014-12-10"
32 msgstr ""
33
34 #. type: TH
35 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
36 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
37 #: en/live-build.7:1
38 #, no-wrap
39 msgid "4.0.4-1"
31 msgid "2015-08-23"
32 msgstr ""
33
34 #. type: TH
35 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
36 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
37 #: en/live-build.7:1
38 #, no-wrap
39 msgid "5.0~a11-1"
4040 msgstr ""
4141
4242 #. type: TH
6565
6666 #. type: SH
6767 #: en/lb.1:11 en/lb_binary.1:9 en/lb_bootstrap.1:9 en/lb_build.1:9
68 #: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:225 en/lb_source.1:9
68 #: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:223 en/lb_source.1:9
6969 #: en/live-build.7:11
7070 #, no-wrap
7171 msgid "DESCRIPTION"
7373
7474 #. type: SH
7575 #: en/lb.1:16 en/lb_binary.1:14 en/lb_bootstrap.1:14 en/lb_build.1:14
76 #: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:234 en/lb_source.1:14
76 #: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:232 en/lb_source.1:14
7777 #: en/live-build.7:20
7878 #, no-wrap
7979 msgid "OPTIONS"
8181
8282 #. type: SH
8383 #: en/lb.1:19 en/lb_binary.1:17 en/lb_bootstrap.1:17 en/lb_build.1:17
84 #: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:466 en/lb_source.1:17
85 #: en/live-build.7:215
84 #: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:462 en/lb_source.1:17
85 #: en/live-build.7:213
8686 #, no-wrap
8787 msgid "FILES"
8888 msgstr ""
8989
9090 #. type: SH
9191 #: en/lb.1:22 en/lb_binary.1:20 en/lb_bootstrap.1:20 en/lb_build.1:22
92 #: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:473 en/lb_source.1:20
93 #: en/live-build.7:219
92 #: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:469 en/lb_source.1:20
93 #: en/live-build.7:217
9494 #, no-wrap
9595 msgid "SEE ALSO"
9696 msgstr ""
9797
9898 #. type: Plain text
9999 #: en/lb.1:24 en/lb_binary.1:22 en/lb_bootstrap.1:22 en/lb_build.1:24
100 #: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:475 en/lb_source.1:22
100 #: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:471 en/lb_source.1:22
101101 msgid "I<live-build>(7)"
102102 msgstr ""
103103
104104 #. type: Plain text
105105 #: en/lb.1:26 en/lb_binary.1:24 en/lb_bootstrap.1:24 en/lb_build.1:26
106 #: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:481 en/lb_source.1:24
107 #: en/live-build.7:225
106 #: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:477 en/lb_source.1:24
107 #: en/live-build.7:223
108108 msgid "This program is a part of live-build."
109109 msgstr ""
110110
111111 #. type: SH
112112 #: en/lb.1:27 en/lb_binary.1:25 en/lb_bootstrap.1:25 en/lb_build.1:27
113 #: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:482 en/lb_source.1:25
113 #: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:478 en/lb_source.1:25
114 #: en/live-build.7:224
115 #, no-wrap
116 msgid "HOMEPAGE"
117 msgstr ""
118
119 #. type: Plain text
120 #: en/lb.1:29 en/lb_binary.1:27 en/lb_bootstrap.1:27 en/lb_build.1:29
121 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:480 en/lb_source.1:27
114122 #: en/live-build.7:226
115 #, no-wrap
116 msgid "HOMEPAGE"
117 msgstr ""
118
119 #. type: Plain text
120 #: en/lb.1:29 en/lb_binary.1:27 en/lb_bootstrap.1:27 en/lb_build.1:29
121 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:484 en/lb_source.1:27
122 #: en/live-build.7:228
123123 msgid ""
124124 "More information about live-build and the Live Systems project can be found "
125125 "on the homepage at E<lt>I<http://live-systems.org/>E<gt> and in the manual "
128128
129129 #. type: SH
130130 #: en/lb.1:30 en/lb_binary.1:28 en/lb_bootstrap.1:28 en/lb_build.1:30
131 #: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:485 en/lb_source.1:28
131 #: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:481 en/lb_source.1:28
132 #: en/live-build.7:227
133 #, no-wrap
134 msgid "BUGS"
135 msgstr ""
136
137 #. type: Plain text
138 #: en/lb.1:32 en/lb_binary.1:30 en/lb_bootstrap.1:30 en/lb_build.1:32
139 #: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:483 en/lb_source.1:30
132140 #: en/live-build.7:229
133 #, no-wrap
134 msgid "BUGS"
135 msgstr ""
136
137 #. type: Plain text
138 #: en/lb.1:32 en/lb_binary.1:30 en/lb_bootstrap.1:30 en/lb_build.1:32
139 #: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:487 en/lb_source.1:30
140 #: en/live-build.7:231
141141 msgid ""
142142 "Bugs can be reported by submitting a bugreport for the live-build package in "
143143 "the Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
147147
148148 #. type: SH
149149 #: en/lb.1:33 en/lb_binary.1:31 en/lb_bootstrap.1:31 en/lb_build.1:33
150 #: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:488 en/lb_source.1:31
151 #: en/live-build.7:232
150 #: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:484 en/lb_source.1:31
151 #: en/live-build.7:230
152152 #, no-wrap
153153 msgid "AUTHOR"
154154 msgstr ""
155155
156156 #. type: Plain text
157157 #: en/lb.1:34 en/lb_binary.1:32 en/lb_bootstrap.1:32 en/lb_build.1:34
158 #: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:489 en/lb_source.1:32
159 #: en/live-build.7:233
158 #: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:485 en/lb_source.1:32
159 #: en/live-build.7:231
160160 msgid ""
161161 "live-build was written by Daniel Baumann E<lt>I<[email protected]>E<gt>."
162162 msgstr ""
55 #, fuzzy
66 msgid ""
77 msgstr ""
8 "Project-Id-Version: live-build 4.0.4-1\n"
9 "POT-Creation-Date: 2014-12-10 08:24+0100\n"
8 "Project-Id-Version: live-build 5.0~a11-1\n"
9 "POT-Creation-Date: 2015-08-23 10:57+0200\n"
1010 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1111 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1212 "Language-Team: LANGUAGE <[email protected]>\n"
2828 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
2929 #: en/live-build.7:1
3030 #, no-wrap
31 msgid "2014-12-10"
32 msgstr ""
33
34 #. type: TH
35 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
36 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
37 #: en/live-build.7:1
38 #, no-wrap
39 msgid "4.0.4-1"
31 msgid "2015-08-23"
32 msgstr ""
33
34 #. type: TH
35 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
36 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
37 #: en/live-build.7:1
38 #, no-wrap
39 msgid "5.0~a11-1"
4040 msgstr ""
4141
4242 #. type: TH
6565
6666 #. type: SH
6767 #: en/lb.1:11 en/lb_binary.1:9 en/lb_bootstrap.1:9 en/lb_build.1:9
68 #: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:225 en/lb_source.1:9
68 #: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:223 en/lb_source.1:9
6969 #: en/live-build.7:11
7070 #, no-wrap
7171 msgid "DESCRIPTION"
7373
7474 #. type: SH
7575 #: en/lb.1:16 en/lb_binary.1:14 en/lb_bootstrap.1:14 en/lb_build.1:14
76 #: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:234 en/lb_source.1:14
76 #: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:232 en/lb_source.1:14
7777 #: en/live-build.7:20
7878 #, no-wrap
7979 msgid "OPTIONS"
8181
8282 #. type: SH
8383 #: en/lb.1:19 en/lb_binary.1:17 en/lb_bootstrap.1:17 en/lb_build.1:17
84 #: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:466 en/lb_source.1:17
85 #: en/live-build.7:215
84 #: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:462 en/lb_source.1:17
85 #: en/live-build.7:213
8686 #, no-wrap
8787 msgid "FILES"
8888 msgstr ""
9696
9797 #. type: SH
9898 #: en/lb.1:22 en/lb_binary.1:20 en/lb_bootstrap.1:20 en/lb_build.1:22
99 #: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:473 en/lb_source.1:20
100 #: en/live-build.7:219
99 #: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:469 en/lb_source.1:20
100 #: en/live-build.7:217
101101 #, no-wrap
102102 msgid "SEE ALSO"
103103 msgstr ""
104104
105105 #. type: Plain text
106106 #: en/lb.1:24 en/lb_binary.1:22 en/lb_bootstrap.1:22 en/lb_build.1:24
107 #: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:475 en/lb_source.1:22
107 #: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:471 en/lb_source.1:22
108108 msgid "I<live-build>(7)"
109109 msgstr ""
110110
111111 #. type: Plain text
112112 #: en/lb.1:26 en/lb_binary.1:24 en/lb_bootstrap.1:24 en/lb_build.1:26
113 #: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:481 en/lb_source.1:24
114 #: en/live-build.7:225
113 #: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:477 en/lb_source.1:24
114 #: en/live-build.7:223
115115 msgid "This program is a part of live-build."
116116 msgstr ""
117117
118118 #. type: SH
119119 #: en/lb.1:27 en/lb_binary.1:25 en/lb_bootstrap.1:25 en/lb_build.1:27
120 #: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:482 en/lb_source.1:25
120 #: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:478 en/lb_source.1:25
121 #: en/live-build.7:224
122 #, no-wrap
123 msgid "HOMEPAGE"
124 msgstr ""
125
126 #. type: Plain text
127 #: en/lb.1:29 en/lb_binary.1:27 en/lb_bootstrap.1:27 en/lb_build.1:29
128 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:480 en/lb_source.1:27
121129 #: en/live-build.7:226
122 #, no-wrap
123 msgid "HOMEPAGE"
124 msgstr ""
125
126 #. type: Plain text
127 #: en/lb.1:29 en/lb_binary.1:27 en/lb_bootstrap.1:27 en/lb_build.1:29
128 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:484 en/lb_source.1:27
129 #: en/live-build.7:228
130130 msgid ""
131131 "More information about live-build and the Live Systems project can be found "
132132 "on the homepage at E<lt>I<http://live-systems.org/>E<gt> and in the manual "
135135
136136 #. type: SH
137137 #: en/lb.1:30 en/lb_binary.1:28 en/lb_bootstrap.1:28 en/lb_build.1:30
138 #: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:485 en/lb_source.1:28
138 #: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:481 en/lb_source.1:28
139 #: en/live-build.7:227
140 #, no-wrap
141 msgid "BUGS"
142 msgstr ""
143
144 #. type: Plain text
145 #: en/lb.1:32 en/lb_binary.1:30 en/lb_bootstrap.1:30 en/lb_build.1:32
146 #: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:483 en/lb_source.1:30
139147 #: en/live-build.7:229
140 #, no-wrap
141 msgid "BUGS"
142 msgstr ""
143
144 #. type: Plain text
145 #: en/lb.1:32 en/lb_binary.1:30 en/lb_bootstrap.1:30 en/lb_build.1:32
146 #: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:487 en/lb_source.1:30
147 #: en/live-build.7:231
148148 msgid ""
149149 "Bugs can be reported by submitting a bugreport for the live-build package in "
150150 "the Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
154154
155155 #. type: SH
156156 #: en/lb.1:33 en/lb_binary.1:31 en/lb_bootstrap.1:31 en/lb_build.1:33
157 #: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:488 en/lb_source.1:31
158 #: en/live-build.7:232
157 #: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:484 en/lb_source.1:31
158 #: en/live-build.7:230
159159 #, no-wrap
160160 msgid "AUTHOR"
161161 msgstr ""
162162
163163 #. type: Plain text
164164 #: en/lb.1:34 en/lb_binary.1:32 en/lb_bootstrap.1:32 en/lb_build.1:34
165 #: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:489 en/lb_source.1:32
166 #: en/live-build.7:233
165 #: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:485 en/lb_source.1:32
166 #: en/live-build.7:231
167167 msgid ""
168168 "live-build was written by Daniel Baumann E<lt>I<[email protected]>E<gt>."
169169 msgstr ""
55 #, fuzzy
66 msgid ""
77 msgstr ""
8 "Project-Id-Version: live-build 4.0.4-1\n"
9 "POT-Creation-Date: 2014-12-10 08:24+0100\n"
8 "Project-Id-Version: live-build 5.0~a11-1\n"
9 "POT-Creation-Date: 2015-08-23 10:57+0200\n"
1010 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1111 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1212 "Language-Team: LANGUAGE <[email protected]>\n"
2828 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
2929 #: en/live-build.7:1
3030 #, no-wrap
31 msgid "2014-12-10"
31 msgid "2015-08-23"
3232 msgstr ""
3333
3434 #. type: TH
3636 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
3737 #: en/live-build.7:1
3838 #, no-wrap
39 msgid "4.0.4-1"
39 msgid "5.0~a11-1"
4040 msgstr ""
4141
4242 #. type: TH
6565
6666 #. type: SH
6767 #: en/lb.1:11 en/lb_binary.1:9 en/lb_bootstrap.1:9 en/lb_build.1:9
68 #: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:225 en/lb_source.1:9
68 #: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:223 en/lb_source.1:9
6969 #: en/live-build.7:11
7070 #, no-wrap
7171 msgid "DESCRIPTION"
7373
7474 #. type: SH
7575 #: en/lb.1:16 en/lb_binary.1:14 en/lb_bootstrap.1:14 en/lb_build.1:14
76 #: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:234 en/lb_source.1:14
76 #: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:232 en/lb_source.1:14
7777 #: en/live-build.7:20
7878 #, no-wrap
7979 msgid "OPTIONS"
8181
8282 #. type: SH
8383 #: en/lb.1:19 en/lb_binary.1:17 en/lb_bootstrap.1:17 en/lb_build.1:17
84 #: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:466 en/lb_source.1:17
85 #: en/live-build.7:215
84 #: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:462 en/lb_source.1:17
85 #: en/live-build.7:213
8686 #, no-wrap
8787 msgid "FILES"
8888 msgstr ""
8989
9090 #. type: SH
9191 #: en/lb.1:22 en/lb_binary.1:20 en/lb_bootstrap.1:20 en/lb_build.1:22
92 #: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:473 en/lb_source.1:20
93 #: en/live-build.7:219
92 #: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:469 en/lb_source.1:20
93 #: en/live-build.7:217
9494 #, no-wrap
9595 msgid "SEE ALSO"
9696 msgstr ""
9797
9898 #. type: Plain text
9999 #: en/lb.1:24 en/lb_binary.1:22 en/lb_bootstrap.1:22 en/lb_build.1:24
100 #: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:475 en/lb_source.1:22
100 #: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:471 en/lb_source.1:22
101101 msgid "I<live-build>(7)"
102102 msgstr ""
103103
104104 #. type: Plain text
105105 #: en/lb.1:26 en/lb_binary.1:24 en/lb_bootstrap.1:24 en/lb_build.1:26
106 #: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:481 en/lb_source.1:24
107 #: en/live-build.7:225
106 #: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:477 en/lb_source.1:24
107 #: en/live-build.7:223
108108 msgid "This program is a part of live-build."
109109 msgstr ""
110110
111111 #. type: SH
112112 #: en/lb.1:27 en/lb_binary.1:25 en/lb_bootstrap.1:25 en/lb_build.1:27
113 #: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:482 en/lb_source.1:25
113 #: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:478 en/lb_source.1:25
114 #: en/live-build.7:224
115 #, no-wrap
116 msgid "HOMEPAGE"
117 msgstr ""
118
119 #. type: Plain text
120 #: en/lb.1:29 en/lb_binary.1:27 en/lb_bootstrap.1:27 en/lb_build.1:29
121 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:480 en/lb_source.1:27
114122 #: en/live-build.7:226
115 #, no-wrap
116 msgid "HOMEPAGE"
117 msgstr ""
118
119 #. type: Plain text
120 #: en/lb.1:29 en/lb_binary.1:27 en/lb_bootstrap.1:27 en/lb_build.1:29
121 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:484 en/lb_source.1:27
122 #: en/live-build.7:228
123123 msgid ""
124124 "More information about live-build and the Live Systems project can be found "
125125 "on the homepage at E<lt>I<http://live-systems.org/>E<gt> and in the manual "
128128
129129 #. type: SH
130130 #: en/lb.1:30 en/lb_binary.1:28 en/lb_bootstrap.1:28 en/lb_build.1:30
131 #: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:485 en/lb_source.1:28
131 #: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:481 en/lb_source.1:28
132 #: en/live-build.7:227
133 #, no-wrap
134 msgid "BUGS"
135 msgstr ""
136
137 #. type: Plain text
138 #: en/lb.1:32 en/lb_binary.1:30 en/lb_bootstrap.1:30 en/lb_build.1:32
139 #: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:483 en/lb_source.1:30
132140 #: en/live-build.7:229
133 #, no-wrap
134 msgid "BUGS"
135 msgstr ""
136
137 #. type: Plain text
138 #: en/lb.1:32 en/lb_binary.1:30 en/lb_bootstrap.1:30 en/lb_build.1:32
139 #: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:487 en/lb_source.1:30
140 #: en/live-build.7:231
141141 msgid ""
142142 "Bugs can be reported by submitting a bugreport for the live-build package in "
143143 "the Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
147147
148148 #. type: SH
149149 #: en/lb.1:33 en/lb_binary.1:31 en/lb_bootstrap.1:31 en/lb_build.1:33
150 #: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:488 en/lb_source.1:31
151 #: en/live-build.7:232
150 #: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:484 en/lb_source.1:31
151 #: en/live-build.7:230
152152 #, no-wrap
153153 msgid "AUTHOR"
154154 msgstr ""
155155
156156 #. type: Plain text
157157 #: en/lb.1:34 en/lb_binary.1:32 en/lb_bootstrap.1:32 en/lb_build.1:34
158 #: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:489 en/lb_source.1:32
159 #: en/live-build.7:233
158 #: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:485 en/lb_source.1:32
159 #: en/live-build.7:231
160160 msgid ""
161161 "live-build was written by Daniel Baumann E<lt>I<[email protected]>E<gt>."
162162 msgstr ""
55 #, fuzzy
66 msgid ""
77 msgstr ""
8 "Project-Id-Version: live-build 4.0.4-1\n"
9 "POT-Creation-Date: 2014-12-10 08:24+0100\n"
8 "Project-Id-Version: live-build 5.0~a11-1\n"
9 "POT-Creation-Date: 2015-08-23 10:57+0200\n"
1010 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1111 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1212 "Language-Team: LANGUAGE <[email protected]>\n"
2828 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
2929 #: en/live-build.7:1
3030 #, no-wrap
31 msgid "2014-12-10"
31 msgid "2015-08-23"
3232 msgstr ""
3333
3434 #. type: TH
3636 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
3737 #: en/live-build.7:1
3838 #, no-wrap
39 msgid "4.0.4-1"
39 msgid "5.0~a11-1"
4040 msgstr ""
4141
4242 #. type: TH
6565
6666 #. type: SH
6767 #: en/lb.1:11 en/lb_binary.1:9 en/lb_bootstrap.1:9 en/lb_build.1:9
68 #: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:225 en/lb_source.1:9
68 #: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:223 en/lb_source.1:9
6969 #: en/live-build.7:11
7070 #, no-wrap
7171 msgid "DESCRIPTION"
7373
7474 #. type: SH
7575 #: en/lb.1:16 en/lb_binary.1:14 en/lb_bootstrap.1:14 en/lb_build.1:14
76 #: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:234 en/lb_source.1:14
76 #: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:232 en/lb_source.1:14
7777 #: en/live-build.7:20
7878 #, no-wrap
7979 msgid "OPTIONS"
8181
8282 #. type: SH
8383 #: en/lb.1:19 en/lb_binary.1:17 en/lb_bootstrap.1:17 en/lb_build.1:17
84 #: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:466 en/lb_source.1:17
85 #: en/live-build.7:215
84 #: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:462 en/lb_source.1:17
85 #: en/live-build.7:213
8686 #, no-wrap
8787 msgid "FILES"
8888 msgstr ""
8989
9090 #. type: SH
9191 #: en/lb.1:22 en/lb_binary.1:20 en/lb_bootstrap.1:20 en/lb_build.1:22
92 #: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:473 en/lb_source.1:20
93 #: en/live-build.7:219
92 #: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:469 en/lb_source.1:20
93 #: en/live-build.7:217
9494 #, no-wrap
9595 msgid "SEE ALSO"
9696 msgstr ""
9797
9898 #. type: Plain text
9999 #: en/lb.1:24 en/lb_binary.1:22 en/lb_bootstrap.1:22 en/lb_build.1:24
100 #: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:475 en/lb_source.1:22
100 #: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:471 en/lb_source.1:22
101101 msgid "I<live-build>(7)"
102102 msgstr ""
103103
104104 #. type: Plain text
105105 #: en/lb.1:26 en/lb_binary.1:24 en/lb_bootstrap.1:24 en/lb_build.1:26
106 #: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:481 en/lb_source.1:24
107 #: en/live-build.7:225
106 #: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:477 en/lb_source.1:24
107 #: en/live-build.7:223
108108 msgid "This program is a part of live-build."
109109 msgstr ""
110110
111111 #. type: SH
112112 #: en/lb.1:27 en/lb_binary.1:25 en/lb_bootstrap.1:25 en/lb_build.1:27
113 #: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:482 en/lb_source.1:25
113 #: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:478 en/lb_source.1:25
114 #: en/live-build.7:224
115 #, no-wrap
116 msgid "HOMEPAGE"
117 msgstr ""
118
119 #. type: Plain text
120 #: en/lb.1:29 en/lb_binary.1:27 en/lb_bootstrap.1:27 en/lb_build.1:29
121 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:480 en/lb_source.1:27
114122 #: en/live-build.7:226
115 #, no-wrap
116 msgid "HOMEPAGE"
117 msgstr ""
118
119 #. type: Plain text
120 #: en/lb.1:29 en/lb_binary.1:27 en/lb_bootstrap.1:27 en/lb_build.1:29
121 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:484 en/lb_source.1:27
122 #: en/live-build.7:228
123123 msgid ""
124124 "More information about live-build and the Live Systems project can be found "
125125 "on the homepage at E<lt>I<http://live-systems.org/>E<gt> and in the manual "
128128
129129 #. type: SH
130130 #: en/lb.1:30 en/lb_binary.1:28 en/lb_bootstrap.1:28 en/lb_build.1:30
131 #: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:485 en/lb_source.1:28
131 #: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:481 en/lb_source.1:28
132 #: en/live-build.7:227
133 #, no-wrap
134 msgid "BUGS"
135 msgstr ""
136
137 #. type: Plain text
138 #: en/lb.1:32 en/lb_binary.1:30 en/lb_bootstrap.1:30 en/lb_build.1:32
139 #: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:483 en/lb_source.1:30
132140 #: en/live-build.7:229
133 #, no-wrap
134 msgid "BUGS"
135 msgstr ""
136
137 #. type: Plain text
138 #: en/lb.1:32 en/lb_binary.1:30 en/lb_bootstrap.1:30 en/lb_build.1:32
139 #: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:487 en/lb_source.1:30
140 #: en/live-build.7:231
141141 msgid ""
142142 "Bugs can be reported by submitting a bugreport for the live-build package in "
143143 "the Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
147147
148148 #. type: SH
149149 #: en/lb.1:33 en/lb_binary.1:31 en/lb_bootstrap.1:31 en/lb_build.1:33
150 #: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:488 en/lb_source.1:31
151 #: en/live-build.7:232
150 #: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:484 en/lb_source.1:31
151 #: en/live-build.7:230
152152 #, no-wrap
153153 msgid "AUTHOR"
154154 msgstr ""
155155
156156 #. type: Plain text
157157 #: en/lb.1:34 en/lb_binary.1:32 en/lb_bootstrap.1:32 en/lb_build.1:34
158 #: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:489 en/lb_source.1:32
159 #: en/live-build.7:233
158 #: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:485 en/lb_source.1:32
159 #: en/live-build.7:231
160160 msgid ""
161161 "live-build was written by Daniel Baumann E<lt>I<[email protected]>E<gt>."
162162 msgstr ""
259259
260260 #. type: Plain text
261261 #: en/lb_config.1:45
262 msgid " [B<--bootstrap> cdebootstrap|cdebootstrap-static|debootstrap]"
262 msgid " [B<--cache> true|false]"
263263 msgstr ""
264264
265265 #. type: Plain text
266266 #: en/lb_config.1:47
267 msgid " [B<--cache> true|false]"
267 msgid " [B<--cache-indices> true|false]"
268268 msgstr ""
269269
270270 #. type: Plain text
271271 #: en/lb_config.1:49
272 msgid " [B<--cache-indices> true|false]"
272 msgid " [B<--cache-packages> true|false]"
273273 msgstr ""
274274
275275 #. type: Plain text
276276 #: en/lb_config.1:51
277 msgid " [B<--cache-packages> true|false]"
277 msgid " [B<--cache-stages> I<STAGE>|I<\"STAGES\">]"
278278 msgstr ""
279279
280280 #. type: Plain text
281281 #: en/lb_config.1:53
282 msgid " [B<--cache-stages> I<STAGE>|I<\"STAGES\">]"
282 msgid " [B<--checksums> md5|sha1|sha256|none]"
283283 msgstr ""
284284
285285 #. type: Plain text
286286 #: en/lb_config.1:55
287 msgid " [B<--checksums> md5|sha1|sha256|none]"
287 msgid " [B<--compression> bzip2|gzip|lzip|none]"
288288 msgstr ""
289289
290290 #. type: Plain text
291291 #: en/lb_config.1:57
292 msgid " [B<--compression> bzip2|gzip|lzip|none]"
292 msgid " [B<--config> I<GIT_URL::GIT_ID>]"
293293 msgstr ""
294294
295295 #. type: Plain text
296296 #: en/lb_config.1:59
297 msgid " [B<--config> I<GIT_URL::GIT_ID>]"
297 msgid " [B<--build-with-chroot> true|false]"
298298 msgstr ""
299299
300300 #. type: Plain text
301301 #: en/lb_config.1:61
302 msgid " [B<--build-with-chroot> true|false]"
302 msgid " [B<--chroot-filesystem> ext2|ext3|ext4|squashfs|jffs2|none]"
303303 msgstr ""
304304
305305 #. type: Plain text
306306 #: en/lb_config.1:63
307 msgid " [B<--chroot-filesystem> ext2|ext3|ext4|squashfs|jffs2|none]"
307 msgid " [B<--clean>]"
308308 msgstr ""
309309
310310 #. type: Plain text
311311 #: en/lb_config.1:65
312 msgid " [B<--clean>]"
312 msgid " [-c|B<--conffile> I<FILE>]"
313313 msgstr ""
314314
315315 #. type: Plain text
316316 #: en/lb_config.1:67
317 msgid " [-c|B<--conffile> I<FILE>]"
317 msgid " [B<--debconf-frontend> dialog|editor|noninteractive|readline]"
318318 msgstr ""
319319
320320 #. type: Plain text
321321 #: en/lb_config.1:69
322 msgid " [B<--debconf-frontend> dialog|editor|noninteractive|readline]"
322 msgid " [B<--debconf-priority> low|medium|high|critical]"
323323 msgstr ""
324324
325325 #. type: Plain text
326326 #: en/lb_config.1:71
327 msgid " [B<--debconf-priority> low|medium|high|critical]"
327 msgid ""
328 " [B<--debian-installer> true|cdrom|netinst|netboot|businesscard|live|false]"
328329 msgstr ""
329330
330331 #. type: Plain text
331332 #: en/lb_config.1:73
332 msgid ""
333 " [B<--debian-installer> true|cdrom|netinst|netboot|businesscard|live|false]"
333 msgid " [B<--debian-installer-distribution> daily|I<CODENAME>]"
334334 msgstr ""
335335
336336 #. type: Plain text
337337 #: en/lb_config.1:75
338 msgid " [B<--debian-installer-distribution> daily|I<CODENAME>]"
338 msgid " [B<--debian-installer-preseedfile> I<FILE>|I<URL>]"
339339 msgstr ""
340340
341341 #. type: Plain text
342342 #: en/lb_config.1:77
343 msgid " [B<--debian-installer-preseedfile> I<FILE>|I<URL>]"
343 msgid " [B<--debian-installer-gui> true|false]"
344344 msgstr ""
345345
346346 #. type: Plain text
347347 #: en/lb_config.1:79
348 msgid " [B<--debian-installer-gui> true|false]"
348 msgid " [B<--debug>]"
349349 msgstr ""
350350
351351 #. type: Plain text
352352 #: en/lb_config.1:81
353 msgid " [B<--debug>]"
353 msgid " [-d|B<--distribution> I<CODENAME>]"
354354 msgstr ""
355355
356356 #. type: Plain text
357357 #: en/lb_config.1:83
358 msgid " [-d|B<--distribution> I<CODENAME>]"
358 msgid " [B<--parent-distribution> I<CODENAME>]"
359359 msgstr ""
360360
361361 #. type: Plain text
362362 #: en/lb_config.1:85
363 msgid " [B<--parent-distribution> I<CODENAME>]"
363 msgid " [B<--parent-debian-installer-distribution> I<CODENAME>]"
364364 msgstr ""
365365
366366 #. type: Plain text
367367 #: en/lb_config.1:87
368 msgid " [B<--parent-debian-installer-distribution> I<CODENAME>]"
368 msgid " [B<--dump>]"
369369 msgstr ""
370370
371371 #. type: Plain text
372372 #: en/lb_config.1:89
373 msgid " [B<--dump>]"
373 msgid " [B<--fdisk> fdisk|fdisk.dist]"
374374 msgstr ""
375375
376376 #. type: Plain text
377377 #: en/lb_config.1:91
378 msgid " [B<--fdisk> fdisk|fdisk.dist]"
378 msgid " [B<--firmware-binary true|false>]"
379379 msgstr ""
380380
381381 #. type: Plain text
382382 #: en/lb_config.1:93
383 msgid " [B<--firmware-binary true|false>]"
383 msgid " [B<--firmware-chroot true|false>]"
384384 msgstr ""
385385
386386 #. type: Plain text
387387 #: en/lb_config.1:95
388 msgid " [B<--firmware-chroot true|false>]"
388 msgid " [B<--force>]"
389389 msgstr ""
390390
391391 #. type: Plain text
392392 #: en/lb_config.1:97
393 msgid " [B<--force>]"
393 msgid " [B<--grub-splash> I<FILE>]"
394394 msgstr ""
395395
396396 #. type: Plain text
397397 #: en/lb_config.1:99
398 msgid " [B<--grub-splash> I<FILE>]"
398 msgid " [B<--gzip-options> I<OPTION>|\"I<OPTIONS>\"]"
399399 msgstr ""
400400
401401 #. type: Plain text
402402 #: en/lb_config.1:101
403 msgid " [B<--gzip-options> I<OPTION>|\"I<OPTIONS>\"]"
403 msgid " [B<--hooks> I<FILE>]"
404404 msgstr ""
405405
406406 #. type: Plain text
407407 #: en/lb_config.1:103
408 msgid " [B<--hooks> I<FILE>]"
408 msgid " [B<--ignore-system-defaults>]"
409409 msgstr ""
410410
411411 #. type: Plain text
412412 #: en/lb_config.1:105
413 msgid " [B<--ignore-system-defaults>]"
413 msgid " [B<--initramfs> auto|none|live-boot|casper]"
414414 msgstr ""
415415
416416 #. type: Plain text
417417 #: en/lb_config.1:107
418 msgid " [B<--initramfs> auto|none|live-boot|casper]"
418 msgid " [B<--initramfs-compression> bzip2|gzip|lzma]"
419419 msgstr ""
420420
421421 #. type: Plain text
422422 #: en/lb_config.1:109
423 msgid " [B<--initramfs-compression> bzip2|gzip|lzma]"
423 msgid " [B<--initsystem> sysvinit|runit|systemd|upstart|none]"
424424 msgstr ""
425425
426426 #. type: Plain text
427427 #: en/lb_config.1:111
428 msgid " [B<--initsystem> sysvinit|runit|systemd|upstart|none]"
428 msgid " [B<--interactive> shell]"
429429 msgstr ""
430430
431431 #. type: Plain text
432432 #: en/lb_config.1:113
433 msgid " [B<--interactive> shell]"
433 msgid " [B<--isohybrid-options> I<OPTION>|\"I<OPTIONS>\"]"
434434 msgstr ""
435435
436436 #. type: Plain text
437437 #: en/lb_config.1:115
438 msgid " [B<--isohybrid-options> I<OPTION>|\"I<OPTIONS>\"]"
438 msgid " [B<--iso-application> I<NAME>]"
439439 msgstr ""
440440
441441 #. type: Plain text
442442 #: en/lb_config.1:117
443 msgid " [B<--iso-application> I<NAME>]"
443 msgid " [B<--iso-preparer> I<NAME>]"
444444 msgstr ""
445445
446446 #. type: Plain text
447447 #: en/lb_config.1:119
448 msgid " [B<--iso-preparer> I<NAME>]"
448 msgid " [B<--iso-publisher> I<NAME>]"
449449 msgstr ""
450450
451451 #. type: Plain text
452452 #: en/lb_config.1:121
453 msgid " [B<--iso-publisher> I<NAME>]"
453 msgid " [B<--iso-volume> I<NAME>]"
454454 msgstr ""
455455
456456 #. type: Plain text
457457 #: en/lb_config.1:123
458 msgid " [B<--iso-volume> I<NAME>]"
458 msgid " [B<--jffs2-eraseblock> I<SIZE>]"
459459 msgstr ""
460460
461461 #. type: Plain text
462462 #: en/lb_config.1:125
463 msgid " [B<--jffs2-eraseblock> I<SIZE>]"
463 msgid " [B<--keyring-packages> I<PACKAGE|\"PACKAGES\">]"
464464 msgstr ""
465465
466466 #. type: Plain text
467467 #: en/lb_config.1:127
468 msgid " [B<--keyring-packages> I<PACKAGE|\"PACKAGES\">]"
468 msgid " [-k|B<--linux-flavours> I<FLAVOUR>|I<\"FLAVOURS\">]"
469469 msgstr ""
470470
471471 #. type: Plain text
472472 #: en/lb_config.1:129
473 msgid " [-k|B<--linux-flavours> I<FLAVOUR>|I<\"FLAVOURS\">]"
473 msgid " [B<--linux-packages> I<\"PACKAGES\">]"
474474 msgstr ""
475475
476476 #. type: Plain text
477477 #: en/lb_config.1:131
478 msgid " [B<--linux-packages> I<\"PACKAGES\">]"
478 msgid " [B<--losetup> losetup|losetup.orig]"
479479 msgstr ""
480480
481481 #. type: Plain text
482482 #: en/lb_config.1:133
483 msgid " [B<--losetup> losetup|losetup.orig]"
483 msgid " [B<--memtest> memtest86+|memtest86|none]"
484484 msgstr ""
485485
486486 #. type: Plain text
487487 #: en/lb_config.1:135
488 msgid " [B<--memtest> memtest86+|memtest86|none]"
488 msgid " [-m|B<--parent-mirror-bootstrap> I<URL>]"
489489 msgstr ""
490490
491491 #. type: Plain text
492492 #: en/lb_config.1:137
493 msgid " [-m|B<--parent-mirror-bootstrap> I<URL>]"
493 msgid " [B<--parent-mirror-chroot> I<URL>]"
494494 msgstr ""
495495
496496 #. type: Plain text
497497 #: en/lb_config.1:139
498 msgid " [B<--parent-mirror-chroot> I<URL>]"
498 msgid " [B<--parent-mirror-chroot-security> I<URL>]"
499499 msgstr ""
500500
501501 #. type: Plain text
502502 #: en/lb_config.1:141
503 msgid " [B<--parent-mirror-chroot-security> I<URL>]"
503 msgid " [B<--parent-mirror-chroot-updates> I<URL>]"
504504 msgstr ""
505505
506506 #. type: Plain text
507507 #: en/lb_config.1:143
508 msgid " [B<--parent-mirror-chroot-updates> I<URL>]"
508 msgid " [B<--parent-mirror-chroot-backports> I<URL>]"
509509 msgstr ""
510510
511511 #. type: Plain text
512512 #: en/lb_config.1:145
513 msgid " [B<--parent-mirror-chroot-backports> I<URL>]"
513 msgid " [B<--parent-mirror-binary> I<URL>]"
514514 msgstr ""
515515
516516 #. type: Plain text
517517 #: en/lb_config.1:147
518 msgid " [B<--parent-mirror-binary> I<URL>]"
518 msgid " [B<--parent-mirror-binary-security> I<URL>]"
519519 msgstr ""
520520
521521 #. type: Plain text
522522 #: en/lb_config.1:149
523 msgid " [B<--parent-mirror-binary-security> I<URL>]"
523 msgid " [B<--parent-mirror-binary-updates> I<URL>]"
524524 msgstr ""
525525
526526 #. type: Plain text
527527 #: en/lb_config.1:151
528 msgid " [B<--parent-mirror-binary-updates> I<URL>]"
528 msgid " [B<--parent-mirror-binary-backports> I<URL>]"
529529 msgstr ""
530530
531531 #. type: Plain text
532532 #: en/lb_config.1:153
533 msgid " [B<--parent-mirror-binary-backports> I<URL>]"
533 msgid " [B<--parent-mirror-debian-installer> I<URL>]"
534534 msgstr ""
535535
536536 #. type: Plain text
537537 #: en/lb_config.1:155
538 msgid " [B<--parent-mirror-debian-installer> I<URL>]"
538 msgid " [B<--mirror-bootstrap> I<URL>]"
539539 msgstr ""
540540
541541 #. type: Plain text
542542 #: en/lb_config.1:157
543 msgid " [B<--mirror-bootstrap> I<URL>]"
543 msgid " [B<--mirror-chroot> I<URL>]"
544544 msgstr ""
545545
546546 #. type: Plain text
547547 #: en/lb_config.1:159
548 msgid " [B<--mirror-chroot> I<URL>]"
548 msgid " [B<--mirror-chroot-security> I<URL>]"
549549 msgstr ""
550550
551551 #. type: Plain text
552552 #: en/lb_config.1:161
553 msgid " [B<--mirror-chroot-security> I<URL>]"
553 msgid " [B<--mirror-chroot-updates> I<URL>]"
554554 msgstr ""
555555
556556 #. type: Plain text
557557 #: en/lb_config.1:163
558 msgid " [B<--mirror-chroot-updates> I<URL>]"
558 msgid " [B<--mirror-chroot-backports> I<URL>]"
559559 msgstr ""
560560
561561 #. type: Plain text
562562 #: en/lb_config.1:165
563 msgid " [B<--mirror-chroot-backports> I<URL>]"
563 msgid " [B<--mirror-binary> I<URL>]"
564564 msgstr ""
565565
566566 #. type: Plain text
567567 #: en/lb_config.1:167
568 msgid " [B<--mirror-binary> I<URL>]"
568 msgid " [B<--mirror-binary-security> I<URL>]"
569569 msgstr ""
570570
571571 #. type: Plain text
572572 #: en/lb_config.1:169
573 msgid " [B<--mirror-binary-security> I<URL>]"
573 msgid " [B<--mirror-binary-updates> I<URL>]"
574574 msgstr ""
575575
576576 #. type: Plain text
577577 #: en/lb_config.1:171
578 msgid " [B<--mirror-binary-updates> I<URL>]"
578 msgid " [B<--mirror-binary-backports> I<URL>]"
579579 msgstr ""
580580
581581 #. type: Plain text
582582 #: en/lb_config.1:173
583 msgid " [B<--mirror-binary-backports> I<URL>]"
583 msgid " [B<--mirror-debian-installer> I<URL>]"
584584 msgstr ""
585585
586586 #. type: Plain text
587587 #: en/lb_config.1:175
588 msgid " [B<--mirror-debian-installer> I<URL>]"
588 msgid " [B<--mode> debian|progress-linux|ubuntu]"
589589 msgstr ""
590590
591591 #. type: Plain text
592592 #: en/lb_config.1:177
593 msgid " [B<--mode> debian|progress-linux|ubuntu]"
593 msgid " [B<--system> live|normal]"
594594 msgstr ""
595595
596596 #. type: Plain text
597597 #: en/lb_config.1:179
598 msgid " [B<--system> live|normal]"
598 msgid " [B<--net-root-filesystem> nfs|cfs]"
599599 msgstr ""
600600
601601 #. type: Plain text
602602 #: en/lb_config.1:181
603 msgid " [B<--net-root-filesystem> nfs|cfs]"
603 msgid " [B<--net-root-mountoptions> I<OPTIONS>]"
604604 msgstr ""
605605
606606 #. type: Plain text
607607 #: en/lb_config.1:183
608 msgid " [B<--net-root-mountoptions> I<OPTIONS>]"
608 msgid " [B<--net-root-path> I<PATH>]"
609609 msgstr ""
610610
611611 #. type: Plain text
612612 #: en/lb_config.1:185
613 msgid " [B<--net-root-path> I<PATH>]"
613 msgid " [B<--net-root-server> I<IP>|I<HOSTNAME>]"
614614 msgstr ""
615615
616616 #. type: Plain text
617617 #: en/lb_config.1:187
618 msgid " [B<--net-root-server> I<IP>|I<HOSTNAME>]"
618 msgid " [B<--net-cow-filesystem> nfs|cfs]"
619619 msgstr ""
620620
621621 #. type: Plain text
622622 #: en/lb_config.1:189
623 msgid " [B<--net-cow-filesystem> nfs|cfs]"
623 msgid " [B<--net-cow-mountoptions> I<OPTIONS>]"
624624 msgstr ""
625625
626626 #. type: Plain text
627627 #: en/lb_config.1:191
628 msgid " [B<--net-cow-mountoptions> I<OPTIONS>]"
628 msgid " [B<--net-cow-path> I<PATH>]"
629629 msgstr ""
630630
631631 #. type: Plain text
632632 #: en/lb_config.1:193
633 msgid " [B<--net-cow-path> I<PATH>]"
633 msgid " [B<--net-cow-server> I<IP>|I<HOSTNAME>]"
634634 msgstr ""
635635
636636 #. type: Plain text
637637 #: en/lb_config.1:195
638 msgid " [B<--net-cow-server> I<IP>|I<HOSTNAME>]"
638 msgid " [B<--net-tarball> true|false]"
639639 msgstr ""
640640
641641 #. type: Plain text
642642 #: en/lb_config.1:197
643 msgid " [B<--net-tarball> true|false]"
643 msgid " [B<--quiet>]"
644644 msgstr ""
645645
646646 #. type: Plain text
647647 #: en/lb_config.1:199
648 msgid " [B<--quiet>]"
648 msgid " [B<--archive-areas> I<ARCHIVE_AREA>|I<\"ARCHIVE_AREAS\">]"
649649 msgstr ""
650650
651651 #. type: Plain text
652652 #: en/lb_config.1:201
653 msgid " [B<--archive-areas> I<ARCHIVE_AREA>|I<\"ARCHIVE_AREAS\">]"
654 msgstr ""
655
656 #. type: Plain text
657 #: en/lb_config.1:203
658653 msgid ""
659654 " [B<--parent-archive-areas> I<PARENT_ARCHIVE_AREA>|I<\"PARENT_ARCHIVE_AREAS"
660655 "\">]"
661656 msgstr ""
662657
663658 #. type: Plain text
659 #: en/lb_config.1:203
660 msgid " [B<--security> true|false]"
661 msgstr ""
662
663 #. type: Plain text
664664 #: en/lb_config.1:205
665 msgid " [B<--security> true|false]"
665 msgid " [B<--source> true|false]"
666666 msgstr ""
667667
668668 #. type: Plain text
669669 #: en/lb_config.1:207
670 msgid " [B<--source> true|false]"
670 msgid " [-s|B<--source-images> iso|netboot|tar|hdd]"
671671 msgstr ""
672672
673673 #. type: Plain text
674674 #: en/lb_config.1:209
675 msgid " [-s|B<--source-images> iso|netboot|tar|hdd]"
675 msgid " [B<--tasksel> apt|aptitude|tasksel]"
676676 msgstr ""
677677
678678 #. type: Plain text
679679 #: en/lb_config.1:211
680 msgid " [B<--tasksel> apt|aptitude|tasksel]"
680 msgid " [B<--templates> I<PATH>]"
681681 msgstr ""
682682
683683 #. type: Plain text
684684 #: en/lb_config.1:213
685 msgid " [B<--templates> I<PATH>]"
685 msgid " [B<--hdd-size >I<MB>]"
686686 msgstr ""
687687
688688 #. type: Plain text
689689 #: en/lb_config.1:215
690 msgid " [B<--hdd-size >I<MB>]"
690 msgid " [B<--updates> true|false]"
691691 msgstr ""
692692
693693 #. type: Plain text
694694 #: en/lb_config.1:217
695 msgid " [B<--updates> true|false]"
695 msgid " [B<--backports> true|false]"
696696 msgstr ""
697697
698698 #. type: Plain text
699699 #: en/lb_config.1:219
700 msgid " [B<--backports> true|false]"
701 msgstr ""
702
703 #. type: Plain text
704 #: en/lb_config.1:221
705700 msgid " [B<--verbose>]"
706701 msgstr ""
707702
708703 #. FIXME
709704 #. type: Plain text
710 #: en/lb_config.1:224
705 #: en/lb_config.1:222
711706 msgid " [B<--win32-loader true|false]>"
712707 msgstr ""
713708
714709 #. type: Plain text
715 #: en/lb_config.1:227
710 #: en/lb_config.1:225
716711 msgid ""
717712 "B<lb config> is a high-level command (porcelain) of I<live-build>(7), the "
718713 "live systems tool suite."
720715
721716 #. FIXME
722717 #. type: Plain text
723 #: en/lb_config.1:230
718 #: en/lb_config.1:228
724719 msgid ""
725720 "B<lb config> populates the configuration directory for live-build. By "
726721 "default, this directory is named 'config' and is created in the current "
729724
730725 #. FIXME
731726 #. type: Plain text
732 #: en/lb_config.1:233
727 #: en/lb_config.1:231
733728 msgid ""
734729 "Note: Currently B<lb config> tries to be smart and sets defaults for some "
735730 "options depending on the setting of other options (e.g. which linux packages "
745740 msgstr ""
746741
747742 #. type: Plain text
748 #: en/lb_config.1:236
743 #: en/lb_config.1:234
749744 msgid ""
750745 "In addition to its specific options B<lb config> understands all generic "
751746 "live-build options. See I<live-build>(7) for a complete list of all generic "
754749
755750 #. FIXME
756751 #. type: IP
752 #: en/lb_config.1:236
753 #, no-wrap
754 msgid "B<--apt> apt|aptitude"
755 msgstr ""
756
757 #. type: Plain text
757758 #: en/lb_config.1:238
758 #, no-wrap
759 msgid "B<--apt> apt|aptitude"
760 msgstr ""
761
762 #. type: Plain text
763 #: en/lb_config.1:240
764759 msgid ""
765760 "defines if apt-get or aptitude is used to install packages when building the "
766761 "image. The default is apt."
767762 msgstr ""
768763
769764 #. type: IP
765 #: en/lb_config.1:238
766 #, no-wrap
767 msgid "B<--apt-ftp-proxy> I<URL>"
768 msgstr ""
769
770 #. type: Plain text
770771 #: en/lb_config.1:240
771 #, no-wrap
772 msgid "B<--apt-ftp-proxy> I<URL>"
773 msgstr ""
774
775 #. type: Plain text
776 #: en/lb_config.1:242
777772 msgid ""
778773 "sets the ftp proxy to be used by apt. By default, this is empty. Note that "
779774 "this variable is only for the proxy that gets used by apt internally within "
781776 msgstr ""
782777
783778 #. type: IP
779 #: en/lb_config.1:240
780 #, no-wrap
781 msgid "B<--apt-http-proxy> I<URL>"
782 msgstr ""
783
784 #. type: Plain text
784785 #: en/lb_config.1:242
785 #, no-wrap
786 msgid "B<--apt-http-proxy> I<URL>"
787 msgstr ""
788
789 #. type: Plain text
790 #: en/lb_config.1:244
791786 msgid ""
792787 "sets the http proxy to be used by apt. By default, this is empty. Note that "
793788 "this variable is only for the proxy that gets used by apt internally within "
795790 msgstr ""
796791
797792 #. type: IP
793 #: en/lb_config.1:242
794 #, no-wrap
795 msgid "B<--apt-indices> true|false|none"
796 msgstr ""
797
798 #. type: Plain text
798799 #: en/lb_config.1:244
799 #, no-wrap
800 msgid "B<--apt-indices> true|false|none"
801 msgstr ""
802
803 #. type: Plain text
804 #: en/lb_config.1:246
805800 msgid ""
806801 "defines if the resulting images should have apt indices or not and defaults "
807802 "to true. If set to none, no indices are included at all."
808803 msgstr ""
809804
810805 #. type: IP
806 #: en/lb_config.1:244
807 #, no-wrap
808 msgid "B<--apt-options> I<OPTION>|\"I<OPTIONS>\""
809 msgstr ""
810
811 #. type: Plain text
811812 #: en/lb_config.1:246
812 #, no-wrap
813 msgid "B<--apt-options> I<OPTION>|\"I<OPTIONS>\""
814 msgstr ""
815
816 #. type: Plain text
817 #: en/lb_config.1:248
818813 msgid ""
819814 "defines the default options that will be appended to every apt call that is "
820815 "made inside chroot during the building of the image. By default, this is set "
822817 msgstr ""
823818
824819 #. type: IP
820 #: en/lb_config.1:246
821 #, no-wrap
822 msgid "B<--aptitude-options> I<OPTION>|\"I<OPTIONS>\""
823 msgstr ""
824
825 #. type: Plain text
825826 #: en/lb_config.1:248
826 #, no-wrap
827 msgid "B<--aptitude-options> I<OPTION>|\"I<OPTIONS>\""
828 msgstr ""
829
830 #. type: Plain text
831 #: en/lb_config.1:250
832827 msgid ""
833828 "defines the default options that will be appended to every aptitude call "
834829 "that is made inside chroot during building of the image. By default, this is "
836831 msgstr ""
837832
838833 #. type: IP
834 #: en/lb_config.1:248
835 #, no-wrap
836 msgid "B<--apt-pipeline> I<DEPTH>"
837 msgstr ""
838
839 #. type: Plain text
839840 #: en/lb_config.1:250
840 #, no-wrap
841 msgid "B<--apt-pipeline> I<DEPTH>"
842 msgstr ""
843
844 #. type: Plain text
845 #: en/lb_config.1:252
846841 msgid ""
847842 "sets the depth of the apt/aptitude pipeline. In cases where the remote "
848843 "server is not RFC conforming or buggy (such as Squid 2.0.2) this option can "
854849 msgstr ""
855850
856851 #. type: IP
852 #: en/lb_config.1:250
853 #, no-wrap
854 msgid "B<--apt-recommends> true|false"
855 msgstr ""
856
857 #. type: Plain text
857858 #: en/lb_config.1:252
858 #, no-wrap
859 msgid "B<--apt-recommends> true|false"
860 msgstr ""
861
862 #. type: Plain text
863 #: en/lb_config.1:254
864859 msgid ""
865860 "defines if apt should install recommended packages automatically. By "
866861 "default, this is true."
867862 msgstr ""
868863
869864 #. type: IP
865 #: en/lb_config.1:252
866 #, no-wrap
867 msgid "B<--apt-secure> true|false"
868 msgstr ""
869
870 #. type: Plain text
870871 #: en/lb_config.1:254
871 #, no-wrap
872 msgid "B<--apt-secure> true|false"
872 msgid ""
873 "defines if apt should check repository signatures. This is true by default."
874 msgstr ""
875
876 #. type: IP
877 #: en/lb_config.1:254
878 #, no-wrap
879 msgid "B<--apt-source-archives> true|false"
873880 msgstr ""
874881
875882 #. type: Plain text
876883 #: en/lb_config.1:256
877 msgid ""
878 "defines if apt should check repository signatures. This is true by default."
879 msgstr ""
880
881 #. type: IP
882 #: en/lb_config.1:256
883 #, no-wrap
884 msgid "B<--apt-source-archives> true|false"
885 msgstr ""
886
887 #. type: Plain text
888 #: en/lb_config.1:258
889884 msgid ""
890885 "defines if deb-src entries should be included in the resulting live image or "
891886 "not, defaults to true."
892887 msgstr ""
893888
894889 #. type: IP
890 #: en/lb_config.1:256
891 #, no-wrap
892 msgid "-a|B<--architectures> I<ARCHITECTURE>"
893 msgstr ""
894
895 #. type: Plain text
895896 #: en/lb_config.1:258
896 #, no-wrap
897 msgid "-a|B<--architectures> I<ARCHITECTURE>"
898 msgstr ""
899
900 #. type: Plain text
901 #: en/lb_config.1:260
902897 msgid ""
903898 "defines the architecture of the to be build image. By default, this is set "
904899 "to the host architecture. Note that you cannot crossbuild for another "
909904 msgstr ""
910905
911906 #. type: IP
907 #: en/lb_config.1:258
908 #, no-wrap
909 msgid "-b|B<--binary-images> iso|iso-hybrid|netboot|tar|hdd"
910 msgstr ""
911
912 #. type: Plain text
912913 #: en/lb_config.1:260
913 #, no-wrap
914 msgid "-b|B<--binary-images> iso|iso-hybrid|netboot|tar|hdd"
915 msgstr ""
916
917 #. type: Plain text
918 #: en/lb_config.1:262
919914 msgid ""
920915 "defines the image type to build. By default, for images using syslinux this "
921916 "is set to iso-hybrid to build CD/DVD images that may also be used like hdd "
923918 msgstr ""
924919
925920 #. type: IP
921 #: en/lb_config.1:260
922 #, no-wrap
923 msgid "B<--binary-filesystem> fat16|fat32|ext2|ext3|ext4"
924 msgstr ""
925
926 #. type: Plain text
926927 #: en/lb_config.1:262
927 #, no-wrap
928 msgid "B<--binary-filesystem> fat16|fat32|ext2|ext3|ext4"
929 msgstr ""
930
931 #. type: Plain text
932 #: en/lb_config.1:264
933928 msgid ""
934929 "defines the filesystem to be used in the image type. This only has an effect "
935930 "if the selected binary image type does allow to choose a filesystem. For "
942937 msgstr ""
943938
944939 #. type: IP
940 #: en/lb_config.1:262
941 #, no-wrap
942 msgid "B<--bootappend-install> I<PARAMETER>|\"I<PARAMETERS>\""
943 msgstr ""
944
945 #. type: Plain text
945946 #: en/lb_config.1:264
946 #, no-wrap
947 msgid "B<--bootappend-install> I<PARAMETER>|\"I<PARAMETERS>\""
947 msgid "sets boot parameters specific to debian-installer, if included."
948 msgstr ""
949
950 #. type: IP
951 #: en/lb_config.1:264
952 #, no-wrap
953 msgid "B<--bootappend-live> I<PARAMETER>|\"I<PARAMETERS>\""
948954 msgstr ""
949955
950956 #. type: Plain text
951957 #: en/lb_config.1:266
952 msgid "sets boot parameters specific to debian-installer, if included."
953 msgstr ""
954
955 #. type: IP
956 #: en/lb_config.1:266
957 #, no-wrap
958 msgid "B<--bootappend-live> I<PARAMETER>|\"I<PARAMETERS>\""
959 msgstr ""
960
961 #. type: Plain text
962 #: en/lb_config.1:268
963958 msgid ""
964959 "sets boot parameters specific to debian-live. A complete list of boot "
965960 "parameters can be found in the I<live-boot>(7) and I<live-config>(7) manual "
967962 msgstr ""
968963
969964 #. type: IP
965 #: en/lb_config.1:266
966 #, no-wrap
967 msgid "B<--bootloader> grub|grub2|syslinux"
968 msgstr ""
969
970 #. type: Plain text
970971 #: en/lb_config.1:268
971 #, no-wrap
972 msgid "B<--bootloader> grub|grub2|syslinux"
973 msgstr ""
974
975 #. type: Plain text
976 #: en/lb_config.1:270
977972 msgid ""
978973 "defines which bootloader is being used in the generated image. This has only "
979974 "an effect if the selected binary image type does allow to choose the "
986981 msgstr ""
987982
988983 #. type: IP
984 #: en/lb_config.1:268
985 #, no-wrap
986 msgid "B<--cache> true|false"
987 msgstr ""
988
989 #. type: Plain text
989990 #: en/lb_config.1:270
990 #, no-wrap
991 msgid "B<--bootstrap> cdebootstrap|cdebootstrap-static|debootstrap"
992 msgstr ""
993
994 #. type: Plain text
995 #: en/lb_config.1:272
996 msgid ""
997 "defines which program is used to bootstrap the debian chroot, default is "
998 "debootstrap."
999 msgstr ""
1000
1001 #. type: IP
1002 #: en/lb_config.1:272
1003 #, no-wrap
1004 msgid "B<--cache> true|false"
1005 msgstr ""
1006
1007 #. type: Plain text
1008 #: en/lb_config.1:274
1009991 msgid ""
1010992 "defines globally if any cache should be used at all. Different caches can be "
1011993 "controlled through the their own options."
1012994 msgstr ""
1013995
1014996 #. type: IP
1015 #: en/lb_config.1:274
997 #: en/lb_config.1:270
1016998 #, no-wrap
1017999 msgid "B<--cache-indices> true|false"
10181000 msgstr ""
10191001
10201002 #. type: Plain text
1021 #: en/lb_config.1:276
1003 #: en/lb_config.1:272
10221004 msgid ""
10231005 "defines if downloaded package indices and lists should be cached which is "
10241006 "false by default. Enabling it would allow to rebuild an image completely "
10261008 msgstr ""
10271009
10281010 #. type: IP
1029 #: en/lb_config.1:276
1011 #: en/lb_config.1:272
10301012 #, no-wrap
10311013 msgid "B<--cache-packages> true|false"
10321014 msgstr ""
10331015
10341016 #. type: Plain text
1035 #: en/lb_config.1:278
1017 #: en/lb_config.1:274
10361018 msgid ""
10371019 "defines if downloaded packages files should be cached which is true by "
10381020 "default. Disabling it does save space consumption in your build directory, "
10431025 msgstr ""
10441026
10451027 #. type: IP
1046 #: en/lb_config.1:278
1028 #: en/lb_config.1:274
10471029 #, no-wrap
10481030 msgid "B<--cache-stages> true|false|I<STAGE>|\"I<STAGES>\""
10491031 msgstr ""
10501032
10511033 #. type: Plain text
1052 #: en/lb_config.1:280
1034 #: en/lb_config.1:276
10531035 msgid ""
10541036 "sets which stages should be cached. By default set to bootstrap. As an "
10551037 "exception to the normal stage names, also rootfs can be used here which does "
10591041 msgstr ""
10601042
10611043 #. type: IP
1062 #: en/lb_config.1:280
1044 #: en/lb_config.1:276
10631045 #, no-wrap
10641046 msgid "B<--checksums> md5|sha1|sha256|none"
10651047 msgstr ""
10661048
10671049 #. type: Plain text
1068 #: en/lb_config.1:282
1050 #: en/lb_config.1:278
10691051 msgid ""
10701052 "defines if the binary image should contain a file called md5sums.txt, "
10711053 "sha1sums.txt and/or sha256sums.txt. These lists all files on the image "
10771059 msgstr ""
10781060
10791061 #. type: IP
1080 #: en/lb_config.1:282
1062 #: en/lb_config.1:278
10811063 #, no-wrap
10821064 msgid "B<--compression> bzip2|gzip|lzip|none"
10831065 msgstr ""
10841066
10851067 #. type: Plain text
1086 #: en/lb_config.1:284
1068 #: en/lb_config.1:280
10871069 msgid ""
10881070 "defines the compression program to be used to compress tarballs. Defaults to "
10891071 "gzip."
10901072 msgstr ""
10911073
10921074 #. type: IP
1093 #: en/lb_config.1:284
1075 #: en/lb_config.1:280
10941076 #, no-wrap
10951077 msgid "B<--config> I<GIT_URL>::I<GIT_ID>"
10961078 msgstr ""
10971079
10981080 #. type: Plain text
1099 #: en/lb_config.1:286
1081 #: en/lb_config.1:282
11001082 msgid ""
11011083 "allows to bootstrap a config tree from a git repositories, optionally "
11021084 "appended by a Git Id (branch, commit, tag, etc.)."
11031085 msgstr ""
11041086
11051087 #. type: IP
1106 #: en/lb_config.1:286
1088 #: en/lb_config.1:282
11071089 #, no-wrap
11081090 msgid "B<--build-with-chroot> true|false"
11091091 msgstr ""
11101092
11111093 #. type: Plain text
1112 #: en/lb_config.1:288
1094 #: en/lb_config.1:284
11131095 msgid ""
11141096 "defines whether live-build should use the tools from within the chroot to "
11151097 "build the binary image or not by using and including the host system's "
11241106 msgstr ""
11251107
11261108 #. type: IP
1127 #: en/lb_config.1:288
1109 #: en/lb_config.1:284
11281110 #, no-wrap
11291111 msgid "B<--chroot-filesystem> ext2|ext3|ext4|squashfs|jffs2|none"
11301112 msgstr ""
11311113
11321114 #. type: Plain text
1133 #: en/lb_config.1:290
1115 #: en/lb_config.1:286
11341116 msgid ""
11351117 "defines which filesystem type should be used for the root filesystem image. "
11361118 "If you use none, then no filesystem image is created and the root filesystem "
11411123 msgstr ""
11421124
11431125 #. type: IP
1144 #: en/lb_config.1:290
1126 #: en/lb_config.1:286
11451127 #, no-wrap
11461128 msgid "B<--clean>"
11471129 msgstr ""
11481130
11491131 #. type: Plain text
1150 #: en/lb_config.1:292
1132 #: en/lb_config.1:288
11511133 msgid ""
11521134 "minimizes config directory by automatically removing unused and thus empty "
11531135 "subdirectories."
11541136 msgstr ""
11551137
11561138 #. type: IP
1157 #: en/lb_config.1:292
1139 #: en/lb_config.1:288
11581140 #, no-wrap
11591141 msgid "-c|B<--conffile> I<FILE>"
11601142 msgstr ""
11611143
11621144 #. type: Plain text
1163 #: en/lb_config.1:294
1145 #: en/lb_config.1:290
11641146 msgid ""
11651147 "using a user specified alternative configuration file in addition to the "
11661148 "normally used one in the config directory."
11671149 msgstr ""
11681150
11691151 #. type: IP
1170 #: en/lb_config.1:294
1152 #: en/lb_config.1:290
11711153 #, no-wrap
11721154 msgid "B<--debconf-frontend> dialog|editor|noninteractive|readline"
11731155 msgstr ""
11741156
11751157 #. type: Plain text
1176 #: en/lb_config.1:296
1158 #: en/lb_config.1:292
11771159 msgid ""
11781160 "defines what value the debconf frontend should be set to inside the chroot. "
11791161 "Note that setting it to anything but noninteractive, which is the default, "
11811163 msgstr ""
11821164
11831165 #. type: IP
1184 #: en/lb_config.1:296
1166 #: en/lb_config.1:292
11851167 #, no-wrap
11861168 msgid "B<--debconf-priority> low|medium|high|critical"
11871169 msgstr ""
11881170
11891171 #. type: Plain text
1190 #: en/lb_config.1:298
1172 #: en/lb_config.1:294
11911173 msgid ""
11921174 "defines what value the debconf priority should be set to inside the chroot. "
11931175 "By default, it is set to critical, which means that almost no questions are "
11961178 msgstr ""
11971179
11981180 #. type: IP
1199 #: en/lb_config.1:298
1181 #: en/lb_config.1:294
12001182 #, no-wrap
12011183 msgid "B<--debian-installer> true|cdrom|netinst|netboot|businesscard|live|false"
12021184 msgstr ""
12031185
12041186 #. type: Plain text
1205 #: en/lb_config.1:300
1187 #: en/lb_config.1:296
12061188 msgid ""
12071189 "defines which type, if any, of the debian-installer should be included in "
12081190 "the resulting binary image. By default, no installer is included. All "
12141196 msgstr ""
12151197
12161198 #. type: IP
1217 #: en/lb_config.1:300
1199 #: en/lb_config.1:296
12181200 #, no-wrap
12191201 msgid "B<--debian-installer-distribution> daily|I<CODENAME>"
12201202 msgstr ""
12211203
12221204 #. type: Plain text
1223 #: en/lb_config.1:302
1205 #: en/lb_config.1:298
12241206 msgid ""
12251207 "defines the distribution where the debian-installer files should be taken "
12261208 "out from. Normally, this should be set to the same distribution as the live "
12291211 msgstr ""
12301212
12311213 #. type: IP
1232 #: en/lb_config.1:302
1214 #: en/lb_config.1:298
12331215 #, no-wrap
12341216 msgid "B<--debian-installer-preseedfile> I<FILE>|I<URL>"
12351217 msgstr ""
12361218
12371219 #. type: Plain text
1238 #: en/lb_config.1:304
1220 #: en/lb_config.1:300
12391221 msgid ""
12401222 "sets the filename or URL for an optionally used and included preseeding file "
12411223 "for debian-installer. If config/binary_debian-installer/preseed.cfg exists, "
12431225 msgstr ""
12441226
12451227 #. type: IP
1246 #: en/lb_config.1:304
1228 #: en/lb_config.1:300
12471229 #, no-wrap
12481230 msgid "B<--debian-installer-gui> true|false"
12491231 msgstr ""
12501232
12511233 #. type: Plain text
1252 #: en/lb_config.1:306
1234 #: en/lb_config.1:302
12531235 msgid ""
12541236 "defines if the debian-installer graphical GTK interface should be true or "
12551237 "not. In Debian mode and for most versions of Ubuntu, this option is true, "
12571239 msgstr ""
12581240
12591241 #. type: IP
1260 #: en/lb_config.1:306 en/live-build.7:36
1242 #: en/lb_config.1:302 en/live-build.7:36
12611243 #, no-wrap
12621244 msgid "B<--debug>"
12631245 msgstr ""
12641246
12651247 #. type: Plain text
1248 #: en/lb_config.1:304
1249 msgid "turn on debugging informational messages."
1250 msgstr ""
1251
1252 #. type: IP
1253 #: en/lb_config.1:304
1254 #, no-wrap
1255 msgid "-d|B<--distribution> I<CODENAME>"
1256 msgstr ""
1257
1258 #. type: Plain text
1259 #: en/lb_config.1:306
1260 msgid "defines the distribution of the resulting live system."
1261 msgstr ""
1262
1263 #. type: IP
1264 #: en/lb_config.1:306
1265 #, no-wrap
1266 msgid "-d|B<--parent-distribution> I<CODENAME>"
1267 msgstr ""
1268
1269 #. type: Plain text
12661270 #: en/lb_config.1:308
1267 msgid "turn on debugging informational messages."
1271 msgid ""
1272 "defines the parent distribution for derivatives of the resulting live system."
12681273 msgstr ""
12691274
12701275 #. type: IP
12711276 #: en/lb_config.1:308
12721277 #, no-wrap
1273 msgid "-d|B<--distribution> I<CODENAME>"
1278 msgid "-d|B<--parent-debian-installer-distribution> I<CODENAME>"
12741279 msgstr ""
12751280
12761281 #. type: Plain text
12771282 #: en/lb_config.1:310
1278 msgid "defines the distribution of the resulting live system."
1279 msgstr ""
1280
1281 #. type: IP
1282 #: en/lb_config.1:310
1283 #, no-wrap
1284 msgid "-d|B<--parent-distribution> I<CODENAME>"
1285 msgstr ""
1286
1287 #. type: Plain text
1288 #: en/lb_config.1:312
1289 msgid ""
1290 "defines the parent distribution for derivatives of the resulting live system."
1291 msgstr ""
1292
1293 #. type: IP
1294 #: en/lb_config.1:312
1295 #, no-wrap
1296 msgid "-d|B<--parent-debian-installer-distribution> I<CODENAME>"
1297 msgstr ""
1298
1299 #. type: Plain text
1300 #: en/lb_config.1:314
13011283 msgid ""
13021284 "defines the parent debian-installer distribution for derivatives of the "
13031285 "resulting live system."
13041286 msgstr ""
13051287
13061288 #. type: IP
1307 #: en/lb_config.1:314
1289 #: en/lb_config.1:310
13081290 #, no-wrap
13091291 msgid "B<--dump>"
13101292 msgstr ""
13111293
13121294 #. type: Plain text
1313 #: en/lb_config.1:316
1295 #: en/lb_config.1:312
13141296 msgid ""
13151297 "prepares a report of the currently present live system configuration and the "
13161298 "version of live-build used. This is useful to provide if you submit bug "
13191301 msgstr ""
13201302
13211303 #. type: IP
1322 #: en/lb_config.1:316
1304 #: en/lb_config.1:312
13231305 #, no-wrap
13241306 msgid "B<--fdisk> fdisk|fdisk.dist"
13251307 msgstr ""
13261308
13271309 #. type: Plain text
1328 #: en/lb_config.1:318
1310 #: en/lb_config.1:314
13291311 msgid ""
13301312 "sets the filename of the fdisk binary from the host system that should be "
13311313 "used. This is autodetected and does generally not need any customization."
13321314 msgstr ""
13331315
13341316 #. type: IP
1335 #: en/lb_config.1:318 en/live-build.7:38
1317 #: en/lb_config.1:314 en/live-build.7:38
13361318 #, no-wrap
13371319 msgid "B<--force>"
13381320 msgstr ""
13391321
13401322 #. type: Plain text
1341 #: en/lb_config.1:320
1323 #: en/lb_config.1:316
13421324 msgid ""
13431325 "forces re-execution of already run stages. Use only if you know what you are "
13441326 "doing. It is generally safer to use B<lb clean> to clean up before re-"
13461328 msgstr ""
13471329
13481330 #. type: IP
1349 #: en/lb_config.1:320
1331 #: en/lb_config.1:316
13501332 #, no-wrap
13511333 msgid "B<--grub-splash> I<FILE>"
13521334 msgstr ""
13531335
13541336 #. type: Plain text
1355 #: en/lb_config.1:322
1337 #: en/lb_config.1:318
13561338 msgid ""
13571339 "defines the name of an optional to be included splash screen graphic for the "
13581340 "grub bootloader."
13591341 msgstr ""
13601342
13611343 #. type: IP
1362 #: en/lb_config.1:322
1344 #: en/lb_config.1:318
13631345 #, no-wrap
13641346 msgid "B<--gzip-options> I<OPTION>|\"I<OPTIONS>\""
13651347 msgstr ""
13661348
13671349 #. type: Plain text
1368 #: en/lb_config.1:324
1350 #: en/lb_config.1:320
13691351 msgid ""
13701352 "defines the default options that will be appended to (almost) every gzip "
13711353 "call during the building of the image. By default, this is set to --best to "
13741356 msgstr ""
13751357
13761358 #. type: IP
1377 #: en/lb_config.1:324
1359 #: en/lb_config.1:320
13781360 #, no-wrap
13791361 msgid "B<--hooks> I<FILE>"
13801362 msgstr ""
13811363
13821364 #. type: Plain text
1383 #: en/lb_config.1:326
1365 #: en/lb_config.1:322
13841366 msgid ""
13851367 "defines which hooks available in /usr/share/live/build/examples/hooks should "
13861368 "be activated. Normally, there are no hooks executed. Make sure you know and "
13881370 msgstr ""
13891371
13901372 #. type: IP
1391 #: en/lb_config.1:326
1373 #: en/lb_config.1:322
13921374 #, no-wrap
13931375 msgid "B<--ignore-system-defaults>"
13941376 msgstr ""
13951377
13961378 #. type: Plain text
1397 #: en/lb_config.1:328
1379 #: en/lb_config.1:324
13981380 msgid ""
13991381 "B<lb config> by default reads system defaults from I</etc/live/build.conf> "
14001382 "and I</etc/live/build/*> when generating a new live system config directory. "
14031385 msgstr ""
14041386
14051387 #. type: IP
1406 #: en/lb_config.1:328
1388 #: en/lb_config.1:324
14071389 #, no-wrap
14081390 msgid "B<--initramfs> auto|none|live-boot|casper"
14091391 msgstr ""
14101392
14111393 #. type: Plain text
1412 #: en/lb_config.1:330
1394 #: en/lb_config.1:326
14131395 msgid ""
14141396 "sets the name of package that contains the live system specific initramfs "
14151397 "modification. By default, auto is used, which means that at build time of "
14201402 msgstr ""
14211403
14221404 #. type: IP
1423 #: en/lb_config.1:330
1405 #: en/lb_config.1:326
14241406 #, no-wrap
14251407 msgid "B<--initramfs-compression> bzip2|gzip|lzma]"
14261408 msgstr ""
14271409
14281410 #. type: Plain text
1429 #: en/lb_config.1:332
1411 #: en/lb_config.1:328
14301412 msgid ""
14311413 "defines the compression program to be used to compress the initramfs. "
14321414 "Defaults to gzip."
14331415 msgstr ""
14341416
14351417 #. type: IP
1436 #: en/lb_config.1:332
1418 #: en/lb_config.1:328
14371419 #, no-wrap
14381420 msgid "B<--interactive> shell"
14391421 msgstr ""
14401422
14411423 #. type: Plain text
1442 #: en/lb_config.1:334
1424 #: en/lb_config.1:330
14431425 msgid ""
14441426 "defines if after the chroot stage and before the beginning of the binary "
14451427 "stage, a interactive shell login should be spawned in the chroot in order to "
14531435 msgstr ""
14541436
14551437 #. type: IP
1438 #: en/lb_config.1:330
1439 #, no-wrap
1440 msgid "B<--isohybrid-options> I<OPTION>|\"I<OPTIONS>\""
1441 msgstr ""
1442
1443 #. type: Plain text
1444 #: en/lb_config.1:332
1445 msgid "defines options to pass to isohybrid."
1446 msgstr ""
1447
1448 #. type: IP
1449 #: en/lb_config.1:332
1450 #, no-wrap
1451 msgid "B<--iso-application> I<NAME>"
1452 msgstr ""
1453
1454 #. type: Plain text
14561455 #: en/lb_config.1:334
1457 #, no-wrap
1458 msgid "B<--isohybrid-options> I<OPTION>|\"I<OPTIONS>\""
1459 msgstr ""
1460
1461 #. type: Plain text
1462 #: en/lb_config.1:336
1463 msgid "defines options to pass to isohybrid."
1464 msgstr ""
1465
1466 #. type: IP
1467 #: en/lb_config.1:336
1468 #, no-wrap
1469 msgid "B<--iso-application> I<NAME>"
1470 msgstr ""
1471
1472 #. type: Plain text
1473 #: en/lb_config.1:338
14741456 msgid ""
14751457 "sets the APPLICATION field in the header of a resulting CD/DVD image and "
14761458 "defaults to \"Debian Live\" in debian mode, and \"Ubuntu Live\" in ubuntu "
14781460 msgstr ""
14791461
14801462 #. type: IP
1481 #: en/lb_config.1:338
1463 #: en/lb_config.1:334
14821464 #, no-wrap
14831465 msgid "B<--iso-preparer> I<NAME>"
14841466 msgstr ""
14851467
14861468 #. type: Plain text
1487 #: en/lb_config.1:340
1469 #: en/lb_config.1:336
14881470 msgid ""
14891471 "sets the PREPARER field in the header of a resulting CD/DVD image. By "
14901472 "default this is set to \"live-build I<VERSION>; http://packages.qa.debian."
14931475 msgstr ""
14941476
14951477 #. type: IP
1496 #: en/lb_config.1:340
1478 #: en/lb_config.1:336
14971479 #, no-wrap
14981480 msgid "B<--iso-publisher> I<NAME>"
14991481 msgstr ""
15001482
15011483 #. type: Plain text
1502 #: en/lb_config.1:342
1484 #: en/lb_config.1:338
15031485 msgid ""
15041486 "sets the PUBLISHED field in the header of a resulting CD/DVD image. By "
15051487 "default, this is set to 'Live Systems project; http:/live-systems.org/; "
15081490 msgstr ""
15091491
15101492 #. type: IP
1511 #: en/lb_config.1:342
1493 #: en/lb_config.1:338
15121494 #, no-wrap
15131495 msgid "B<--iso-volume> I<NAME>"
15141496 msgstr ""
15151497
15161498 #. type: Plain text
1517 #: en/lb_config.1:344
1499 #: en/lb_config.1:340
15181500 msgid ""
15191501 "sets the VOLUME field in the header of a resulting CD/DVD and defaults to "
15201502 "'(I<MODE>) (I<DISTRIBUTION>) (I<DATE>)' whereas MODE is expanded to the name "
15231505 msgstr ""
15241506
15251507 #. type: IP
1526 #: en/lb_config.1:344
1508 #: en/lb_config.1:340
15271509 #, no-wrap
15281510 msgid "B<--jffs2-eraseblock> I<SIZE>"
15291511 msgstr ""
15301512
15311513 #. type: Plain text
1532 #: en/lb_config.1:346
1514 #: en/lb_config.1:342
15331515 msgid ""
15341516 "sets the eraseblock size for a JFFS2 (Second Journaling Flash File System) "
15351517 "filesystem. The default is 64 KiB. If you use an erase block size different "
15391521 msgstr ""
15401522
15411523 #. type: IP
1542 #: en/lb_config.1:346
1524 #: en/lb_config.1:342
15431525 #, no-wrap
15441526 msgid "B<--keyring-packages> I<PACKAGE|\"PACKAGES>\""
15451527 msgstr ""
15461528
15471529 #. type: Plain text
1548 #: en/lb_config.1:348
1530 #: en/lb_config.1:344
15491531 msgid ""
15501532 "sets the keyring package or additional keyring packages. By default this is "
15511533 "set to debian-archive-keyring."
15521534 msgstr ""
15531535
15541536 #. type: IP
1555 #: en/lb_config.1:348
1537 #: en/lb_config.1:344
15561538 #, no-wrap
15571539 msgid "-k|B<--linux-flavours> I<FLAVOUR>|\"I<FLAVOURS>\""
15581540 msgstr ""
15591541
15601542 #. type: Plain text
1561 #: en/lb_config.1:350
1543 #: en/lb_config.1:346
15621544 msgid ""
15631545 "sets the kernel flavours to be installed. Note that in case you specify more "
15641546 "than that the first will be configured the default kernel that gets booted."
15651547 msgstr ""
15661548
15671549 #. type: IP
1568 #: en/lb_config.1:350
1550 #: en/lb_config.1:346
15691551 #, no-wrap
15701552 msgid "B<--linux-packages> \"I<PACKAGES>\""
15711553 msgstr ""
15721554
15731555 #. type: Plain text
1574 #: en/lb_config.1:352
1556 #: en/lb_config.1:348
15751557 msgid ""
15761558 "sets the internal name of the kernel packages naming scheme. If you use "
15771559 "debian kernel packages, you will not have to adjust it. If you decide to use "
15781560 "custom kernel packages that do not follow the debian naming scheme, remember "
15791561 "to set this option to the stub of the packages only (for debian this is "
15801562 "linux-image-2.6), so that I<STUB>-I<FLAVOUR> results in a valid package name "
1581 "(for debian e.g. linux-image-2.6-486). Preferably you use the meta package "
1582 "name, if any, for the stub, so that your configuration is ABI independent. "
1583 "Also don't forget that you have to include stubs of the binary modules "
1584 "packages for unionfs or aufs, and squashfs if you built them out-of-tree."
1585 msgstr ""
1586
1587 #. type: IP
1588 #: en/lb_config.1:352
1563 "(for debian e.g. linux-image-586). Preferably you use the meta package name, "
1564 "if any, for the stub, so that your configuration is ABI independent. Also "
1565 "don't forget that you have to include stubs of the binary modules packages "
1566 "for unionfs or aufs, and squashfs if you built them out-of-tree."
1567 msgstr ""
1568
1569 #. type: IP
1570 #: en/lb_config.1:348
15891571 #, no-wrap
15901572 msgid "B<--losetup> losetup|losetup.orig"
15911573 msgstr ""
15921574
15931575 #. type: Plain text
1594 #: en/lb_config.1:354
1576 #: en/lb_config.1:350
15951577 msgid ""
15961578 "sets the filename of the losetup binary from the host system that should be "
15971579 "used. This is autodetected and does generally not need any customization."
15981580 msgstr ""
15991581
16001582 #. type: IP
1601 #: en/lb_config.1:354
1583 #: en/lb_config.1:350
16021584 #, no-wrap
16031585 msgid "B<--memtest> memtest86+|memtest86|none"
16041586 msgstr ""
16051587
16061588 #. type: Plain text
1607 #: en/lb_config.1:356
1589 #: en/lb_config.1:352
16081590 msgid ""
16091591 "defines if memtest, memtest86+ or no memory tester at all should be included "
16101592 "as secondary bootloader configuration. This is only available on amd64 and "
16121594 msgstr ""
16131595
16141596 #. type: IP
1615 #: en/lb_config.1:356
1597 #: en/lb_config.1:352
16161598 #, no-wrap
16171599 msgid "-m|B<--parent-mirror-bootstrap> I<URL>"
16181600 msgstr ""
16191601
16201602 #. type: Plain text
1621 #: en/lb_config.1:358
1603 #: en/lb_config.1:354
16221604 msgid ""
16231605 "sets the location of the debian package mirror that should be used to "
16241606 "bootstrap from. This defaults to http://ftp.de.debian.org/debian/ which may "
16261608 msgstr ""
16271609
16281610 #. type: IP
1629 #: en/lb_config.1:358
1611 #: en/lb_config.1:354
16301612 #, no-wrap
16311613 msgid "B<--parent-mirror-chroot> I<URL>"
16321614 msgstr ""
16331615
16341616 #. type: Plain text
1635 #: en/lb_config.1:360
1617 #: en/lb_config.1:356
16361618 msgid ""
16371619 "sets the location of the debian package mirror that will be used to fetch "
16381620 "the packages in order to build the live system. By default, this is set to "
16401622 msgstr ""
16411623
16421624 #. type: IP
1643 #: en/lb_config.1:360
1625 #: en/lb_config.1:356
16441626 #, no-wrap
16451627 msgid "B<--parent-mirror-chroot-security> I<URL>"
16461628 msgstr ""
16471629
16481630 #. type: Plain text
1649 #: en/lb_config.1:362
1631 #: en/lb_config.1:358
16501632 msgid ""
16511633 "sets the location of the debian security package mirror that will be used to "
16521634 "fetch the packages in order to build the live system. By default, this "
16541636 msgstr ""
16551637
16561638 #. type: IP
1657 #: en/lb_config.1:362
1639 #: en/lb_config.1:358
16581640 #, no-wrap
16591641 msgid "B<--parent-mirror-chroot-updates> I<URL>"
16601642 msgstr ""
16611643
16621644 #. type: Plain text
1663 #: en/lb_config.1:364
1645 #: en/lb_config.1:360
16641646 msgid ""
16651647 "sets the location of the debian updates package mirror that will be used to "
16661648 "fetch packages in order to build the live system. By default, this is set to "
16681650 msgstr ""
16691651
16701652 #. type: IP
1671 #: en/lb_config.1:364
1653 #: en/lb_config.1:360
16721654 #, no-wrap
16731655 msgid "B<--parent-mirror-chroot-backports> I<URL>"
16741656 msgstr ""
16751657
16761658 #. type: Plain text
1677 #: en/lb_config.1:366
1659 #: en/lb_config.1:362
16781660 msgid ""
16791661 "sets the location of the debian backports package mirror that will be used "
16801662 "to fetch packages in order to build the live system. By default, this points "
16821664 msgstr ""
16831665
16841666 #. type: IP
1685 #: en/lb_config.1:366
1667 #: en/lb_config.1:362
16861668 #, no-wrap
16871669 msgid "B<--parent-mirror-binary> I<URL>"
16881670 msgstr ""
16891671
16901672 #. type: Plain text
1691 #: en/lb_config.1:368
1673 #: en/lb_config.1:364
16921674 msgid ""
16931675 "sets the location of the debian package mirror that should end up configured "
16941676 "in the final image and which is the one a user would see and use. This has "
16951677 "not necessarily to be the same that is used to build the image, e.g. if you "
16961678 "use a local mirror but want to have an official mirror in the image. By "
1697 "default, 'http://http.debian.net/debian/' is used."
1698 msgstr ""
1699
1700 #. type: IP
1701 #: en/lb_config.1:368
1679 "default, 'http://httpredir.debian.org/debian/' is used."
1680 msgstr ""
1681
1682 #. type: IP
1683 #: en/lb_config.1:364
17021684 #, no-wrap
17031685 msgid "B<--parent-mirror-binary-security> I<URL>"
17041686 msgstr ""
17051687
17061688 #. type: Plain text
1707 #: en/lb_config.1:370
1689 #: en/lb_config.1:366
17081690 msgid ""
17091691 "sets the location of the debian security package mirror that should end up "
17101692 "configured in the final image. By default, 'http://security.debian.org/' is "
17121694 msgstr ""
17131695
17141696 #. type: IP
1715 #: en/lb_config.1:370
1697 #: en/lb_config.1:366
17161698 #, no-wrap
17171699 msgid "B<--parent-mirror-binary-updates> I<URL>"
17181700 msgstr ""
17191701
17201702 #. type: Plain text
1721 #: en/lb_config.1:372
1703 #: en/lb_config.1:368
17221704 msgid ""
17231705 "sets the location of the debian updates package mirror that should end up "
17241706 "configured in the final image. By default, the value of --parent-mirror-"
17261708 msgstr ""
17271709
17281710 #. type: IP
1729 #: en/lb_config.1:372
1711 #: en/lb_config.1:368
17301712 #, no-wrap
17311713 msgid "B<--parent-mirror-binary-backports> I<URL>"
17321714 msgstr ""
17331715
17341716 #. type: Plain text
1735 #: en/lb_config.1:374
1717 #: en/lb_config.1:370
17361718 msgid ""
17371719 "sets the location of the debian backports package mirror that should end up "
17381720 "configured in the final image. By default, 'http://backports.debian.org/"
17401722 msgstr ""
17411723
17421724 #. type: IP
1743 #: en/lb_config.1:374
1725 #: en/lb_config.1:370
17441726 #, no-wrap
17451727 msgid "B<--parent-mirror-debian-installer> I<URL>"
17461728 msgstr ""
17471729
17481730 #. type: Plain text
1749 #: en/lb_config.1:376
1731 #: en/lb_config.1:372
17501732 msgid ""
17511733 "sets the location of the mirror that will be used to fetch the debian "
17521734 "installer images. By default, this points to the same mirror used to build "
17541736 msgstr ""
17551737
17561738 #. type: IP
1757 #: en/lb_config.1:376
1739 #: en/lb_config.1:372
17581740 #, no-wrap
17591741 msgid "B<--mirror-bootstrap> I<URL>"
17601742 msgstr ""
17611743
17621744 #. type: Plain text
1763 #: en/lb_config.1:378
1745 #: en/lb_config.1:374
17641746 msgid ""
17651747 "sets the location of the debian package mirror that should be used to "
17661748 "bootstrap the derivative from. This defaults to http://ftp.de.debian.org/"
17681750 msgstr ""
17691751
17701752 #. type: IP
1771 #: en/lb_config.1:378
1753 #: en/lb_config.1:374
17721754 #, no-wrap
17731755 msgid "B<--mirror-chroot> I<URL>"
17741756 msgstr ""
17751757
17761758 #. type: Plain text
1777 #: en/lb_config.1:380
1759 #: en/lb_config.1:376
17781760 msgid ""
17791761 "sets the location of the debian package mirror that will be used to fetch "
17801762 "the packages of the derivative in order to build the live system. By "
17821764 msgstr ""
17831765
17841766 #. type: IP
1785 #: en/lb_config.1:380
1767 #: en/lb_config.1:376
17861768 #, no-wrap
17871769 msgid "B<--mirror-chroot-security> I<URL>"
17881770 msgstr ""
17891771
17901772 #. type: Plain text
1791 #: en/lb_config.1:382
1773 #: en/lb_config.1:378
17921774 msgid ""
17931775 "sets the location of the debian security package mirror that will be used to "
17941776 "fetch the packages of the derivative in order to build the live system. By "
17961778 msgstr ""
17971779
17981780 #. type: IP
1799 #: en/lb_config.1:382
1781 #: en/lb_config.1:378
18001782 #, no-wrap
18011783 msgid "B<--mirror-chroot-updates> I<URL>"
18021784 msgstr ""
18031785
18041786 #. type: Plain text
1805 #: en/lb_config.1:384
1787 #: en/lb_config.1:380
18061788 msgid ""
18071789 "sets the location of the debian updates package mirror that will be used to "
18081790 "fetch packages of the derivative in order to build the live system. By "
18101792 msgstr ""
18111793
18121794 #. type: IP
1813 #: en/lb_config.1:384
1795 #: en/lb_config.1:380
18141796 #, no-wrap
18151797 msgid "B<--mirror-chroot-backports> I<URL>"
18161798 msgstr ""
18171799
18181800 #. type: Plain text
1819 #: en/lb_config.1:386
1801 #: en/lb_config.1:382
18201802 msgid ""
18211803 "sets the location of the debian backports package mirror that will be used "
18221804 "to fetch packages of the derivative in order to build the live system. By "
18241806 msgstr ""
18251807
18261808 #. type: IP
1827 #: en/lb_config.1:386
1809 #: en/lb_config.1:382
18281810 #, no-wrap
18291811 msgid "B<--mirror-binary> I<URL>"
18301812 msgstr ""
18311813
18321814 #. type: Plain text
1833 #: en/lb_config.1:388
1815 #: en/lb_config.1:384
18341816 msgid ""
18351817 "sets the location of the derivative package mirror that should end up "
18361818 "configured in the final image and which is the one a user would see and use. "
18401822 msgstr ""
18411823
18421824 #. type: IP
1843 #: en/lb_config.1:388
1825 #: en/lb_config.1:384
18441826 #, no-wrap
18451827 msgid "B<--mirror-binary-security> I<URL>"
18461828 msgstr ""
18471829
18481830 #. type: Plain text
1849 #: en/lb_config.1:390
1831 #: en/lb_config.1:386
18501832 msgid ""
18511833 "sets the location of the derivatives security package mirror that should end "
18521834 "up configured in the final image."
18531835 msgstr ""
18541836
18551837 #. type: IP
1856 #: en/lb_config.1:390
1838 #: en/lb_config.1:386
18571839 #, no-wrap
18581840 msgid "B<--mirror-binary-updates> I<URL>"
18591841 msgstr ""
18601842
18611843 #. type: Plain text
1862 #: en/lb_config.1:392
1844 #: en/lb_config.1:388
18631845 msgid ""
18641846 "sets the location of the derivatives updates package mirror that should end "
18651847 "up configured in the final image."
18661848 msgstr ""
18671849
18681850 #. type: IP
1869 #: en/lb_config.1:392
1851 #: en/lb_config.1:388
18701852 #, no-wrap
18711853 msgid "B<--mirror-binary-backports> I<URL>"
18721854 msgstr ""
18731855
18741856 #. type: Plain text
1875 #: en/lb_config.1:394
1857 #: en/lb_config.1:390
18761858 msgid ""
18771859 "sets the location of the derivatives backports package mirror that should "
18781860 "end up configured in the final image."
18791861 msgstr ""
18801862
18811863 #. type: IP
1882 #: en/lb_config.1:394
1864 #: en/lb_config.1:390
18831865 #, no-wrap
18841866 msgid "B<--mirror-debian-installer> I<URL>"
18851867 msgstr ""
18861868
18871869 #. type: Plain text
1888 #: en/lb_config.1:396
1870 #: en/lb_config.1:392
18891871 msgid ""
18901872 "sets the location of the mirror that will be used to fetch the debian "
18911873 "installer images of the derivative. By default, this points to the same "
18931875 msgstr ""
18941876
18951877 #. type: IP
1896 #: en/lb_config.1:396
1878 #: en/lb_config.1:392
18971879 #, no-wrap
18981880 msgid "B<--mode> debian|progress|ubuntu"
18991881 msgstr ""
19001882
19011883 #. type: Plain text
1902 #: en/lb_config.1:398
1884 #: en/lb_config.1:394
19031885 msgid ""
19041886 "defines a global mode to load project specific defaults. By default this is "
19051887 "set to debian."
19061888 msgstr ""
19071889
19081890 #. type: IP
1909 #: en/lb_config.1:398
1891 #: en/lb_config.1:394
19101892 #, no-wrap
19111893 msgid "B<--system> live|normal"
19121894 msgstr ""
19131895
19141896 #. type: Plain text
1915 #: en/lb_config.1:400
1897 #: en/lb_config.1:396
19161898 msgid ""
19171899 "defines if the resulting system image should a live system or a normal, non-"
19181900 "live system."
19191901 msgstr ""
19201902
19211903 #. type: IP
1922 #: en/lb_config.1:400
1904 #: en/lb_config.1:396
19231905 #, no-wrap
19241906 msgid "B<--net-root-filesystem> nfs|cfs"
19251907 msgstr ""
19261908
19271909 #. type: Plain text
1928 #: en/lb_config.1:402
1910 #: en/lb_config.1:398
19291911 msgid ""
19301912 "defines the filesystem that will be configured in the bootloader "
19311913 "configuration for your netboot image. This defaults to nfs."
19321914 msgstr ""
19331915
19341916 #. type: IP
1935 #: en/lb_config.1:402
1917 #: en/lb_config.1:398
19361918 #, no-wrap
19371919 msgid "B<--net-root-mountoptions> I<OPTIONS>"
19381920 msgstr ""
19391921
19401922 #. type: Plain text
1941 #: en/lb_config.1:404
1923 #: en/lb_config.1:400
19421924 msgid ""
19431925 "sets additional options for mounting the root filesystem in netboot images "
19441926 "and is by default empty."
19451927 msgstr ""
19461928
19471929 #. type: IP
1948 #: en/lb_config.1:404
1930 #: en/lb_config.1:400
19491931 #, no-wrap
19501932 msgid "B<--net-root-path> I<PATH>"
19511933 msgstr ""
19521934
19531935 #. type: Plain text
1954 #: en/lb_config.1:406
1936 #: en/lb_config.1:402
19551937 msgid ""
19561938 "sets the file path that will be configured in the bootloader configuration "
19571939 "for your netboot image. This defaults to /srv/debian-live in debian mode, "
19591941 msgstr ""
19601942
19611943 #. type: IP
1962 #: en/lb_config.1:406
1944 #: en/lb_config.1:402
19631945 #, no-wrap
19641946 msgid "B<--net-root-server> I<IP>|I<HOSTNAME>"
19651947 msgstr ""
19661948
19671949 #. type: Plain text
1968 #: en/lb_config.1:408
1950 #: en/lb_config.1:404
19691951 msgid ""
19701952 "sets the IP or hostname that will be configured in the bootloader "
19711953 "configuration for the root filesystem of your netboot image. This defaults "
19731955 msgstr ""
19741956
19751957 #. type: IP
1958 #: en/lb_config.1:404
1959 #, no-wrap
1960 msgid "B<--net-cow-filesystem> nfs|cfs"
1961 msgstr ""
1962
1963 #. type: Plain text
1964 #: en/lb_config.1:406
1965 msgid ""
1966 "defines the filesystem type for the copy-on-write layer and defaults to nfs."
1967 msgstr ""
1968
1969 #. type: IP
1970 #: en/lb_config.1:406
1971 #, no-wrap
1972 msgid "B<--net-cow-mountoptions> I<OPTIONS>"
1973 msgstr ""
1974
1975 #. type: Plain text
19761976 #: en/lb_config.1:408
1977 #, no-wrap
1978 msgid "B<--net-cow-filesystem> nfs|cfs"
1979 msgstr ""
1980
1981 #. type: Plain text
1982 #: en/lb_config.1:410
1983 msgid ""
1984 "defines the filesystem type for the copy-on-write layer and defaults to nfs."
1985 msgstr ""
1986
1987 #. type: IP
1988 #: en/lb_config.1:410
1989 #, no-wrap
1990 msgid "B<--net-cow-mountoptions> I<OPTIONS>"
1991 msgstr ""
1992
1993 #. type: Plain text
1994 #: en/lb_config.1:412
19951977 msgid ""
19961978 "sets additional options for mounting the copy-on-write layer in netboot "
19971979 "images and is by default empty."
19981980 msgstr ""
19991981
20001982 #. type: IP
2001 #: en/lb_config.1:412
1983 #: en/lb_config.1:408
20021984 #, no-wrap
20031985 msgid "B<--net-cow-path> I<PATH>"
20041986 msgstr ""
20051987
20061988 #. type: Plain text
2007 #: en/lb_config.1:414
1989 #: en/lb_config.1:410
20081990 msgid ""
20091991 "defines the path to client writable filesystem. Anywhere that "
20101992 "I<client_mac_address> is specified in the path live-boot will substitute the "
20121994 msgstr ""
20131995
20141996 #. type: Plain text
1997 #: en/lb_config.1:413
1998 msgid "Example:"
1999 msgstr ""
2000
2001 #. type: Plain text
2002 #: en/lb_config.1:415
2003 msgid "/export/hosts/client_mac_address"
2004 msgstr ""
2005
2006 #. type: Plain text
20152007 #: en/lb_config.1:417
2016 msgid "Example:"
2008 msgid "/export/hosts/00-16-D3-33-92-E8"
2009 msgstr ""
2010
2011 #. type: IP
2012 #: en/lb_config.1:417
2013 #, no-wrap
2014 msgid "B<--net-cow-server> I<IP>|I<HOSTNAME>"
20172015 msgstr ""
20182016
20192017 #. type: Plain text
20202018 #: en/lb_config.1:419
2021 msgid "/export/hosts/client_mac_address"
2022 msgstr ""
2023
2024 #. type: Plain text
2025 #: en/lb_config.1:421
2026 msgid "/export/hosts/00-16-D3-33-92-E8"
2027 msgstr ""
2028
2029 #. type: IP
2030 #: en/lb_config.1:421
2031 #, no-wrap
2032 msgid "B<--net-cow-server> I<IP>|I<HOSTNAME>"
2033 msgstr ""
2034
2035 #. type: Plain text
2036 #: en/lb_config.1:423
20372019 msgid ""
20382020 "sets the IP or hostname that will be configured in the bootloader "
20392021 "configuration for the copy-on-write filesystem of your netboot image and is "
20412023 msgstr ""
20422024
20432025 #. type: IP
2044 #: en/lb_config.1:423
2026 #: en/lb_config.1:419
20452027 #, no-wrap
20462028 msgid "B<--net-tarball> true|false"
20472029 msgstr ""
20482030
20492031 #. type: Plain text
2050 #: en/lb_config.1:425
2032 #: en/lb_config.1:421
20512033 msgid ""
20522034 "defines if a compressed tarball should be created. Disabling this options "
20532035 "leads to no tarball at all, the plain binary directory is considered the "
20552037 msgstr ""
20562038
20572039 #. type: IP
2058 #: en/lb_config.1:425 en/live-build.7:40
2040 #: en/lb_config.1:421 en/live-build.7:40
20592041 #, no-wrap
20602042 msgid "B<--quiet>"
20612043 msgstr ""
20622044
20632045 #. type: Plain text
2064 #: en/lb_config.1:427
2046 #: en/lb_config.1:423
20652047 msgid "reduces the verbosity of messages output by B<lb build>."
20662048 msgstr ""
20672049
20682050 #. type: IP
2069 #: en/lb_config.1:427
2051 #: en/lb_config.1:423
20702052 #, no-wrap
20712053 msgid "B<--archive-areas> I<ARCHIVE_AREA>|\"I<ARCHIVE_AREAS>\""
20722054 msgstr ""
20732055
20742056 #. type: Plain text
2075 #: en/lb_config.1:429
2057 #: en/lb_config.1:425
20762058 msgid ""
20772059 "defines which package archive areas of a debian packages archive should be "
20782060 "used for configured debian package mirrors. By default, this is set to main. "
20822064 msgstr ""
20832065
20842066 #. type: IP
2067 #: en/lb_config.1:425
2068 #, no-wrap
2069 msgid "B<--parent-archive-areas> I<PARENT_ARCHIVE_AREA>|\"I<PARENT_ARCHIVE_AREAS>\""
2070 msgstr ""
2071
2072 #. type: Plain text
2073 #: en/lb_config.1:427
2074 msgid "defines the archive areas for derivatives of the resulting live system."
2075 msgstr ""
2076
2077 #. type: IP
2078 #: en/lb_config.1:427
2079 #, no-wrap
2080 msgid "B<--security> true|false"
2081 msgstr ""
2082
2083 #. type: Plain text
20852084 #: en/lb_config.1:429
2086 #, no-wrap
2087 msgid "B<--parent-archive-areas> I<PARENT_ARCHIVE_AREA>|\"I<PARENT_ARCHIVE_AREAS>\""
2088 msgstr ""
2089
2090 #. type: Plain text
2091 #: en/lb_config.1:431
2092 msgid "defines the archive areas for derivatives of the resulting live system."
2093 msgstr ""
2094
2095 #. type: IP
2096 #: en/lb_config.1:431
2097 #, no-wrap
2098 msgid "B<--security> true|false"
2099 msgstr ""
2100
2101 #. type: Plain text
2102 #: en/lb_config.1:433
21032085 msgid ""
21042086 "defines if the security repositories specified in the security mirror "
21052087 "options should be used or not."
21062088 msgstr ""
21072089
21082090 #. type: IP
2109 #: en/lb_config.1:433
2091 #: en/lb_config.1:429
21102092 #, no-wrap
21112093 msgid "B<--source> true|false"
21122094 msgstr ""
21132095
21142096 #. type: Plain text
2115 #: en/lb_config.1:435
2097 #: en/lb_config.1:431
21162098 msgid ""
21172099 "defines if a corresponding source image to the binary image should be build. "
21182100 "By default this is false because most people do not require this and would "
21222104 msgstr ""
21232105
21242106 #. type: IP
2107 #: en/lb_config.1:431
2108 #, no-wrap
2109 msgid "-s|B<--source-images> iso|netboot|tar|hdd"
2110 msgstr ""
2111
2112 #. type: Plain text
2113 #: en/lb_config.1:433
2114 msgid "defines the image type for the source image. Default is tar."
2115 msgstr ""
2116
2117 #. type: IP
2118 #: en/lb_config.1:433
2119 #, no-wrap
2120 msgid "B<--firmware-binary> true|false"
2121 msgstr ""
2122
2123 #. type: Plain text
21252124 #: en/lb_config.1:435
2126 #, no-wrap
2127 msgid "-s|B<--source-images> iso|netboot|tar|hdd"
2128 msgstr ""
2129
2130 #. type: Plain text
2131 #: en/lb_config.1:437
2132 msgid "defines the image type for the source image. Default is tar."
2133 msgstr ""
2134
2135 #. type: IP
2136 #: en/lb_config.1:437
2137 #, no-wrap
2138 msgid "B<--firmware-binary> true|false"
2139 msgstr ""
2140
2141 #. type: Plain text
2142 #: en/lb_config.1:439
21432125 msgid ""
21442126 "defines if firmware packages should be automatically included into the "
21452127 "binary pool for debian-installer. Note that only firmware packages available "
21502132 msgstr ""
21512133
21522134 #. type: IP
2153 #: en/lb_config.1:439
2135 #: en/lb_config.1:435
21542136 #, no-wrap
21552137 msgid "B<--firmware-chroot> true|false"
21562138 msgstr ""
21572139
21582140 #. type: Plain text
2159 #: en/lb_config.1:441
2141 #: en/lb_config.1:437
21602142 msgid ""
21612143 "defines if firmware packages should be automatically included into the live "
21622144 "image. Note that only firmware packages available within the configured "
21662148 msgstr ""
21672149
21682150 #. type: IP
2169 #: en/lb_config.1:441
2151 #: en/lb_config.1:437
21702152 #, no-wrap
21712153 msgid "B<--swap-file-path> I<PATH>"
21722154 msgstr ""
21732155
21742156 #. type: Plain text
2175 #: en/lb_config.1:443
2157 #: en/lb_config.1:439
21762158 msgid ""
21772159 "defines the path to a swap file to create in the binary image. Default is "
21782160 "not to create a swap file."
21792161 msgstr ""
21802162
21812163 #. type: IP
2182 #: en/lb_config.1:443
2164 #: en/lb_config.1:439
21832165 #, no-wrap
21842166 msgid "B<--swap-file-size> I<MB>"
21852167 msgstr ""
21862168
21872169 #. type: Plain text
2188 #: en/lb_config.1:445
2170 #: en/lb_config.1:441
21892171 msgid ""
21902172 "defines what size in megabytes the swap file should be, if one is to be "
21912173 "created. Default is 512MB."
21922174 msgstr ""
21932175
21942176 #. type: IP
2195 #: en/lb_config.1:445
2177 #: en/lb_config.1:441
21962178 #, no-wrap
21972179 msgid "B<--tasksel> apt|aptitude|tasksel"
21982180 msgstr ""
21992181
22002182 #. type: Plain text
2201 #: en/lb_config.1:447
2183 #: en/lb_config.1:443
22022184 msgid ""
22032185 "selects which program is used to install tasks. By default, this is set to "
22042186 "tasksel."
22052187 msgstr ""
22062188
22072189 #. type: IP
2208 #: en/lb_config.1:447
2190 #: en/lb_config.1:443
22092191 #, no-wrap
22102192 msgid "B<--templates> I<PATH>"
22112193 msgstr ""
22122194
22132195 #. type: Plain text
2214 #: en/lb_config.1:449
2196 #: en/lb_config.1:445
22152197 msgid ""
22162198 "sets the path to the templates that live-build is going to use, e.g. for "
22172199 "bootloaders. By default, this is set to /usr/share/live/build/templates/."
22182200 msgstr ""
22192201
22202202 #. type: IP
2221 #: en/lb_config.1:449
2203 #: en/lb_config.1:445
22222204 #, no-wrap
22232205 msgid "B<--hdd-size> MB"
22242206 msgstr ""
22252207
22262208 #. type: Plain text
2227 #: en/lb_config.1:451
2209 #: en/lb_config.1:447
22282210 msgid ""
22292211 "defines what size the hdd image should be. Note that although the default is "
22302212 "set to 10000 (= 10GB), it will not need 10GB space on your harddisk as the "
22322214 msgstr ""
22332215
22342216 #. type: IP
2235 #: en/lb_config.1:451
2217 #: en/lb_config.1:447
22362218 #, no-wrap
22372219 msgid "B<--updates> true|false"
22382220 msgstr ""
22392221
22402222 #. type: Plain text
2241 #: en/lb_config.1:453
2223 #: en/lb_config.1:449
22422224 msgid ""
22432225 "defines if debian updates package archives should be included in the image "
22442226 "or not."
22452227 msgstr ""
22462228
22472229 #. type: IP
2248 #: en/lb_config.1:453
2230 #: en/lb_config.1:449
22492231 #, no-wrap
22502232 msgid "B<--backports> true|false"
22512233 msgstr ""
22522234
22532235 #. type: Plain text
2254 #: en/lb_config.1:455
2236 #: en/lb_config.1:451
22552237 msgid ""
22562238 "defines if debian backports package archives should be included in the image "
22572239 "or not."
22582240 msgstr ""
22592241
22602242 #. type: IP
2261 #: en/lb_config.1:455 en/live-build.7:42
2243 #: en/lb_config.1:451 en/live-build.7:42
22622244 #, no-wrap
22632245 msgid "B<--verbose>"
22642246 msgstr ""
22652247
22662248 #. type: Plain text
2249 #: en/lb_config.1:453
2250 msgid "increases the verbosity of messages output by B<lb build>."
2251 msgstr ""
2252
2253 #. type: IP
2254 #: en/lb_config.1:453
2255 #, no-wrap
2256 msgid "B<--win32-loader true|false>"
2257 msgstr ""
2258
2259 #. FIXME
2260 #. type: Plain text
2261 #: en/lb_config.1:456
2262 msgid "defines if win32-loader should be included in the binary image or not."
2263 msgstr ""
2264
2265 #. type: SH
22672266 #: en/lb_config.1:457
2268 msgid "increases the verbosity of messages output by B<lb build>."
2269 msgstr ""
2270
2271 #. type: IP
2272 #: en/lb_config.1:457
2273 #, no-wrap
2274 msgid "B<--win32-loader true|false>"
2267 #, no-wrap
2268 msgid "ENVIRONMENT"
22752269 msgstr ""
22762270
22772271 #. FIXME
22782272 #. type: Plain text
22792273 #: en/lb_config.1:460
2280 msgid "defines if win32-loader should be included in the binary image or not."
2281 msgstr ""
2282
2283 #. type: SH
2284 #: en/lb_config.1:461
2285 #, no-wrap
2286 msgid "ENVIRONMENT"
2287 msgstr ""
2288
2289 #. FIXME
2290 #. type: Plain text
2291 #: en/lb_config.1:464
22922274 msgid ""
22932275 "Currently, command line switches can also be specified through the "
22942276 "corresponding environment variable. However, this generally should not be "
23022284
23032285 #. FIXME
23042286 #. type: IP
2287 #: en/lb_config.1:464
2288 #, no-wrap
2289 msgid "B<auto/config>"
2290 msgstr ""
2291
2292 #. type: IP
2293 #: en/lb_config.1:465
2294 #, no-wrap
2295 msgid "B</etc/live/build.conf, /etc/live/build/*>"
2296 msgstr ""
2297
2298 #. FIXME
2299 #. type: Plain text
23052300 #: en/lb_config.1:468
2306 #, no-wrap
2307 msgid "B<auto/config>"
2308 msgstr ""
2309
2310 #. type: IP
2311 #: en/lb_config.1:469
2312 #, no-wrap
2313 msgid "B</etc/live/build.conf, /etc/live/build/*>"
2314 msgstr ""
2315
2316 #. FIXME
2317 #. type: Plain text
2318 #: en/lb_config.1:472
23192301 msgid ""
23202302 "An optional, global configuration file for B<lb config> variables. It is "
23212303 "useful to specify a few system wide defaults, like "
23242306 msgstr ""
23252307
23262308 #. type: Plain text
2327 #: en/lb_config.1:477 en/live-build.7:221
2309 #: en/lb_config.1:473 en/live-build.7:219
23282310 msgid "I<live-boot>(7)"
23292311 msgstr ""
23302312
23312313 #. type: Plain text
2332 #: en/lb_config.1:479 en/live-build.7:223
2314 #: en/lb_config.1:475 en/live-build.7:221
23332315 msgid "I<live-config>(7)"
23342316 msgstr ""
55 #, fuzzy
66 msgid ""
77 msgstr ""
8 "Project-Id-Version: live-build 4.0.4-1\n"
9 "POT-Creation-Date: 2014-12-10 08:24+0100\n"
8 "Project-Id-Version: live-build 5.0~a11-1\n"
9 "POT-Creation-Date: 2015-08-23 10:57+0200\n"
1010 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1111 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1212 "Language-Team: LANGUAGE <[email protected]>\n"
2828 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
2929 #: en/live-build.7:1
3030 #, no-wrap
31 msgid "2014-12-10"
32 msgstr ""
33
34 #. type: TH
35 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
36 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
37 #: en/live-build.7:1
38 #, no-wrap
39 msgid "4.0.4-1"
31 msgid "2015-08-23"
32 msgstr ""
33
34 #. type: TH
35 #: en/lb.1:1 en/lb_binary.1:1 en/lb_bootstrap.1:1 en/lb_build.1:1
36 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
37 #: en/live-build.7:1
38 #, no-wrap
39 msgid "5.0~a11-1"
4040 msgstr ""
4141
4242 #. type: TH
6565
6666 #. type: SH
6767 #: en/lb.1:11 en/lb_binary.1:9 en/lb_bootstrap.1:9 en/lb_build.1:9
68 #: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:225 en/lb_source.1:9
68 #: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:223 en/lb_source.1:9
6969 #: en/live-build.7:11
7070 #, no-wrap
7171 msgid "DESCRIPTION"
7373
7474 #. type: SH
7575 #: en/lb.1:16 en/lb_binary.1:14 en/lb_bootstrap.1:14 en/lb_build.1:14
76 #: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:234 en/lb_source.1:14
76 #: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:232 en/lb_source.1:14
7777 #: en/live-build.7:20
7878 #, no-wrap
7979 msgid "OPTIONS"
8181
8282 #. type: SH
8383 #: en/lb.1:19 en/lb_binary.1:17 en/lb_bootstrap.1:17 en/lb_build.1:17
84 #: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:466 en/lb_source.1:17
85 #: en/live-build.7:215
84 #: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:462 en/lb_source.1:17
85 #: en/live-build.7:213
8686 #, no-wrap
8787 msgid "FILES"
8888 msgstr ""
9696
9797 #. type: SH
9898 #: en/lb.1:22 en/lb_binary.1:20 en/lb_bootstrap.1:20 en/lb_build.1:22
99 #: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:473 en/lb_source.1:20
100 #: en/live-build.7:219
99 #: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:469 en/lb_source.1:20
100 #: en/live-build.7:217
101101 #, no-wrap
102102 msgid "SEE ALSO"
103103 msgstr ""
104104
105105 #. type: Plain text
106106 #: en/lb.1:24 en/lb_binary.1:22 en/lb_bootstrap.1:22 en/lb_build.1:24
107 #: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:475 en/lb_source.1:22
107 #: en/lb_chroot.1:22 en/lb_clean.1:45 en/lb_config.1:471 en/lb_source.1:22
108108 msgid "I<live-build>(7)"
109109 msgstr ""
110110
111111 #. type: Plain text
112112 #: en/lb.1:26 en/lb_binary.1:24 en/lb_bootstrap.1:24 en/lb_build.1:26
113 #: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:481 en/lb_source.1:24
114 #: en/live-build.7:225
113 #: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:477 en/lb_source.1:24
114 #: en/live-build.7:223
115115 msgid "This program is a part of live-build."
116116 msgstr ""
117117
118118 #. type: SH
119119 #: en/lb.1:27 en/lb_binary.1:25 en/lb_bootstrap.1:25 en/lb_build.1:27
120 #: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:482 en/lb_source.1:25
120 #: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:478 en/lb_source.1:25
121 #: en/live-build.7:224
122 #, no-wrap
123 msgid "HOMEPAGE"
124 msgstr ""
125
126 #. type: Plain text
127 #: en/lb.1:29 en/lb_binary.1:27 en/lb_bootstrap.1:27 en/lb_build.1:29
128 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:480 en/lb_source.1:27
121129 #: en/live-build.7:226
122 #, no-wrap
123 msgid "HOMEPAGE"
124 msgstr ""
125
126 #. type: Plain text
127 #: en/lb.1:29 en/lb_binary.1:27 en/lb_bootstrap.1:27 en/lb_build.1:29
128 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:484 en/lb_source.1:27
129 #: en/live-build.7:228
130130 msgid ""
131131 "More information about live-build and the Live Systems project can be found "
132132 "on the homepage at E<lt>I<http://live-systems.org/>E<gt> and in the manual "
135135
136136 #. type: SH
137137 #: en/lb.1:30 en/lb_binary.1:28 en/lb_bootstrap.1:28 en/lb_build.1:30
138 #: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:485 en/lb_source.1:28
138 #: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:481 en/lb_source.1:28
139 #: en/live-build.7:227
140 #, no-wrap
141 msgid "BUGS"
142 msgstr ""
143
144 #. type: Plain text
145 #: en/lb.1:32 en/lb_binary.1:30 en/lb_bootstrap.1:30 en/lb_build.1:32
146 #: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:483 en/lb_source.1:30
139147 #: en/live-build.7:229
140 #, no-wrap
141 msgid "BUGS"
142 msgstr ""
143
144 #. type: Plain text
145 #: en/lb.1:32 en/lb_binary.1:30 en/lb_bootstrap.1:30 en/lb_build.1:32
146 #: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:487 en/lb_source.1:30
147 #: en/live-build.7:231
148148 msgid ""
149149 "Bugs can be reported by submitting a bugreport for the live-build package in "
150150 "the Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
154154
155155 #. type: SH
156156 #: en/lb.1:33 en/lb_binary.1:31 en/lb_bootstrap.1:31 en/lb_build.1:33
157 #: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:488 en/lb_source.1:31
158 #: en/live-build.7:232
157 #: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:484 en/lb_source.1:31
158 #: en/live-build.7:230
159159 #, no-wrap
160160 msgid "AUTHOR"
161161 msgstr ""
162162
163163 #. type: Plain text
164164 #: en/lb.1:34 en/lb_binary.1:32 en/lb_bootstrap.1:32 en/lb_build.1:34
165 #: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:489 en/lb_source.1:32
166 #: en/live-build.7:233
165 #: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:485 en/lb_source.1:32
166 #: en/live-build.7:231
167167 msgid ""
168168 "live-build was written by Daniel Baumann E<lt>I<[email protected]>E<gt>."
169169 msgstr ""
55 #, fuzzy
66 msgid ""
77 msgstr ""
8 "Project-Id-Version: live-build 4.0.4-1\n"
9 "POT-Creation-Date: 2014-12-10 08:24+0100\n"
8 "Project-Id-Version: live-build 5.0~a11-1\n"
9 "POT-Creation-Date: 2015-08-23 10:57+0200\n"
1010 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1111 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1212 "Language-Team: LANGUAGE <[email protected]>\n"
2828 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
2929 #: en/live-build.7:1
3030 #, no-wrap
31 msgid "2014-12-10"
31 msgid "2015-08-23"
3232 msgstr ""
3333
3434 #. type: TH
3636 #: en/lb_chroot.1:1 en/lb_clean.1:1 en/lb_config.1:1 en/lb_source.1:1
3737 #: en/live-build.7:1
3838 #, no-wrap
39 msgid "4.0.4-1"
39 msgid "5.0~a11-1"
4040 msgstr ""
4141
4242 #. type: TH
6565
6666 #. type: SH
6767 #: en/lb.1:11 en/lb_binary.1:9 en/lb_bootstrap.1:9 en/lb_build.1:9
68 #: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:225 en/lb_source.1:9
68 #: en/lb_chroot.1:9 en/lb_clean.1:9 en/lb_config.1:223 en/lb_source.1:9
6969 #: en/live-build.7:11
7070 #, no-wrap
7171 msgid "DESCRIPTION"
7373
7474 #. type: SH
7575 #: en/lb.1:16 en/lb_binary.1:14 en/lb_bootstrap.1:14 en/lb_build.1:14
76 #: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:234 en/lb_source.1:14
76 #: en/lb_chroot.1:14 en/lb_clean.1:16 en/lb_config.1:232 en/lb_source.1:14
7777 #: en/live-build.7:20
7878 #, no-wrap
7979 msgid "OPTIONS"
8181
8282 #. type: SH
8383 #: en/lb.1:19 en/lb_binary.1:17 en/lb_bootstrap.1:17 en/lb_build.1:17
84 #: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:466 en/lb_source.1:17
85 #: en/live-build.7:215
84 #: en/lb_chroot.1:17 en/lb_clean.1:38 en/lb_config.1:462 en/lb_source.1:17
85 #: en/live-build.7:213
8686 #, no-wrap
8787 msgid "FILES"
8888 msgstr ""
8989
9090 #. type: SH
9191 #: en/lb.1:22 en/lb_binary.1:20 en/lb_bootstrap.1:20 en/lb_build.1:22
92 #: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:473 en/lb_source.1:20
93 #: en/live-build.7:219
92 #: en/lb_chroot.1:20 en/lb_clean.1:43 en/lb_config.1:469 en/lb_source.1:20
93 #: en/live-build.7:217
9494 #, no-wrap
9595 msgid "SEE ALSO"
9696 msgstr ""
9797
9898 #. type: Plain text
9999 #: en/lb.1:26 en/lb_binary.1:24 en/lb_bootstrap.1:24 en/lb_build.1:26
100 #: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:481 en/lb_source.1:24
101 #: en/live-build.7:225
100 #: en/lb_chroot.1:24 en/lb_clean.1:47 en/lb_config.1:477 en/lb_source.1:24
101 #: en/live-build.7:223
102102 msgid "This program is a part of live-build."
103103 msgstr ""
104104
105105 #. type: SH
106106 #: en/lb.1:27 en/lb_binary.1:25 en/lb_bootstrap.1:25 en/lb_build.1:27
107 #: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:482 en/lb_source.1:25
107 #: en/lb_chroot.1:25 en/lb_clean.1:48 en/lb_config.1:478 en/lb_source.1:25
108 #: en/live-build.7:224
109 #, no-wrap
110 msgid "HOMEPAGE"
111 msgstr ""
112
113 #. type: Plain text
114 #: en/lb.1:29 en/lb_binary.1:27 en/lb_bootstrap.1:27 en/lb_build.1:29
115 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:480 en/lb_source.1:27
108116 #: en/live-build.7:226
109 #, no-wrap
110 msgid "HOMEPAGE"
111 msgstr ""
112
113 #. type: Plain text
114 #: en/lb.1:29 en/lb_binary.1:27 en/lb_bootstrap.1:27 en/lb_build.1:29
115 #: en/lb_chroot.1:27 en/lb_clean.1:50 en/lb_config.1:484 en/lb_source.1:27
116 #: en/live-build.7:228
117117 msgid ""
118118 "More information about live-build and the Live Systems project can be found "
119119 "on the homepage at E<lt>I<http://live-systems.org/>E<gt> and in the manual "
122122
123123 #. type: SH
124124 #: en/lb.1:30 en/lb_binary.1:28 en/lb_bootstrap.1:28 en/lb_build.1:30
125 #: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:485 en/lb_source.1:28
125 #: en/lb_chroot.1:28 en/lb_clean.1:51 en/lb_config.1:481 en/lb_source.1:28
126 #: en/live-build.7:227
127 #, no-wrap
128 msgid "BUGS"
129 msgstr ""
130
131 #. type: Plain text
132 #: en/lb.1:32 en/lb_binary.1:30 en/lb_bootstrap.1:30 en/lb_build.1:32
133 #: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:483 en/lb_source.1:30
126134 #: en/live-build.7:229
127 #, no-wrap
128 msgid "BUGS"
129 msgstr ""
130
131 #. type: Plain text
132 #: en/lb.1:32 en/lb_binary.1:30 en/lb_bootstrap.1:30 en/lb_build.1:32
133 #: en/lb_chroot.1:30 en/lb_clean.1:53 en/lb_config.1:487 en/lb_source.1:30
134 #: en/live-build.7:231
135135 msgid ""
136136 "Bugs can be reported by submitting a bugreport for the live-build package in "
137137 "the Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
141141
142142 #. type: SH
143143 #: en/lb.1:33 en/lb_binary.1:31 en/lb_bootstrap.1:31 en/lb_build.1:33
144 #: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:488 en/lb_source.1:31
145 #: en/live-build.7:232
144 #: en/lb_chroot.1:31 en/lb_clean.1:54 en/lb_config.1:484 en/lb_source.1:31
145 #: en/live-build.7:230
146146 #, no-wrap
147147 msgid "AUTHOR"
148148 msgstr ""
149149
150150 #. type: Plain text
151151 #: en/lb.1:34 en/lb_binary.1:32 en/lb_bootstrap.1:32 en/lb_build.1:34
152 #: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:489 en/lb_source.1:32
153 #: en/live-build.7:233
152 #: en/lb_chroot.1:32 en/lb_clean.1:55 en/lb_config.1:485 en/lb_source.1:32
153 #: en/live-build.7:231
154154 msgid ""
155155 "live-build was written by Daniel Baumann E<lt>I<[email protected]>E<gt>."
156156 msgstr ""
157157
158158 #. type: IP
159 #: en/lb_config.1:306 en/live-build.7:36
159 #: en/lb_config.1:302 en/live-build.7:36
160160 #, no-wrap
161161 msgid "B<--debug>"
162162 msgstr ""
163163
164164 #. type: IP
165 #: en/lb_config.1:318 en/live-build.7:38
165 #: en/lb_config.1:314 en/live-build.7:38
166166 #, no-wrap
167167 msgid "B<--force>"
168168 msgstr ""
169169
170170 #. type: IP
171 #: en/lb_config.1:425 en/live-build.7:40
171 #: en/lb_config.1:421 en/live-build.7:40
172172 #, no-wrap
173173 msgid "B<--quiet>"
174174 msgstr ""
175175
176176 #. type: IP
177 #: en/lb_config.1:455 en/live-build.7:42
177 #: en/lb_config.1:451 en/live-build.7:42
178178 #, no-wrap
179179 msgid "B<--verbose>"
180180 msgstr ""
181181
182182 #. type: Plain text
183 #: en/lb_config.1:477 en/live-build.7:221
183 #: en/lb_config.1:473 en/live-build.7:219
184184 msgid "I<live-boot>(7)"
185185 msgstr ""
186186
187187 #. type: Plain text
188 #: en/lb_config.1:479 en/live-build.7:223
188 #: en/lb_config.1:475 en/live-build.7:221
189189 msgid "I<live-config>(7)"
190190 msgstr ""
191191
536536 #. type: IP
537537 #: en/live-build.7:89
538538 #, no-wrap
539 msgid "B<lb_bootstrap_cdebootstrap>(1)"
539 msgid "B<lb_bootstrap_debootstrap>(1)"
540540 msgstr ""
541541
542542 #. type: Plain text
543543 #: en/live-build.7:91
544 msgid "bootstrap a Debian system with cdebootstrap(1)"
545 msgstr ""
546
547 #. type: IP
544 msgid "bootstrap a Debian system with debootstrap(8)"
545 msgstr ""
546
547 #. type: SS
548548 #: en/live-build.7:91
549549 #, no-wrap
550 msgid "B<lb_bootstrap_debootstrap>(1)"
551 msgstr ""
552
553 #. type: Plain text
554 #: en/live-build.7:93
555 msgid "bootstrap a Debian system with debootstrap(8)"
550 msgid "Chroot commands"
551 msgstr ""
552
553 #. type: IP
554 #: en/live-build.7:92
555 #, no-wrap
556 msgid "B<lb_chroot_apt>(1)"
557 msgstr ""
558
559 #. type: Plain text
560 #: en/live-build.7:94
561 msgid "manage /etc/apt/apt.conf"
562 msgstr ""
563
564 #. type: IP
565 #: en/live-build.7:94
566 #, no-wrap
567 msgid "B<lb_chroot_cache>(1)"
568 msgstr ""
569
570 #. type: Plain text
571 #: en/live-build.7:96
572 msgid "cache chroot stage"
573 msgstr ""
574
575 #. type: IP
576 #: en/live-build.7:96
577 #, no-wrap
578 msgid "B<lb_chroot_debianchroot>(1)"
579 msgstr ""
580
581 #. type: Plain text
582 #: en/live-build.7:98
583 msgid "manage /etc/debian_chroot"
584 msgstr ""
585
586 #. type: IP
587 #: en/live-build.7:98
588 #, no-wrap
589 msgid "B<lb_chroot_devpts>(1)"
590 msgstr ""
591
592 #. type: Plain text
593 #: en/live-build.7:100
594 msgid "mount /dev/pts"
595 msgstr ""
596
597 #. type: IP
598 #: en/live-build.7:100
599 #, no-wrap
600 msgid "B<lb_chroot_dpkg>(1)"
601 msgstr ""
602
603 #. type: Plain text
604 #: en/live-build.7:102
605 msgid "manage /sbin/dpkg"
606 msgstr ""
607
608 #. type: IP
609 #: en/live-build.7:102
610 #, no-wrap
611 msgid "B<lb_chroot_hacks>(1)"
612 msgstr ""
613
614 #. type: Plain text
615 #: en/live-build.7:104
616 msgid "execute hacks in chroot"
617 msgstr ""
618
619 #. type: IP
620 #: en/live-build.7:104
621 #, no-wrap
622 msgid "B<lb_chroot_hostname>(1)"
623 msgstr ""
624
625 #. type: Plain text
626 #: en/live-build.7:106
627 msgid "manage /bin/hostname"
628 msgstr ""
629
630 #. type: IP
631 #: en/live-build.7:106
632 #, no-wrap
633 msgid "B<lb_chroot_hosts>(1)"
634 msgstr ""
635
636 #. type: Plain text
637 #: en/live-build.7:108
638 msgid "manage /etc/hosts"
639 msgstr ""
640
641 #. type: IP
642 #: en/live-build.7:108
643 #, no-wrap
644 msgid "B<lb_chroot_install-packages>(1)"
645 msgstr ""
646
647 #. type: Plain text
648 #: en/live-build.7:110
649 msgid "install queued packages into chroot"
650 msgstr ""
651
652 #. type: IP
653 #: en/live-build.7:110
654 #, no-wrap
655 msgid "B<lb_chroot_interactive>(1)"
656 msgstr ""
657
658 #. type: Plain text
659 #: en/live-build.7:112
660 msgid "make build interactive"
661 msgstr ""
662
663 #. type: IP
664 #: en/live-build.7:112
665 #, no-wrap
666 msgid "B<lb_chroot_linux-image>(1)"
667 msgstr ""
668
669 #. type: Plain text
670 #: en/live-build.7:114
671 msgid "manage /etc/kernel-img.conf"
672 msgstr ""
673
674 #. type: IP
675 #: en/live-build.7:114
676 #, no-wrap
677 msgid "B<lb_chroot_hooks>(1)"
678 msgstr ""
679
680 #. type: Plain text
681 #: en/live-build.7:116
682 msgid "execute local hooks in chroot"
683 msgstr ""
684
685 #. type: IP
686 #: en/live-build.7:116
687 #, no-wrap
688 msgid "B<lb_chroot_local-includes>(1)"
689 msgstr ""
690
691 #. type: Plain text
692 #: en/live-build.7:118
693 msgid "copy local files into chroot"
694 msgstr ""
695
696 #. type: IP
697 #: en/live-build.7:118
698 #, no-wrap
699 msgid "B<lb_chroot_packages>(1)"
700 msgstr ""
701
702 #. type: Plain text
703 #: en/live-build.7:120
704 msgid "queue install of packages into chroot"
705 msgstr ""
706
707 #. type: IP
708 #: en/live-build.7:120
709 #, no-wrap
710 msgid "B<lb_chroot_local-patches>(1)"
711 msgstr ""
712
713 #. type: Plain text
714 #: en/live-build.7:122
715 msgid "apply local patches against chroot"
716 msgstr ""
717
718 #. type: IP
719 #: en/live-build.7:122
720 #, no-wrap
721 msgid "B<lb_chroot_local-preseed>(1)"
722 msgstr ""
723
724 #. type: Plain text
725 #: en/live-build.7:124
726 msgid "use debconf local preseeding file"
727 msgstr ""
728
729 #. type: IP
730 #: en/live-build.7:124
731 #, no-wrap
732 msgid "B<lb_chroot_packagelists>(1)"
733 msgstr ""
734
735 #. type: Plain text
736 #: en/live-build.7:126
737 msgid "queue install of package lists into chroot"
738 msgstr ""
739
740 #. type: IP
741 #: en/live-build.7:126
742 #, no-wrap
743 msgid "B<lb_chroot_proc>(1)"
744 msgstr ""
745
746 #. type: Plain text
747 #: en/live-build.7:128
748 msgid "mount /proc"
749 msgstr ""
750
751 #. type: IP
752 #: en/live-build.7:128
753 #, no-wrap
754 msgid "B<lb_chroot_resolv>(1)"
755 msgstr ""
756
757 #. type: Plain text
758 #: en/live-build.7:130
759 msgid "manage /etc/resolv.conf"
760 msgstr ""
761
762 #. type: IP
763 #: en/live-build.7:130
764 #, no-wrap
765 msgid "B<lb_chroot_selinuxfs>(1)"
766 msgstr ""
767
768 #. type: Plain text
769 #: en/live-build.7:132
770 msgid "mount /selinux"
771 msgstr ""
772
773 #. type: IP
774 #: en/live-build.7:132
775 #, no-wrap
776 msgid "B<lb_chroot_archives>(1)"
777 msgstr ""
778
779 #. type: Plain text
780 #: en/live-build.7:134
781 msgid "manage /etc/apt/sources.list"
782 msgstr ""
783
784 #. type: IP
785 #: en/live-build.7:134
786 #, no-wrap
787 msgid "B<lb_chroot_sysfs>(1)"
788 msgstr ""
789
790 #. type: Plain text
791 #: en/live-build.7:136
792 msgid "mount /sys"
793 msgstr ""
794
795 #. type: IP
796 #: en/live-build.7:136
797 #, no-wrap
798 msgid "B<lb_chroot_sysv-rc>(1)"
799 msgstr ""
800
801 #. type: Plain text
802 #: en/live-build.7:138
803 msgid "manage /usr/sbin/policy-rc.d"
804 msgstr ""
805
806 #. type: IP
807 #: en/live-build.7:138
808 #, no-wrap
809 msgid "B<lb_chroot_task-lists>(1)"
810 msgstr ""
811
812 #. type: Plain text
813 #: en/live-build.7:140
814 msgid "install task lists into chroot"
556815 msgstr ""
557816
558817 #. type: SS
559 #: en/live-build.7:93
560 #, no-wrap
561 msgid "Chroot commands"
562 msgstr ""
563
564 #. type: IP
565 #: en/live-build.7:94
566 #, no-wrap
567 msgid "B<lb_chroot_apt>(1)"
568 msgstr ""
569
570 #. type: Plain text
571 #: en/live-build.7:96
572 msgid "manage /etc/apt/apt.conf"
573 msgstr ""
574
575 #. type: IP
576 #: en/live-build.7:96
577 #, no-wrap
578 msgid "B<lb_chroot_cache>(1)"
579 msgstr ""
580
581 #. type: Plain text
582 #: en/live-build.7:98
583 msgid "cache chroot stage"
584 msgstr ""
585
586 #. type: IP
587 #: en/live-build.7:98
588 #, no-wrap
589 msgid "B<lb_chroot_debianchroot>(1)"
590 msgstr ""
591
592 #. type: Plain text
593 #: en/live-build.7:100
594 msgid "manage /etc/debian_chroot"
595 msgstr ""
596
597 #. type: IP
598 #: en/live-build.7:100
599 #, no-wrap
600 msgid "B<lb_chroot_devpts>(1)"
601 msgstr ""
602
603 #. type: Plain text
604 #: en/live-build.7:102
605 msgid "mount /dev/pts"
606 msgstr ""
607
608 #. type: IP
609 #: en/live-build.7:102
610 #, no-wrap
611 msgid "B<lb_chroot_dpkg>(1)"
612 msgstr ""
613
614 #. type: Plain text
615 #: en/live-build.7:104
616 msgid "manage /sbin/dpkg"
617 msgstr ""
618
619 #. type: IP
620 #: en/live-build.7:104
621 #, no-wrap
622 msgid "B<lb_chroot_hacks>(1)"
623 msgstr ""
624
625 #. type: Plain text
626 #: en/live-build.7:106
627 msgid "execute hacks in chroot"
628 msgstr ""
629
630 #. type: IP
631 #: en/live-build.7:106
632 #, no-wrap
633 msgid "B<lb_chroot_hostname>(1)"
634 msgstr ""
635
636 #. type: Plain text
637 #: en/live-build.7:108
638 msgid "manage /bin/hostname"
639 msgstr ""
640
641 #. type: IP
642 #: en/live-build.7:108
643 #, no-wrap
644 msgid "B<lb_chroot_hosts>(1)"
645 msgstr ""
646
647 #. type: Plain text
648 #: en/live-build.7:110
649 msgid "manage /etc/hosts"
650 msgstr ""
651
652 #. type: IP
653 #: en/live-build.7:110
654 #, no-wrap
655 msgid "B<lb_chroot_install-packages>(1)"
656 msgstr ""
657
658 #. type: Plain text
659 #: en/live-build.7:112
660 msgid "install queued packages into chroot"
661 msgstr ""
662
663 #. type: IP
664 #: en/live-build.7:112
665 #, no-wrap
666 msgid "B<lb_chroot_interactive>(1)"
667 msgstr ""
668
669 #. type: Plain text
670 #: en/live-build.7:114
671 msgid "make build interactive"
672 msgstr ""
673
674 #. type: IP
675 #: en/live-build.7:114
676 #, no-wrap
677 msgid "B<lb_chroot_linux-image>(1)"
678 msgstr ""
679
680 #. type: Plain text
681 #: en/live-build.7:116
682 msgid "manage /etc/kernel-img.conf"
683 msgstr ""
684
685 #. type: IP
686 #: en/live-build.7:116
687 #, no-wrap
688 msgid "B<lb_chroot_hooks>(1)"
689 msgstr ""
690
691 #. type: Plain text
692 #: en/live-build.7:118
693 msgid "execute local hooks in chroot"
694 msgstr ""
695
696 #. type: IP
697 #: en/live-build.7:118
698 #, no-wrap
699 msgid "B<lb_chroot_local-includes>(1)"
700 msgstr ""
701
702 #. type: Plain text
703 #: en/live-build.7:120
704 msgid "copy local files into chroot"
705 msgstr ""
706
707 #. type: IP
708 #: en/live-build.7:120
709 #, no-wrap
710 msgid "B<lb_chroot_packages>(1)"
711 msgstr ""
712
713 #. type: Plain text
714 #: en/live-build.7:122
715 msgid "queue install of packages into chroot"
716 msgstr ""
717
718 #. type: IP
719 #: en/live-build.7:122
720 #, no-wrap
721 msgid "B<lb_chroot_local-patches>(1)"
722 msgstr ""
723
724 #. type: Plain text
725 #: en/live-build.7:124
726 msgid "apply local patches against chroot"
727 msgstr ""
728
729 #. type: IP
730 #: en/live-build.7:124
731 #, no-wrap
732 msgid "B<lb_chroot_local-preseed>(1)"
733 msgstr ""
734
735 #. type: Plain text
736 #: en/live-build.7:126
737 msgid "use debconf local preseeding file"
738 msgstr ""
739
740 #. type: IP
741 #: en/live-build.7:126
742 #, no-wrap
743 msgid "B<lb_chroot_packagelists>(1)"
744 msgstr ""
745
746 #. type: Plain text
747 #: en/live-build.7:128
748 msgid "queue install of package lists into chroot"
749 msgstr ""
750
751 #. type: IP
752 #: en/live-build.7:128
753 #, no-wrap
754 msgid "B<lb_chroot_proc>(1)"
755 msgstr ""
756
757 #. type: Plain text
758 #: en/live-build.7:130
759 msgid "mount /proc"
760 msgstr ""
761
762 #. type: IP
763 #: en/live-build.7:130
764 #, no-wrap
765 msgid "B<lb_chroot_resolv>(1)"
766 msgstr ""
767
768 #. type: Plain text
769 #: en/live-build.7:132
770 msgid "manage /etc/resolv.conf"
771 msgstr ""
772
773 #. type: IP
774 #: en/live-build.7:132
775 #, no-wrap
776 msgid "B<lb_chroot_selinuxfs>(1)"
777 msgstr ""
778
779 #. type: Plain text
780 #: en/live-build.7:134
781 msgid "mount /selinux"
782 msgstr ""
783
784 #. type: IP
785 #: en/live-build.7:134
786 #, no-wrap
787 msgid "B<lb_chroot_archives>(1)"
788 msgstr ""
789
790 #. type: Plain text
791 #: en/live-build.7:136
792 msgid "manage /etc/apt/sources.list"
793 msgstr ""
794
795 #. type: IP
796 #: en/live-build.7:136
797 #, no-wrap
798 msgid "B<lb_chroot_sysfs>(1)"
799 msgstr ""
800
801 #. type: Plain text
802 #: en/live-build.7:138
803 msgid "mount /sys"
804 msgstr ""
805
806 #. type: IP
807 #: en/live-build.7:138
808 #, no-wrap
809 msgid "B<lb_chroot_sysv-rc>(1)"
810 msgstr ""
811
812 #. type: Plain text
813818 #: en/live-build.7:140
814 msgid "manage /usr/sbin/policy-rc.d"
815 msgstr ""
816
817 #. type: IP
818 #: en/live-build.7:140
819 #, no-wrap
820 msgid "B<lb_chroot_task-lists>(1)"
821 msgstr ""
822
823 #. type: Plain text
824 #: en/live-build.7:142
825 msgid "install task lists into chroot"
819 #, no-wrap
820 msgid "Binary commands"
821 msgstr ""
822
823 #. type: IP
824 #: en/live-build.7:141
825 #, no-wrap
826 msgid "B<lb_binary_chroot>(1)"
827 msgstr ""
828
829 #. type: Plain text
830 #: en/live-build.7:143
831 msgid "copy chroot into chroot"
832 msgstr ""
833
834 #. type: IP
835 #: en/live-build.7:143
836 #, no-wrap
837 msgid "B<lb_binary_debian-installer>(1)"
838 msgstr ""
839
840 #. type: Plain text
841 #: en/live-build.7:145
842 msgid "install debian-installer into binary"
843 msgstr ""
844
845 #. type: IP
846 #: en/live-build.7:145
847 #, no-wrap
848 msgid "B<lb_binary_disk>(1)"
849 msgstr ""
850
851 #. type: Plain text
852 #: en/live-build.7:147
853 msgid "install disk information into binary"
854 msgstr ""
855
856 #. type: IP
857 #: en/live-build.7:147
858 #, no-wrap
859 msgid "B<lb_binary_grub>(1)"
860 msgstr ""
861
862 #. type: Plain text
863 #: en/live-build.7:149
864 msgid "installs grub into binary"
865 msgstr ""
866
867 #. type: IP
868 #: en/live-build.7:149
869 #, no-wrap
870 msgid "B<lb_binary_grub2>(1)"
871 msgstr ""
872
873 #. type: Plain text
874 #: en/live-build.7:151
875 msgid "installs grub2 into binary"
876 msgstr ""
877
878 #. type: IP
879 #: en/live-build.7:151
880 #, no-wrap
881 msgid "B<lb_binary_includes>(1)"
882 msgstr ""
883
884 #. type: Plain text
885 #: en/live-build.7:153 en/live-build.7:161
886 msgid "copy files into binary"
887 msgstr ""
888
889 #. type: IP
890 #: en/live-build.7:153
891 #, no-wrap
892 msgid "B<lb_binary_iso>(1)"
893 msgstr ""
894
895 #. type: Plain text
896 #: en/live-build.7:155
897 msgid "build iso binary image"
898 msgstr ""
899
900 #. type: IP
901 #: en/live-build.7:155
902 #, no-wrap
903 msgid "B<lb_binary_linux-image>(1)"
904 msgstr ""
905
906 #. type: Plain text
907 #: en/live-build.7:157
908 msgid "install linux-image into binary"
909 msgstr ""
910
911 #. type: IP
912 #: en/live-build.7:157
913 #, no-wrap
914 msgid "B<lb_binary_local-hooks>(1)"
915 msgstr ""
916
917 #. type: Plain text
918 #: en/live-build.7:159
919 msgid "execute local hooks in binary"
920 msgstr ""
921
922 #. type: IP
923 #: en/live-build.7:159
924 #, no-wrap
925 msgid "B<lb_binary_local-includes>(1)"
926 msgstr ""
927
928 #. type: IP
929 #: en/live-build.7:161
930 #, no-wrap
931 msgid "B<lb_binary_local-packagelists>(1)"
932 msgstr ""
933
934 #. type: Plain text
935 #: en/live-build.7:163
936 msgid "install local package lists into binary"
937 msgstr ""
938
939 #. type: IP
940 #: en/live-build.7:163
941 #, no-wrap
942 msgid "B<lb_binary_manifest>(1)"
943 msgstr ""
944
945 #. type: Plain text
946 #: en/live-build.7:165
947 msgid "create manifest"
948 msgstr ""
949
950 #. type: IP
951 #: en/live-build.7:165
952 #, no-wrap
953 msgid "B<lb_binary_checksums>(1)"
954 msgstr ""
955
956 #. type: Plain text
957 #: en/live-build.7:167
958 msgid "create binary checksums (md5, sha1, and/or sha256)"
959 msgstr ""
960
961 #. type: IP
962 #: en/live-build.7:167
963 #, no-wrap
964 msgid "B<lb_binary_memtest>(1)"
965 msgstr ""
966
967 #. type: Plain text
968 #: en/live-build.7:169
969 msgid "installs a memtest into binary"
970 msgstr ""
971
972 #. type: IP
973 #: en/live-build.7:169
974 #, no-wrap
975 msgid "B<lb_binary_net>(1)"
976 msgstr ""
977
978 #. type: Plain text
979 #: en/live-build.7:171
980 msgid "build netboot binary image"
981 msgstr ""
982
983 #. type: IP
984 #: en/live-build.7:171
985 #, no-wrap
986 msgid "B<lb_binary_rootfs>(1)"
987 msgstr ""
988
989 #. type: Plain text
990 #: en/live-build.7:173
991 msgid "build rootfs image"
992 msgstr ""
993
994 #. type: IP
995 #: en/live-build.7:173
996 #, no-wrap
997 msgid "B<lb_binary_syslinux>(1)"
998 msgstr ""
999
1000 #. type: Plain text
1001 #: en/live-build.7:175
1002 msgid "installs syslinux into binary"
1003 msgstr ""
1004
1005 #. type: IP
1006 #: en/live-build.7:175
1007 #, no-wrap
1008 msgid "B<lb_binary_tar>(1)"
1009 msgstr ""
1010
1011 #. type: Plain text
1012 #: en/live-build.7:177
1013 msgid "build harddisk binary image"
1014 msgstr ""
1015
1016 #. type: IP
1017 #: en/live-build.7:177
1018 #, no-wrap
1019 msgid "B<lb_binary_hdd>(1)"
1020 msgstr ""
1021
1022 #. type: Plain text
1023 #: en/live-build.7:179
1024 msgid "build binary hdd image"
1025 msgstr ""
1026
1027 #. type: IP
1028 #: en/live-build.7:179
1029 #, no-wrap
1030 msgid "B<lb_binary_win32-loader>(1)"
1031 msgstr ""
1032
1033 #. type: Plain text
1034 #: en/live-build.7:181
1035 msgid "installs win32-loader into binary"
8261036 msgstr ""
8271037
8281038 #. type: SS
829 #: en/live-build.7:142
830 #, no-wrap
831 msgid "Binary commands"
832 msgstr ""
833
834 #. type: IP
835 #: en/live-build.7:143
836 #, no-wrap
837 msgid "B<lb_binary_chroot>(1)"
838 msgstr ""
839
840 #. type: Plain text
841 #: en/live-build.7:145
842 msgid "copy chroot into chroot"
843 msgstr ""
844
845 #. type: IP
846 #: en/live-build.7:145
847 #, no-wrap
848 msgid "B<lb_binary_debian-installer>(1)"
849 msgstr ""
850
851 #. type: Plain text
852 #: en/live-build.7:147
853 msgid "install debian-installer into binary"
854 msgstr ""
855
856 #. type: IP
857 #: en/live-build.7:147
858 #, no-wrap
859 msgid "B<lb_binary_disk>(1)"
860 msgstr ""
861
862 #. type: Plain text
863 #: en/live-build.7:149
864 msgid "install disk information into binary"
865 msgstr ""
866
867 #. type: IP
868 #: en/live-build.7:149
869 #, no-wrap
870 msgid "B<lb_binary_grub>(1)"
871 msgstr ""
872
873 #. type: Plain text
874 #: en/live-build.7:151
875 msgid "installs grub into binary"
876 msgstr ""
877
878 #. type: IP
879 #: en/live-build.7:151
880 #, no-wrap
881 msgid "B<lb_binary_grub2>(1)"
882 msgstr ""
883
884 #. type: Plain text
885 #: en/live-build.7:153
886 msgid "installs grub2 into binary"
887 msgstr ""
888
889 #. type: IP
890 #: en/live-build.7:153
891 #, no-wrap
892 msgid "B<lb_binary_includes>(1)"
893 msgstr ""
894
895 #. type: Plain text
896 #: en/live-build.7:155 en/live-build.7:163
897 msgid "copy files into binary"
898 msgstr ""
899
900 #. type: IP
901 #: en/live-build.7:155
902 #, no-wrap
903 msgid "B<lb_binary_iso>(1)"
904 msgstr ""
905
906 #. type: Plain text
907 #: en/live-build.7:157
908 msgid "build iso binary image"
909 msgstr ""
910
911 #. type: IP
912 #: en/live-build.7:157
913 #, no-wrap
914 msgid "B<lb_binary_linux-image>(1)"
915 msgstr ""
916
917 #. type: Plain text
918 #: en/live-build.7:159
919 msgid "install linux-image into binary"
920 msgstr ""
921
922 #. type: IP
923 #: en/live-build.7:159
924 #, no-wrap
925 msgid "B<lb_binary_local-hooks>(1)"
926 msgstr ""
927
928 #. type: Plain text
929 #: en/live-build.7:161
930 msgid "execute local hooks in binary"
931 msgstr ""
932
933 #. type: IP
934 #: en/live-build.7:161
935 #, no-wrap
936 msgid "B<lb_binary_local-includes>(1)"
937 msgstr ""
938
939 #. type: IP
940 #: en/live-build.7:163
941 #, no-wrap
942 msgid "B<lb_binary_local-packagelists>(1)"
943 msgstr ""
944
945 #. type: Plain text
946 #: en/live-build.7:165
947 msgid "install local package lists into binary"
948 msgstr ""
949
950 #. type: IP
951 #: en/live-build.7:165
952 #, no-wrap
953 msgid "B<lb_binary_manifest>(1)"
954 msgstr ""
955
956 #. type: Plain text
957 #: en/live-build.7:167
958 msgid "create manifest"
959 msgstr ""
960
961 #. type: IP
962 #: en/live-build.7:167
963 #, no-wrap
964 msgid "B<lb_binary_checksums>(1)"
965 msgstr ""
966
967 #. type: Plain text
968 #: en/live-build.7:169
969 msgid "create binary checksums (md5, sha1, and/or sha256)"
970 msgstr ""
971
972 #. type: IP
973 #: en/live-build.7:169
974 #, no-wrap
975 msgid "B<lb_binary_memtest>(1)"
976 msgstr ""
977
978 #. type: Plain text
979 #: en/live-build.7:171
980 msgid "installs a memtest into binary"
981 msgstr ""
982
983 #. type: IP
984 #: en/live-build.7:171
985 #, no-wrap
986 msgid "B<lb_binary_net>(1)"
987 msgstr ""
988
989 #. type: Plain text
990 #: en/live-build.7:173
991 msgid "build netboot binary image"
992 msgstr ""
993
994 #. type: IP
995 #: en/live-build.7:173
996 #, no-wrap
997 msgid "B<lb_binary_rootfs>(1)"
998 msgstr ""
999
1000 #. type: Plain text
1001 #: en/live-build.7:175
1002 msgid "build rootfs image"
1003 msgstr ""
1004
1005 #. type: IP
1006 #: en/live-build.7:175
1007 #, no-wrap
1008 msgid "B<lb_binary_syslinux>(1)"
1009 msgstr ""
1010
1011 #. type: Plain text
1012 #: en/live-build.7:177
1013 msgid "installs syslinux into binary"
1014 msgstr ""
1015
1016 #. type: IP
1017 #: en/live-build.7:177
1018 #, no-wrap
1019 msgid "B<lb_binary_tar>(1)"
1020 msgstr ""
1021
1022 #. type: Plain text
1023 #: en/live-build.7:179
1024 msgid "build harddisk binary image"
1025 msgstr ""
1026
1027 #. type: IP
1028 #: en/live-build.7:179
1029 #, no-wrap
1030 msgid "B<lb_binary_hdd>(1)"
1031 msgstr ""
1032
1033 #. type: Plain text
10341039 #: en/live-build.7:181
1035 msgid "build binary hdd image"
1036 msgstr ""
1037
1038 #. type: IP
1039 #: en/live-build.7:181
1040 #, no-wrap
1041 msgid "B<lb_binary_win32-loader>(1)"
1042 msgstr ""
1043
1044 #. type: Plain text
1045 #: en/live-build.7:183
1046 msgid "installs win32-loader into binary"
1047 msgstr ""
1048
1049 #. type: SS
1050 #: en/live-build.7:183
10511040 #, no-wrap
10521041 msgid "Source commands"
10531042 msgstr ""
10541043
10551044 #. type: IP
1045 #: en/live-build.7:182
1046 #, no-wrap
1047 msgid "B<lb_source_debian>(1)"
1048 msgstr ""
1049
1050 #. type: Plain text
10561051 #: en/live-build.7:184
1057 #, no-wrap
1058 msgid "B<lb_source_debian>(1)"
1052 msgid "download sources"
1053 msgstr ""
1054
1055 #. type: IP
1056 #: en/live-build.7:184
1057 #, no-wrap
1058 msgid "B<lb_source_debian-live>(1)"
10591059 msgstr ""
10601060
10611061 #. type: Plain text
10621062 #: en/live-build.7:186
1063 msgid "download sources"
1063 msgid "copy debian-live config into source"
10641064 msgstr ""
10651065
10661066 #. type: IP
10671067 #: en/live-build.7:186
10681068 #, no-wrap
1069 msgid "B<lb_source_debian-live>(1)"
1069 msgid "B<lb_source_disk>(1)"
10701070 msgstr ""
10711071
10721072 #. type: Plain text
10731073 #: en/live-build.7:188
1074 msgid "copy debian-live config into source"
1074 msgid "install disk information into source"
10751075 msgstr ""
10761076
10771077 #. type: IP
10781078 #: en/live-build.7:188
10791079 #, no-wrap
1080 msgid "B<lb_source_disk>(1)"
1080 msgid "B<lb_source_iso>(1)"
10811081 msgstr ""
10821082
10831083 #. type: Plain text
10841084 #: en/live-build.7:190
1085 msgid "install disk information into source"
1085 msgid "build iso source image"
10861086 msgstr ""
10871087
10881088 #. type: IP
10891089 #: en/live-build.7:190
10901090 #, no-wrap
1091 msgid "B<lb_source_iso>(1)"
1091 msgid "B<lb_source_checksums>(1)"
10921092 msgstr ""
10931093
10941094 #. type: Plain text
10951095 #: en/live-build.7:192
1096 msgid "build iso source image"
1096 msgid "create source checksums (md5, sha1, and/or sha256)"
10971097 msgstr ""
10981098
10991099 #. type: IP
11001100 #: en/live-build.7:192
11011101 #, no-wrap
1102 msgid "B<lb_source_checksums>(1)"
1102 msgid "B<lb_source_net>(1)"
11031103 msgstr ""
11041104
11051105 #. type: Plain text
11061106 #: en/live-build.7:194
1107 msgid "create source checksums (md5, sha1, and/or sha256)"
1107 msgid "build source net image"
11081108 msgstr ""
11091109
11101110 #. type: IP
11111111 #: en/live-build.7:194
11121112 #, no-wrap
1113 msgid "B<lb_source_net>(1)"
1113 msgid "B<lb_source_tar>(1)"
11141114 msgstr ""
11151115
11161116 #. type: Plain text
11171117 #: en/live-build.7:196
1118 msgid "build source net image"
1118 msgid "build source tarball"
11191119 msgstr ""
11201120
11211121 #. type: IP
11221122 #: en/live-build.7:196
11231123 #, no-wrap
1124 msgid "B<lb_source_tar>(1)"
1125 msgstr ""
1126
1127 #. type: Plain text
1128 #: en/live-build.7:198
1129 msgid "build source tarball"
1130 msgstr ""
1131
1132 #. type: IP
1133 #: en/live-build.7:198
1134 #, no-wrap
11351124 msgid "B<lb_source_hdd>(1)"
11361125 msgstr ""
11371126
11381127 #. FIXME
11391128 #. type: Plain text
1140 #: en/live-build.7:201
1129 #: en/live-build.7:199
11411130 msgid "build source hdd image"
11421131 msgstr ""
11431132
11441133 #. type: SH
1145 #: en/live-build.7:202
1134 #: en/live-build.7:200
11461135 #, no-wrap
11471136 msgid "CONFIG FILES"
11481137 msgstr ""
11491138
11501139 #. FIXME
11511140 #. type: Plain text
1152 #: en/live-build.7:205
1141 #: en/live-build.7:203
11531142 msgid ""
11541143 "Many live-build commands make use of files in the I<config/> directory to "
11551144 "control what they do. Besides the common I<config/common>, which is used by "
11611150 msgstr ""
11621151
11631152 #. type: Plain text
1164 #: en/live-build.7:207
1153 #: en/live-build.7:205
11651154 msgid ""
11661155 "For example, lb_bootstrap_debootstrap uses files named config/bootstrap and "
11671156 "config/bootstrap_debootstrap to read the options it will use. See the man "
11721161 msgstr ""
11731162
11741163 #. type: Plain text
1175 #: en/live-build.7:209
1164 #: en/live-build.7:207
11761165 msgid ""
11771166 "Note that live-build will respect environment variables which are present in "
11781167 "the context of the shell it is running. If variables can be read from config "
11831172 msgstr ""
11841173
11851174 #. type: Plain text
1186 #: en/live-build.7:211
1175 #: en/live-build.7:209
11871176 msgid ""
11881177 "In some rare cases, you may want to have different versions of these files "
11891178 "for different architectures or distributions. If files named config/stage."
11961185
11971186 #. FIXME
11981187 #. type: Plain text
1199 #: en/live-build.7:214
1188 #: en/live-build.7:212
12001189 msgid ""
12011190 "All config files are shell scripts which are sourced by a live-build "
12021191 "program. That means they have to follow the normal shell syntax. You can "
12041193 msgstr ""
12051194
12061195 #. type: IP
1207 #: en/live-build.7:216
1196 #: en/live-build.7:214
12081197 #, no-wrap
12091198 msgid "B</etc/live/build.conf>"
12101199 msgstr ""
12111200
12121201 #. type: IP
1213 #: en/live-build.7:217
1202 #: en/live-build.7:215
12141203 #, no-wrap
12151204 msgid "B</etc/live/build/*>"
12161205 msgstr ""
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
4747 lb chroot_resolv install ${@}
4848 lb chroot_hostname install ${@}
4949 lb chroot_sysv-rc install ${@}
50 lb chroot_upstart install ${@}
5150 lb chroot_apt install-binary ${@}
5251 lb chroot_archives chroot install ${@}
5352 fi
6059 lb binary_package-lists ${@}
6160 lb binary_linux-image ${@}
6261 lb binary_memtest ${@}
63 lb binary_grub ${@}
64 lb binary_grub2 ${@}
62 lb binary_grub-legacy ${@}
63 lb binary_grub-pc ${@}
6564 lb binary_syslinux ${@}
6665 lb binary_disk ${@}
6766 lb binary_loadlin ${@}
9493 lb chroot_hostname remove ${@}
9594 lb chroot_resolv remove ${@}
9695 lb chroot_hosts remove ${@}
97 lb chroot_upstart remove ${@}
9896 lb chroot_sysv-rc remove ${@}
9997 lb chroot_dpkg remove ${@}
10098 lb chroot_debianchroot remove ${@}
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
5050 ARCHITECTURE="$(echo ${LB_ARCHITECTURES} | sed -e 's| |/|g')"
5151 DISTRIBUTION="$(echo ${LB_DISTRIBUTION} | cut -b 1 | tr '[a-z]' '[A-Z]')"
5252 DISTRIBUTION="${DISTRIBUTION}$(echo ${LB_DISTRIBUTION} | cut -b 2-)"
53 eval VERSION="$`echo RELEASE_${LB_DISTRIBUTION}`"
53
54 if [ -e chroot/etc/os-release ]
55 then
56 VERSION="$(. chroot/etc/os-release && echo ${VERSION_ID})"
57 fi
58
59 VERSION="${VERSION:-none}"
5460
5561 case "${LB_MODE}" in
5662 debian)
5763 TITLE="Debian GNU/Linux"
5864 STRING="Official Snapshot ${ARCHITECTURE}"
5965 TRACE="project/trace/ftp-master.debian.org"
60 ;;
61
62 ubuntu)
63 TITLE="Ubuntu"
64 STRING="Build ${ARCHITECTURE}"
65 TRACE=""
6666 ;;
6767
6868 progress-linux)
8080
8181 if [ -n "${TRACE}" ]
8282 then
83 echo "$(wget -q ${LB_PARENT_MIRROR_BOOTSTRAP}/${TRACE} -O - | head -n 1)" \
84 > binary/.disk/archive_trace
83 case "${LB_DERIVATIVE}" in
84 true)
85 echo "$(echo ${LB_PARENT_MIRROR_BOOTSTRAP} | awk -F:// '{ print $2 }'): $(wget -q ${LB_PARENT_MIRROR_BOOTSTRAP}/${TRACE} -O - | head -n 1)" \
86 > binary/.disk/archive_trace
87
88 echo "$(echo ${LB_MIRROR_BOOTSTRAP} | awk -F:// '{ print $2 }'): $(wget -q ${LB_MIRROR_BOOTSTRAP}/${TRACE} -O - | head -n 1)" \
89 >> binary/.disk/archive_trace
90 ;;
91
92 false)
93 echo "$(wget -q ${LB_PARENT_MIRROR_BOOTSTRAP}/${TRACE} -O - | head -n 1)" \
94 > binary/.disk/archive_trace
95 ;;
96 esac
8597 fi
86
87 case "${LB_INITRAMFS}" in
88 casper)
89 for INITRD in binary/casper/initrd.img*
90 do
91 mkdir -p binary/uuid
92 cd binary/uuid
93
94 case "${LB_INITRAMFS_COMPRESSION}" in
95 gzip)
96 zcat "../../${INITRD}" | cpio --quiet -id conf/uuid.conf
97 ;;
98
99 bzip2)
100 bzcat "../../${INITRD}" | cpio --quiet -id conf/uuid.conf
101 ;;
102
103 lzma)
104 lzcat -S "" "../../${INITRD}" | cpio --quiet -id conf/uuid.conf
105 ;;
106 esac
107
108 if [ -e conf/uuid.conf ]
109 then
110 mv conf/uuid.conf "../.disk/casper-uuid${INITRD#binary/casper/initrd.img}"
111 else
112 Echo_warning "Failed to find casper uuid.conf in '${INITRD}'"
113 fi
114
115 cd ${OLDPWD}
116 rm -rf binary/uuid
117 done
118 ;;
119 esac
12098
12199 case "${LB_DEBIAN_INSTALLER}" in
122100 cdrom)
+0
-273
scripts/build/binary_grub less more
0 #!/bin/sh
1
2 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
4 ##
5 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
6 ## This is free software, and you are welcome to redistribute it
7 ## under certain conditions; see COPYING for details.
8
9
10 set -e
11
12 # Including common functions
13 [ -e "${LIVE_BUILD}/scripts/build.sh" ] && . "${LIVE_BUILD}/scripts/build.sh" || . /usr/lib/live/build.sh
14
15 # Setting static variables
16 DESCRIPTION="$(Echo 'installs grub into binary')"
17 HELP=""
18 USAGE="${PROGRAM} [--force]"
19
20 Arguments "${@}"
21
22 # Reading configuration files
23 Read_conffiles config/all config/common config/bootstrap config/chroot config/binary config/source
24 Set_defaults
25
26 if [ "${LB_BOOTLOADER}" != "grub" ]
27 then
28 exit 0
29 fi
30
31 Echo_message "Begin installing grub..."
32
33 # Requiring stage file
34 Require_stagefile .build/config .build/bootstrap
35
36 # Checking stage file
37 Check_stagefile .build/binary_grub
38
39 # Checking grub templates
40 Check_templates grub
41
42 # Checking lock file
43 Check_lockfile .lock
44
45 # Creating lock file
46 Create_lockfile .lock
47
48 # Check architecture
49 Check_architectures amd64 i386
50 Check_crossarchitectures
51
52 # Checking depends
53 Check_package chroot/usr/sbin/grub grub-legacy
54
55 # Restoring cache
56 Restore_cache cache/packages.binary
57
58 # Installing depends
59 Install_package
60
61 # Local functions
62 Grub_live_entry ()
63 {
64 LABEL="${1}"
65 KERNEL="${2}"
66 INITRD="${3}"
67 APPEND="${4}"
68
69 LINUX_LIVE="${LINUX_LIVE}\ntitle\t\tDebian GNU/Linux - ${LABEL}"
70 LINUX_LIVE="${LINUX_LIVE}\nkernel\t\t/${KERNEL} ${INITFS:+boot=${INITFS} }config LB_BOOTAPPEND_LIVE ${APPEND}"
71 LINUX_LIVE="${LINUX_LIVE}\ninitrd\t\t/${INITRD}"
72 }
73
74 Grub_install_entry ()
75 {
76 LABEL="${1}"
77 KERNEL="${2}"
78 INITRD="${3}"
79 APPEND="${4}"
80
81 QAPPEND="quiet"
82
83 for TYPE in Install Expert Rescue Auto
84 do
85 case "${TYPE}" in
86 Install)
87 TAPPEND="${APPEND} ${QAPPEND}"
88 ;;
89
90 Expert)
91 TAPPEND="priority=low ${APPEND}"
92 ;;
93
94 Rescue)
95 TAPPEND="rescue/enable=true ${APPEND} ${QAPPEND}"
96 ;;
97
98 Auto)
99 TAPPEND="auto=true priority=critical ${APPEND} ${QAPPEND}"
100 ;;
101 esac
102
103 case "${LABEL}" in
104 Text)
105 TYPE_SUFFIX=""
106 ;;
107 GUI)
108 TYPE_SUFFIX="gui"
109 ;;
110 esac
111
112
113 LINUX_INSTALL="${LINUX_INSTALL}\ntitle\t\t${LABEL} ${TYPE}"
114 LINUX_INSTALL="${LINUX_INSTALL}\nkernel\t\t/${KERNEL} ${TAPPEND} ${LB_BOOTAPPEND_INSTALL}"
115 LINUX_INSTALL="${LINUX_INSTALL}\ninitrd\t\t/${INITRD}"
116 done
117 }
118
119 case "${LB_INITRAMFS}" in
120 casper)
121 INITFS="casper"
122 ;;
123
124 live-boot)
125 INITFS="live"
126 ;;
127
128 *)
129 INITFS=""
130 ;;
131 esac
132
133 # Setting destination directory
134 case "${LIVE_IMAGE_TYPE}" in
135 iso*|tar)
136 case "${LB_INITRAMFS}" in
137 casper)
138 DESTDIR_LIVE="binary/casper"
139 ;;
140
141 live-boot)
142 DESTDIR_LIVE="binary/live"
143 ;;
144
145 *)
146 DESTDIR_LIVE="binary/boot"
147 ;;
148 esac
149
150 DESTDIR_INSTALL="binary/install"
151 ;;
152
153 hdd*|netboot)
154 Echo_warning "Bootloader in this image type not yet supported by live-build."
155 Echo_warning "This would produce a not bootable image, aborting (FIXME)."
156 exit 1
157 ;;
158 esac
159
160 Check_multiarchitectures
161
162 # Creating directory
163 mkdir -p "${DESTDIR_LIVE}"
164
165 # Setting boot parameters
166 if [ "${LB_UNION_FILESYSTEM}" != "aufs" ]
167 then
168 LB_BOOTAPPEND_LIVE="${LB_BOOTAPPEND_LIVE} union=${LB_UNION_FILESYSTEM}"
169 fi
170
171 if [ -n "${LB_NET_COW_PATH}" ]
172 then
173 Echo_error "Net cow not yet supported on grub"
174 exit 1
175 fi
176
177 LB_BOOTAPPEND_LIVE="$(echo ${LB_BOOTAPPEND_LIVE} | sed -e 's| ||')"
178
179 # Assembling kernel configuration
180
181 # Default entries
182 DEFAULT_FLAVOUR="$(echo ${LB_LINUX_FLAVOURS} | awk '{ print $1 }')"
183 DEFAULT_KERNEL="$(basename chroot/boot/vmlinuz-*${DEFAULT_FLAVOUR})"
184 DEFAULT_INITRD="initrd.img-$(echo ${DEFAULT_KERNEL} | sed -e 's|vmlinuz-||')"
185
186 Grub_live_entry "live" "$(basename ${DESTDIR_LIVE})/${DEFAULT_KERNEL}" "$(basename ${DESTDIR_LIVE})/${DEFAULT_INITRD}"
187
188 if [ "${LB_BOOTAPPEND_FAILSAFE}" != "none" ]
189 then
190 Grub_live_entry "live (fail-safe mode)" "$(basename ${DESTDIR_LIVE})/${DEFAULT_KERNEL}" "$(basename ${DESTDIR_LIVE})/${DEFAULT_INITRD}" "${LB_BOOTAPPEND_FAILSAFE}"
191 fi
192
193 for KERNEL in chroot/boot/vmlinuz-*
194 do
195 VERSION="$(basename ${KERNEL} | sed -e 's|vmlinuz-||')"
196
197 Grub_live_entry "live, kernel ${VERSION}" "$(basename ${DESTDIR_LIVE})/$(basename ${KERNEL})" "$(basename ${DESTDIR_LIVE})/initrd.img-${VERSION}"
198 Grub_live_entry "live, kernel ${VERSION} (fail-safe mode)" "$(basename ${DESTDIR_LIVE})/$(basename ${KERNEL})" "$(basename ${DESTDIR_LIVE})/initrd.img-${VERSION}" "${LB_BOOTAPPEND_FAILSAFE}"
199 done
200
201 LINUX_LIVE="$(/bin/echo ${LINUX_LIVE} | sed -e 's|binary||g' -e 's|//|/|g')"
202
203 # Assembling debian-installer configuration
204 if [ "${LB_DEBIAN_INSTALLER}" != "false" ]
205 then
206 LINUX_LIVE="title\t\tLive:\nroot\n\n${LINUX_LIVE}"
207 LINUX_INSTALL="title\t\tInstaller:\nroot"
208
209 VMLINUZ_DI="install/vmlinuz"
210 INITRD_DI="install/initrd.gz"
211 APPEND_DI="vga=normal"
212
213 VMLINUZ_GI="install/gtk/vmlinuz"
214 INITRD_GI="install/gtk/initrd.gz"
215 APPEND_GI="video=vesa:ywrap,mtrr vga=788"
216
217 if [ -f "binary/${VMLINUZ_DI}" ] && [ -f "binary/${INITRD_DI}" ]
218 then
219 Grub_install_entry "Text" "${VMLINUZ_DI}" "${INITRD_DI}" "${APPEND_DI}"
220 fi
221
222 if [ -f "binary/${VMLINUZ_GI}" ] && [ -f "binary/${INITRD_GI}" ]
223 then
224 Grub_install_entry "GUI" "${VMLINUZ_GI}" "${INITRD_GI}" "${APPEND_GI}"
225 fi
226 fi
227
228 LINUX_INSTALL="$(/bin/echo ${LINUX_INSTALL} | sed -e 's|binary||g' -e 's|//|/|g')"
229
230 # Assembling memtest configuration
231 if [ -f "${DESTDIR_LIVE}"/memtest ]
232 then
233 MEMTEST="title\t\tOther:\nroot"
234 MEMTEST="${MEMTEST}\n\ntitle\t\t${LB_MEMTEST}\nkernel\t\t/$(basename ${DESTDIR_LIVE})/memtest"
235 MEMTEST="$(/bin/echo ${MEMTEST} | sed -e 's|//|/|g')"
236 fi
237
238 # Copying templates
239 mkdir -p binary/boot/grub
240 cp -r "${TEMPLATES}"/* binary/boot/grub
241
242 case ${LIVE_IMAGE_TYPE} in
243 iso*)
244 FILES="chroot/usr/lib/grub/*/stage2_eltorito"
245 ;;
246
247 hdd*|tar)
248 FILES="chroot/usr/lib/grub/*/stage1 chroot/usr/lib/grub/*/e2fs_stage1_5 chroot/usr/lib/grub/*/stage2"
249 ;;
250 esac
251
252 if [ "${LB_BUILD_WITH_CHROOT}" = "false" ]
253 then
254 FILES="$(echo ${FILES} | sed -e 's|chroot||g')"
255 fi
256
257 # Copying grub
258 cp ${FILES} binary/boot/grub
259
260 sed -i -e "s|LINUX_LIVE|${LINUX_LIVE}|" -e "s|LINUX_INSTALL|${LINUX_INSTALL}|" -e "s|MEMTEST|${MEMTEST}|" binary/boot/grub/menu.lst
261 sed -i -e "s#LB_BOOTAPPEND_INSTALL#${LB_BOOTAPPEND_INSTALL}#" -e "s#LB_BOOTAPPEND_LIVE#${LB_BOOTAPPEND_LIVE}#" binary/boot/grub/menu.lst
262
263 sed -i -e 's|\ $||g' binary/boot/grub/menu.lst
264
265 # Saving cache
266 Save_cache cache/packages.binary
267
268 # Removing depends
269 Remove_package
270
271 # Creating stage file
272 Create_stagefile .build/binary_grub
0 #!/bin/sh
1
2 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
4 ##
5 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
6 ## This is free software, and you are welcome to redistribute it
7 ## under certain conditions; see COPYING for details.
8
9
10 set -e
11
12 # Including common functions
13 [ -e "${LIVE_BUILD}/scripts/build.sh" ] && . "${LIVE_BUILD}/scripts/build.sh" || . /usr/lib/live/build.sh
14
15 # Setting static variables
16 DESCRIPTION="$(Echo 'installs grub-legacy into binary')"
17 HELP=""
18 USAGE="${PROGRAM} [--force]"
19
20 Arguments "${@}"
21
22 # Reading configuration files
23 Read_conffiles config/all config/common config/bootstrap config/chroot config/binary config/source
24 Set_defaults
25
26 if [ "${LB_BOOTLOADER}" != "grub-legacy" ]
27 then
28 exit 0
29 fi
30
31 Echo_message "Begin installing grub-legacy..."
32
33 # Requiring stage file
34 Require_stagefile .build/config .build/bootstrap
35
36 # Checking stage file
37 Check_stagefile .build/binary_grub-legacy
38
39 # Checking lock file
40 Check_lockfile .lock
41
42 # Creating lock file
43 Create_lockfile .lock
44
45 # Check architecture
46 Check_architectures amd64 i386
47 Check_crossarchitectures
48
49 # Checking depends
50 Check_package chroot /usr/sbin/grub grub-legacy
51
52 # Restoring cache
53 Restore_cache cache/packages.binary
54
55 # Installing depends
56 Install_package
57
58 # Local functions
59 Grub_live_entry ()
60 {
61 LABEL="${1}"
62 KERNEL="${2}"
63 INITRD="${3}"
64 APPEND="${4}"
65
66 LINUX_LIVE="${LINUX_LIVE}\ntitle\t\tDebian GNU/Linux - ${LABEL}"
67 LINUX_LIVE="${LINUX_LIVE}\nkernel\t\t/${KERNEL} ${INITFS:+boot=${INITFS} }config LB_BOOTAPPEND_LIVE ${APPEND}"
68 LINUX_LIVE="${LINUX_LIVE}\ninitrd\t\t/${INITRD}"
69 }
70
71 Grub_install_entry ()
72 {
73 LABEL="${1}"
74 KERNEL="${2}"
75 INITRD="${3}"
76 APPEND="${4}"
77
78 QAPPEND="quiet"
79
80 for TYPE in Install Expert Rescue Auto
81 do
82 case "${TYPE}" in
83 Install)
84 TAPPEND="${APPEND} ${QAPPEND}"
85 ;;
86
87 Expert)
88 TAPPEND="priority=low ${APPEND}"
89 ;;
90
91 Rescue)
92 TAPPEND="rescue/enable=true ${APPEND} ${QAPPEND}"
93 ;;
94
95 Auto)
96 TAPPEND="auto=true priority=critical ${APPEND} ${QAPPEND}"
97 ;;
98 esac
99
100 case "${LABEL}" in
101 Text)
102 TYPE_SUFFIX=""
103 ;;
104 GUI)
105 TYPE_SUFFIX="gui"
106 ;;
107 esac
108
109
110 LINUX_INSTALL="${LINUX_INSTALL}\ntitle\t\t${LABEL} ${TYPE}"
111 LINUX_INSTALL="${LINUX_INSTALL}\nkernel\t\t/${KERNEL} ${TAPPEND} ${LB_BOOTAPPEND_INSTALL}"
112 LINUX_INSTALL="${LINUX_INSTALL}\ninitrd\t\t/${INITRD}"
113 done
114 }
115
116 if [ -e "config/bootloaders/grub-legacy" ]
117 then
118 # Internal local copy
119 _SOURCE="config/bootloaders/grub-legacy"
120 else
121 # Internal system copy
122 if [ -n "${LIVE_BUILD}" ]
123 then
124 _SOURCE="${LIVE_BUILD}/share/bootloaders/grub-legacy"
125 else
126 _SOURCE="/usr/share/live/build/bootloaders/grub-legacy"
127 fi
128 fi
129
130 case "${LB_INITRAMFS}" in
131 live-boot)
132 INITFS="live"
133 ;;
134
135 *)
136 INITFS=""
137 ;;
138 esac
139
140 # Setting destination directory
141 case "${LIVE_IMAGE_TYPE}" in
142 iso*|tar)
143 case "${LB_INITRAMFS}" in
144 live-boot)
145 DESTDIR_LIVE="binary/live"
146 ;;
147
148 *)
149 DESTDIR_LIVE="binary/boot"
150 ;;
151 esac
152
153 DESTDIR_INSTALL="binary/install"
154 ;;
155
156 hdd*|netboot)
157 Echo_warning "Bootloader in this image type not yet supported by live-build."
158 Echo_warning "This would produce a not bootable image, aborting (FIXME)."
159 exit 1
160 ;;
161 esac
162
163 Check_multiarchitectures
164
165 # Creating directory
166 mkdir -p "${DESTDIR_LIVE}"
167
168 # Setting boot parameters
169 if [ "${LB_UNION_FILESYSTEM}" != "aufs" ]
170 then
171 LB_BOOTAPPEND_LIVE="${LB_BOOTAPPEND_LIVE} union=${LB_UNION_FILESYSTEM}"
172 fi
173
174 if [ -n "${LB_NET_COW_PATH}" ]
175 then
176 Echo_error "Net cow not yet supported on grub-legacy"
177 exit 1
178 fi
179
180 LB_BOOTAPPEND_LIVE="$(echo ${LB_BOOTAPPEND_LIVE} | sed -e 's| ||')"
181
182 # Assembling kernel configuration
183
184 # Default entries
185 DEFAULT_FLAVOUR="$(echo ${LB_LINUX_FLAVOURS} | awk '{ print $1 }')"
186 DEFAULT_KERNEL="$(basename chroot/boot/vmlinuz-*${DEFAULT_FLAVOUR})"
187 DEFAULT_INITRD="initrd.img-$(echo ${DEFAULT_KERNEL} | sed -e 's|vmlinuz-||')"
188
189 Grub_live_entry "live" "$(basename ${DESTDIR_LIVE})/${DEFAULT_KERNEL}" "$(basename ${DESTDIR_LIVE})/${DEFAULT_INITRD}"
190
191 if [ "${LB_BOOTAPPEND_FAILSAFE}" != "none" ]
192 then
193 Grub_live_entry "live (fail-safe mode)" "$(basename ${DESTDIR_LIVE})/${DEFAULT_KERNEL}" "$(basename ${DESTDIR_LIVE})/${DEFAULT_INITRD}" "${LB_BOOTAPPEND_FAILSAFE}"
194 fi
195
196 for KERNEL in chroot/boot/vmlinuz-*
197 do
198 VERSION="$(basename ${KERNEL} | sed -e 's|vmlinuz-||')"
199
200 Grub_live_entry "live, kernel ${VERSION}" "$(basename ${DESTDIR_LIVE})/$(basename ${KERNEL})" "$(basename ${DESTDIR_LIVE})/initrd.img-${VERSION}"
201 Grub_live_entry "live, kernel ${VERSION} (fail-safe mode)" "$(basename ${DESTDIR_LIVE})/$(basename ${KERNEL})" "$(basename ${DESTDIR_LIVE})/initrd.img-${VERSION}" "${LB_BOOTAPPEND_FAILSAFE}"
202 done
203
204 LINUX_LIVE="$(/bin/echo ${LINUX_LIVE} | sed -e 's|binary||g' -e 's|//|/|g')"
205
206 # Assembling debian-installer configuration
207 if [ "${LB_DEBIAN_INSTALLER}" != "false" ]
208 then
209 LINUX_LIVE="title\t\tLive:\nroot\n\n${LINUX_LIVE}"
210 LINUX_INSTALL="title\t\tInstaller:\nroot"
211
212 VMLINUZ_DI="install/vmlinuz"
213 INITRD_DI="install/initrd.gz"
214 APPEND_DI="vga=normal"
215
216 VMLINUZ_GI="install/gtk/vmlinuz"
217 INITRD_GI="install/gtk/initrd.gz"
218 APPEND_GI="video=vesa:ywrap,mtrr vga=788"
219
220 if [ -f "binary/${VMLINUZ_DI}" ] && [ -f "binary/${INITRD_DI}" ]
221 then
222 Grub_install_entry "Text" "${VMLINUZ_DI}" "${INITRD_DI}" "${APPEND_DI}"
223 fi
224
225 if [ -f "binary/${VMLINUZ_GI}" ] && [ -f "binary/${INITRD_GI}" ]
226 then
227 Grub_install_entry "GUI" "${VMLINUZ_GI}" "${INITRD_GI}" "${APPEND_GI}"
228 fi
229 fi
230
231 LINUX_INSTALL="$(/bin/echo ${LINUX_INSTALL} | sed -e 's|binary||g' -e 's|//|/|g')"
232
233 # Assembling memtest configuration
234 if [ -f "${DESTDIR_LIVE}"/memtest ]
235 then
236 MEMTEST="title\t\tOther:\nroot"
237 MEMTEST="${MEMTEST}\n\ntitle\t\t${LB_MEMTEST}\nkernel\t\t/$(basename ${DESTDIR_LIVE})/memtest"
238 MEMTEST="$(/bin/echo ${MEMTEST} | sed -e 's|//|/|g')"
239 fi
240
241 # Copying templates
242 mkdir -p binary/boot/grub
243 cp -r "${_SOURCE}"/* binary/boot/grub
244
245 case ${LIVE_IMAGE_TYPE} in
246 iso*)
247 FILES="chroot/usr/lib/grub/*/stage2_eltorito"
248 ;;
249
250 hdd*|tar)
251 FILES="chroot/usr/lib/grub/*/stage1 chroot/usr/lib/grub/*/e2fs_stage1_5 chroot/usr/lib/grub/*/stage2"
252 ;;
253 esac
254
255 if [ "${LB_BUILD_WITH_CHROOT}" = "false" ]
256 then
257 FILES="$(echo ${FILES} | sed -e 's|chroot||g')"
258 fi
259
260 # Copying grub
261 cp ${FILES} binary/boot/grub
262
263 sed -i -e "s|LINUX_LIVE|${LINUX_LIVE}|" -e "s|LINUX_INSTALL|${LINUX_INSTALL}|" -e "s|MEMTEST|${MEMTEST}|" binary/boot/grub/menu.lst
264 sed -i -e "s#LB_BOOTAPPEND_INSTALL#${LB_BOOTAPPEND_INSTALL}#" -e "s#LB_BOOTAPPEND_LIVE#${LB_BOOTAPPEND_LIVE}#" binary/boot/grub/menu.lst
265
266 sed -i -e 's|\ $||g' binary/boot/grub/menu.lst
267
268 # Saving cache
269 Save_cache cache/packages.binary
270
271 # Removing depends
272 Remove_package
273
274 # Creating stage file
275 Create_stagefile .build/binary_grub
0 #!/bin/sh
1
2 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
4 ##
5 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
6 ## This is free software, and you are welcome to redistribute it
7 ## under certain conditions; see COPYING for details.
8
9
10 set -e
11
12 # Including common functions
13 [ -e "${LIVE_BUILD}/scripts/build.sh" ] && . "${LIVE_BUILD}/scripts/build.sh" || . /usr/lib/live/build.sh
14
15 # Setting static variables
16 DESCRIPTION="$(Echo 'installs grub-pc into binary')"
17 HELP=""
18 USAGE="${PROGRAM} [--force]"
19
20 Arguments "${@}"
21
22 # Reading configuration files
23 Read_conffiles config/all config/common config/bootstrap config/chroot config/binary config/source
24 Set_defaults
25
26 if [ "${LB_BOOTLOADER}" != "grub-pc" ]
27 then
28 exit 0
29 fi
30
31 Echo_message "Begin installing grub-pc..."
32
33 # Requiring stage file
34 Require_stagefile .build/config .build/bootstrap
35
36 # Checking stage file
37 Check_stagefile .build/binary_grub
38
39 # Checking lock file
40 Check_lockfile .lock
41
42 # Creating lock file
43 Create_lockfile .lock
44
45 # Check architecture
46 Check_architectures amd64 i386
47 Check_crossarchitectures
48
49 # Checking depends
50 Check_package chroot /usr/bin/grub-mkimage grub-pc
51
52 # Restoring cache
53 Restore_cache cache/packages.binary
54
55 # Installing depends
56 Install_package
57
58 # Local functions
59 Grub_live_entry ()
60 {
61 LABEL="${1}"
62 KERNEL="${2}"
63 INITRD="${3}"
64 APPEND="${4}"
65
66 LINUX_LIVE="${LINUX_LIVE}\nmenuentry \"Debian GNU/Linux - ${LABEL}\" {"
67 LINUX_LIVE="${LINUX_LIVE}\nlinux\t\t/${KERNEL} ${INITFS:+boot=${INITFS} }config LB_BOOTAPPEND_LIVE ${APPEND}"
68 LINUX_LIVE="${LINUX_LIVE}\ninitrd\t\t/${INITRD}"
69 LINUX_LIVE="${LINUX_LIVE}\n}"
70 }
71
72 Grub_install_entry ()
73 {
74 LABEL="${1}"
75 KERNEL="${2}"
76 INITRD="${3}"
77 APPEND="${4}"
78
79 if [ "${LABEL}" != "rescue" ] && [ "${LABEL}" != "rescuegui" ]
80 then
81 APPEND="${APPEND} quiet"
82 fi
83
84 LINUX_INSTALL="${LINUX_INSTALL}\nmenuentry \"Debian GNU/Linux - ${LABEL}\" {"
85 LINUX_INSTALL="${LINUX_INSTALL}\nlinux\t\t/${KERNEL} ${APPEND} LB_BOOTAPPEND_INSTALL"
86 LINUX_INSTALL="${LINUX_INSTALL}\ninitrd\t\t/${INITRD}"
87 LINUX_INSTALL="${LINUX_INSTALL}\n}"
88 }
89
90 if [ -e "config/bootloaders/grub-pc" ]
91 then
92 # Internal local copy
93 _SOURCE="config/bootloaders/grub-pc"
94 else
95 # Internal system copy
96 if [ -n "${LIVE_BUILD}" ]
97 then
98 _SOURCE="${LIVE_BUILD}/share/bootloaders/grub-pc"
99 else
100 _SOURCE="/usr/share/live/build/bootloaders/grub-pc"
101 fi
102 fi
103
104 case "${LB_INITRAMFS}" in
105 live-boot)
106 INITFS="live"
107 ;;
108
109 *)
110 INITFS=""
111 ;;
112 esac
113
114 # Setting destination directory
115 case "${LIVE_IMAGE_TYPE}" in
116 iso*|tar)
117 case "${LB_INITRAMFS}" in
118 live-boot)
119 DESTDIR_LIVE="binary/live"
120 ;;
121
122 *)
123 DESTDIR_LIVE="binary/live"
124 ;;
125 esac
126
127 DESTDIR_INSTALL="binary/install"
128 ;;
129
130 hdd*|netboot)
131 Echo_warning "Bootloader in this image type not yet supported by live-build."
132 Echo_warning "This would produce a not bootable image, aborting (FIXME)."
133 exit 1
134 ;;
135 esac
136
137 Check_multiarchitectures
138
139 # Creating directory
140 mkdir -p "${DESTDIR_LIVE}"
141
142 # Setting boot parameters
143 if [ "${LB_UNION_FILESYSTEM}" != "aufs" ]
144 then
145 LB_BOOTAPPEND_LIVE="${LB_BOOTAPPEND_LIVE} union=${LB_UNION_FILESYSTEM}"
146 fi
147
148 if [ -n "${LB_NET_COW_PATH}" ]
149 then
150 Echo_error "Net cow not yet supported on grub"
151 exit 1
152 fi
153
154 LB_BOOTAPPEND_LIVE="$(echo ${LB_BOOTAPPEND_LIVE} | sed -e 's| ||')"
155
156 # Assembling kernel configuration
157
158 # Default entries
159 DEFAULT_FLAVOUR="$(echo ${LB_LINUX_FLAVOURS} | awk '{ print $1 }')"
160 DEFAULT_KERNEL="$(basename chroot/boot/vmlinuz-*${DEFAULT_FLAVOUR})"
161 DEFAULT_INITRD="initrd.img-$(echo ${DEFAULT_KERNEL} | sed -e 's|vmlinuz-||')"
162
163 Grub_live_entry "live" "$(basename ${DESTDIR_LIVE})/${DEFAULT_KERNEL}" "$(basename ${DESTDIR_LIVE})/${DEFAULT_INITRD}"
164
165 if [ "${LB_BOOTAPPEND_FAILSAFE}" != "none" ]
166 then
167 Grub_live_entry "live (fail-safe mode)" "$(basename ${DESTDIR_LIVE})/${DEFAULT_KERNEL}" "$(basename ${DESTDIR_LIVE})/${DEFAULT_INITRD}" "${LB_BOOTAPPEND_FAILSAFE}"
168 fi
169
170 for KERNEL in chroot/boot/vmlinuz-*
171 do
172 VERSION="$(basename ${KERNEL} | sed -e 's|vmlinuz-||')"
173
174 Grub_live_entry "live, kernel ${VERSION}" "$(basename ${DESTDIR_LIVE})/$(basename ${KERNEL})" "$(basename ${DESTDIR_LIVE})/initrd.img-${VERSION}"
175 Grub_live_entry "live, kernel ${VERSION} (fail-safe mode)" "$(basename ${DESTDIR_LIVE})/$(basename ${KERNEL})" "$(basename ${DESTDIR_LIVE})/initrd.img-${VERSION}" "${LB_BOOTAPPEND_FAILSAFE}"
176 done
177
178 LINUX_LIVE="$(/bin/echo ${LINUX_LIVE} | sed -e 's|binary||g' -e 's|//|/|g')"
179
180 # Assembling debian-installer configuration
181 if [ "${LB_DEBIAN_INSTALLER}" != "false" ]
182 then
183 LINUX_LIVE="#\t \"Live\"\n${LINUX_LIVE}"
184 LINUX_INSTALL="#\t \"Installer\"\n"
185
186 VMLINUZ_DI="install/vmlinuz"
187 INITRD_DI="install/initrd.gz"
188 APPEND_DI="vga=normal"
189
190 VMLINUZ_GI="install/gtk/vmlinuz"
191 INITRD_GI="install/gtk/initrd.gz"
192 APPEND_GI="video=vesa:ywrap,mtrr vga=788"
193
194 Grub_install_entry "install" "${VMLINUZ_DI}" "${INITRD_DI}" "${APPEND_DI}"
195 Grub_install_entry "installgui" "${VMLINUZ_GI}" "${INITRD_GI}" "${APPEND_GI}"
196 Grub_install_entry "expert" "${VMLINUZ_DI}" "${INITRD_DI}" "priority=low ${APPEND_DI}"
197 Grub_install_entry "expertgui" "${VMLINUZ_GI}" "${INITRD_GI}" "priority=low ${APPEND_GI}"
198 Grub_install_entry "rescue" "${VMLINUZ_DI}" "${INITRD_DI}" "rescue/enable=true ${APPEND_DI}"
199 Grub_install_entry "rescuegui" "${VMLINUZ_GI}" "${INITRD_GI}" "rescue/enable=true ${APPEND_GI}"
200 Grub_install_entry "auto" "${VMLINUZ_DI}" "${INITRD_DI}" "auto=true priority=critical ${APPEND_DI}"
201 Grub_install_entry "autogui" "${VMLINUZ_GI}" "${INITRD_GI}" "auto=true priority=critical ${APPEND_GI}"
202 fi
203
204 LINUX_INSTALL="$(/bin/echo ${LINUX_INSTALL} | sed -e 's|binary||g' -e 's|//|/|g')"
205
206 # Assembling memtest configuration
207 if [ -f "${DESTDIR_LIVE}"/memtest ]
208 then
209 MEMTEST="#\t \"Other\"\n"
210 MEMTEST="${MEMTEST}\nmenuentry\t\"${LB_MEMTEST}\" {\nlinux16\t$(basename ${DESTDIR_LIVE})/memtest\n}"
211 MEMTEST="$(/bin/echo ${MEMTEST} | sed -e 's|//|/|g')"
212 fi
213
214 # Copying templates
215 mkdir -p binary/boot/grub/i386-pc
216 cp -r "${_SOURCE}"/* binary/boot/grub
217
218 case ${LIVE_IMAGE_TYPE} in
219 iso*)
220 FILES="chroot/usr/lib/grub/i386-pc/*.mod chroot/usr/lib/grub/i386-pc/*.lst chroot/usr/lib/grub/i386-pc/efiemu??.o chroot/usr/share/grub/*.pf2"
221 ;;
222
223 hdd*|tar)
224 FILES="chroot/usr/lib/grub/i386-pc/*"
225 ;;
226 esac
227
228 if [ "${LB_BUILD_WITH_CHROOT}" = "false" ]
229 then
230 FILES="$(echo ${FILES} | sed -e 's|chroot||g')"
231 fi
232
233 # Copying grub
234 cp ${FILES} binary/boot/grub/i386-pc
235
236 sed -i -e "s|LINUX_LIVE|${LINUX_LIVE}|" -e "s|LINUX_INSTALL|${LINUX_INSTALL}|" -e "s|MEMTEST|${MEMTEST}|" binary/boot/grub/grub.cfg
237 sed -i -e "s#LB_BOOTAPPEND_INSTALL#${LB_BOOTAPPEND_INSTALL}#" -e "s#LB_BOOTAPPEND_LIVE#${LB_BOOTAPPEND_LIVE}#" binary/boot/grub/grub.cfg
238
239 sed -i -e 's|\ $||g' binary/boot/grub/grub.cfg
240
241 # Saving cache
242 Save_cache cache/packages.binary
243
244 # Removing depends
245 Remove_package
246
247 # Creating stage file
248 Create_stagefile .build/binary_grub
+0
-246
scripts/build/binary_grub2 less more
0 #!/bin/sh
1
2 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
4 ##
5 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
6 ## This is free software, and you are welcome to redistribute it
7 ## under certain conditions; see COPYING for details.
8
9
10 set -e
11
12 # Including common functions
13 [ -e "${LIVE_BUILD}/scripts/build.sh" ] && . "${LIVE_BUILD}/scripts/build.sh" || . /usr/lib/live/build.sh
14
15 # Setting static variables
16 DESCRIPTION="$(Echo 'installs grub2 into binary')"
17 HELP=""
18 USAGE="${PROGRAM} [--force]"
19
20 Arguments "${@}"
21
22 # Reading configuration files
23 Read_conffiles config/all config/common config/bootstrap config/chroot config/binary config/source
24 Set_defaults
25
26 if [ "${LB_BOOTLOADER}" != "grub2" ]
27 then
28 exit 0
29 fi
30
31 Echo_message "Begin installing grub2..."
32
33 # Requiring stage file
34 Require_stagefile .build/config .build/bootstrap
35
36 # Checking stage file
37 Check_stagefile .build/binary_grub
38
39 # Checking grub2 templates
40 Check_templates grub2
41
42 # Checking lock file
43 Check_lockfile .lock
44
45 # Creating lock file
46 Create_lockfile .lock
47
48 # Check architecture
49 Check_architectures amd64 i386
50 Check_crossarchitectures
51
52 # Checking depends
53 Check_package chroot/usr/bin/grub-mkimage grub-pc
54
55 # Restoring cache
56 Restore_cache cache/packages.binary
57
58 # Installing depends
59 Install_package
60
61 # Local functions
62 Grub_live_entry ()
63 {
64 LABEL="${1}"
65 KERNEL="${2}"
66 INITRD="${3}"
67 APPEND="${4}"
68
69 LINUX_LIVE="${LINUX_LIVE}\nmenuentry \"Debian GNU/Linux - ${LABEL}\" {"
70 LINUX_LIVE="${LINUX_LIVE}\nlinux\t\t/${KERNEL} ${INITFS:+boot=${INITFS} }config LB_BOOTAPPEND_LIVE ${APPEND}"
71 LINUX_LIVE="${LINUX_LIVE}\ninitrd\t\t/${INITRD}"
72 LINUX_LIVE="${LINUX_LIVE}\n}"
73 }
74
75 Grub_install_entry ()
76 {
77 LABEL="${1}"
78 KERNEL="${2}"
79 INITRD="${3}"
80 APPEND="${4}"
81
82 if [ "${LABEL}" != "rescue" ] && [ "${LABEL}" != "rescuegui" ]
83 then
84 APPEND="${APPEND} quiet"
85 fi
86
87 LINUX_INSTALL="${LINUX_INSTALL}\nmenuentry \"Debian GNU/Linux - ${LABEL}\" {"
88 LINUX_INSTALL="${LINUX_INSTALL}\nlinux\t\t/${KERNEL} ${APPEND} LB_BOOTAPPEND_INSTALL"
89 LINUX_INSTALL="${LINUX_INSTALL}\ninitrd\t\t/${INITRD}"
90 LINUX_INSTALL="${LINUX_INSTALL}\n}"
91 }
92
93 case "${LB_INITRAMFS}" in
94 casper)
95 INITFS="casper"
96 ;;
97
98 live-boot)
99 INITFS="live"
100 ;;
101
102 *)
103 INITFS=""
104 ;;
105 esac
106
107 # Setting destination directory
108 case "${LIVE_IMAGE_TYPE}" in
109 iso*|tar)
110 case "${LB_INITRAMFS}" in
111 casper)
112 DESTDIR_LIVE="binary/casper"
113 ;;
114
115 live-boot)
116 DESTDIR_LIVE="binary/live"
117 ;;
118
119 *)
120 DESTDIR_LIVE="binary/live"
121 ;;
122 esac
123
124 DESTDIR_INSTALL="binary/install"
125 ;;
126
127 hdd*|netboot)
128 Echo_warning "Bootloader in this image type not yet supported by live-build."
129 Echo_warning "This would produce a not bootable image, aborting (FIXME)."
130 exit 1
131 ;;
132 esac
133
134 Check_multiarchitectures
135
136 # Creating directory
137 mkdir -p "${DESTDIR_LIVE}"
138
139 # Setting boot parameters
140 if [ "${LB_UNION_FILESYSTEM}" != "aufs" ]
141 then
142 LB_BOOTAPPEND_LIVE="${LB_BOOTAPPEND_LIVE} union=${LB_UNION_FILESYSTEM}"
143 fi
144
145 if [ -n "${LB_NET_COW_PATH}" ]
146 then
147 Echo_error "Net cow not yet supported on grub"
148 exit 1
149 fi
150
151 LB_BOOTAPPEND_LIVE="$(echo ${LB_BOOTAPPEND_LIVE} | sed -e 's| ||')"
152
153 # Assembling kernel configuration
154
155 # Default entries
156 DEFAULT_FLAVOUR="$(echo ${LB_LINUX_FLAVOURS} | awk '{ print $1 }')"
157 DEFAULT_KERNEL="$(basename chroot/boot/vmlinuz-*${DEFAULT_FLAVOUR})"
158 DEFAULT_INITRD="initrd.img-$(echo ${DEFAULT_KERNEL} | sed -e 's|vmlinuz-||')"
159
160 Grub_live_entry "live" "$(basename ${DESTDIR_LIVE})/${DEFAULT_KERNEL}" "$(basename ${DESTDIR_LIVE})/${DEFAULT_INITRD}"
161
162 if [ "${LB_BOOTAPPEND_FAILSAFE}" != "none" ]
163 then
164 Grub_live_entry "live (fail-safe mode)" "$(basename ${DESTDIR_LIVE})/${DEFAULT_KERNEL}" "$(basename ${DESTDIR_LIVE})/${DEFAULT_INITRD}" "${LB_BOOTAPPEND_FAILSAFE}"
165 fi
166
167 for KERNEL in chroot/boot/vmlinuz-*
168 do
169 VERSION="$(basename ${KERNEL} | sed -e 's|vmlinuz-||')"
170
171 Grub_live_entry "live, kernel ${VERSION}" "$(basename ${DESTDIR_LIVE})/$(basename ${KERNEL})" "$(basename ${DESTDIR_LIVE})/initrd.img-${VERSION}"
172 Grub_live_entry "live, kernel ${VERSION} (fail-safe mode)" "$(basename ${DESTDIR_LIVE})/$(basename ${KERNEL})" "$(basename ${DESTDIR_LIVE})/initrd.img-${VERSION}" "${LB_BOOTAPPEND_FAILSAFE}"
173 done
174
175 LINUX_LIVE="$(/bin/echo ${LINUX_LIVE} | sed -e 's|binary||g' -e 's|//|/|g')"
176
177 # Assembling debian-installer configuration
178 if [ "${LB_DEBIAN_INSTALLER}" != "false" ]
179 then
180 LINUX_LIVE="#\t \"Live\"\n${LINUX_LIVE}"
181 LINUX_INSTALL="#\t \"Installer\"\n"
182
183 VMLINUZ_DI="install/vmlinuz"
184 INITRD_DI="install/initrd.gz"
185 APPEND_DI="vga=normal"
186
187 VMLINUZ_GI="install/gtk/vmlinuz"
188 INITRD_GI="install/gtk/initrd.gz"
189 APPEND_GI="video=vesa:ywrap,mtrr vga=788"
190
191 Grub_install_entry "install" "${VMLINUZ_DI}" "${INITRD_DI}" "${APPEND_DI}"
192 Grub_install_entry "installgui" "${VMLINUZ_GI}" "${INITRD_GI}" "${APPEND_GI}"
193 Grub_install_entry "expert" "${VMLINUZ_DI}" "${INITRD_DI}" "priority=low ${APPEND_DI}"
194 Grub_install_entry "expertgui" "${VMLINUZ_GI}" "${INITRD_GI}" "priority=low ${APPEND_GI}"
195 Grub_install_entry "rescue" "${VMLINUZ_DI}" "${INITRD_DI}" "rescue/enable=true ${APPEND_DI}"
196 Grub_install_entry "rescuegui" "${VMLINUZ_GI}" "${INITRD_GI}" "rescue/enable=true ${APPEND_GI}"
197 Grub_install_entry "auto" "${VMLINUZ_DI}" "${INITRD_DI}" "auto=true priority=critical ${APPEND_DI}"
198 Grub_install_entry "autogui" "${VMLINUZ_GI}" "${INITRD_GI}" "auto=true priority=critical ${APPEND_GI}"
199 fi
200
201 LINUX_INSTALL="$(/bin/echo ${LINUX_INSTALL} | sed -e 's|binary||g' -e 's|//|/|g')"
202
203 # Assembling memtest configuration
204 if [ -f "${DESTDIR_LIVE}"/memtest ]
205 then
206 MEMTEST="#\t \"Other\"\n"
207 MEMTEST="${MEMTEST}\nmenuentry\t\"${LB_MEMTEST}\" {\nlinux16\t$(basename ${DESTDIR_LIVE})/memtest\n}"
208 MEMTEST="$(/bin/echo ${MEMTEST} | sed -e 's|//|/|g')"
209 fi
210
211 # Copying templates
212 mkdir -p binary/boot/grub
213 cp -r "${TEMPLATES}"/* binary/boot/grub
214
215 case ${LIVE_IMAGE_TYPE} in
216 iso*)
217 FILES="chroot/usr/lib/grub/i386-pc/*.mod chroot/usr/lib/grub/i386-pc/*.lst chroot/usr/lib/grub/i386-pc/efiemu??.o chroot/usr/share/grub/*.pf2"
218 ;;
219
220 hdd*|tar)
221 FILES="chroot/usr/lib/grub/i386-pc/*"
222 ;;
223 esac
224
225 if [ "${LB_BUILD_WITH_CHROOT}" = "false" ]
226 then
227 FILES="$(echo ${FILES} | sed -e 's|chroot||g')"
228 fi
229
230 # Copying grub
231 cp ${FILES} binary/boot/grub
232
233 sed -i -e "s|LINUX_LIVE|${LINUX_LIVE}|" -e "s|LINUX_INSTALL|${LINUX_INSTALL}|" -e "s|MEMTEST|${MEMTEST}|" binary/boot/grub/grub.cfg
234 sed -i -e "s#LB_BOOTAPPEND_INSTALL#${LB_BOOTAPPEND_INSTALL}#" -e "s#LB_BOOTAPPEND_LIVE#${LB_BOOTAPPEND_LIVE}#" binary/boot/grub/grub.cfg
235
236 sed -i -e 's|\ $||g' binary/boot/grub/grub.cfg
237
238 # Saving cache
239 Save_cache cache/packages.binary
240
241 # Removing depends
242 Remove_package
243
244 # Creating stage file
245 Create_stagefile .build/binary_grub
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
4545 # Checking depends
4646 case "${LB_BINARY_FILESYSTEM}" in
4747 fat*)
48 Check_package chroot/sbin/mkdosfs dosfstools
48 Check_package chroot /sbin/mkdosfs dosfstools
4949 ;;
5050
5151 ntfs)
52 Check_package chroot/sbin/mkfs.nfts ntfs-3g
53 ;;
54 esac
55
56 Check_package chroot/usr/share/doc/mtools mtools
57 Check_package chroot/sbin/parted parted
58
59 if [ "${LB_ARCHITECTURES}" = "sparc" ]
60 then
61 case "${LB_BINARY_FILESYSTEM}" in
62 ext2|ext3|ext4)
63 Check_package chroot/sbin/mkfs.${LB_BINARY_FILESYSTEM} e2fsprogs
64 ;;
65
66 *)
67 Echo_error "Sparc only supports booting from ext2, ext3, ext4 or ufs."
68 exit 1
69 ;;
70 esac
71 fi
52 Check_package chroot /sbin/mkfs.nfts ntfs-3g
53 ;;
54 esac
55
56 Check_package chroot /usr/share/doc/mtools mtools
57 Check_package chroot /sbin/parted parted
7258
7359 case "${LB_BOOTLOADER}" in
7460 grub)
75 Check_package chroot/usr/sbin/grub grub
61 Check_package chroot /usr/sbin/grub grub
7662 ;;
7763
7864 syslinux)
8874 exit 1
8975 ;;
9076 esac
91 Check_package chroot/usr/bin/${_BOOTLOADER} ${_BOOTLOADER}
77 Check_package chroot /usr/bin/${_BOOTLOADER} ${_BOOTLOADER}
9278 ;;
9379 esac
9480
153139 echo "!!! The following error/warning messages can be ignored !!!"
154140 Losetup $FREELO chroot/binary.img 0
155141
156 case "${LB_ARCHITECTURES}" in
157 sparc)
158 PARTITION_TABLE_TYPE="sun"
159 ;;
160 *)
161 PARTITION_TABLE_TYPE="msdos"
162 ;;
163 esac
142 PARTITION_TABLE_TYPE="msdos"
164143
165144 case "${LB_BINARY_FILESYSTEM}" in
166145 ext2|ext3|ext4)
190169
191170 if [ "${LB_BOOTLOADER}" = "syslinux" ]
192171 then
193 dd if=chroot/usr/lib/${_BOOTLOADER}/mbr.bin of=${FREELO} bs=440 count=1
172 dd if=chroot/usr/lib/SYSLINUX/mbr.bin of=${FREELO} bs=440 count=1
194173 fi
195174 ;;
196175
202181
203182 if [ "${LB_BOOTLOADER}" = "syslinux" ]
204183 then
205 dd if=/usr/lib/${_BOOTLOADER}/mbr.bin of=${FREELO} bs=440 count=1
184 dd if=/usr/lib/SYSLINUX/mbr.bin of=${FREELO} bs=440 count=1
206185 fi
207186 ;;
208187 esac
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
5757 done
5858
5959 ## Processing local hooks
60 for HOOK in config/hooks/normal/*.binary config/hooks/live/*.binary
61 do
62 if [ ! -e "${HOOK}" ]
63 then
64 continue
65 fi
6066
61 if Find_files config/hooks/*.binary
62 then
63 for HOOK in config/hooks/*.binary
64 do
65 # Making hook executable
66 if [ ! -x "${HOOK}" ]
67 then
68 chmod +x "${HOOK}"
69 fi
67 # Making hook executable
68 if [ ! -x "${HOOK}" ]
69 then
70 chmod +x "${HOOK}"
71 fi
7072
71 # Executing hook
72 ./"${HOOK}" || { Echo_error "${HOOK} failed (exit non-zero). You should check for errors."; exit 1 ;}
73 done
73 # Executing hook
74 cd binary
75 ../"${HOOK}" || { Echo_error "${HOOK} failed (exit non-zero). You should check for errors."; exit 1 ;}
76 cd "${OLDPWD}"
77 done
7478
75 # Creating stage file
76 Create_stagefile .build/binary_hooks
77 fi
79 # Creating stage file
80 Create_stagefile .build/binary_hooks
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
5252 Create_lockfile .lock
5353
5454 # Checking depends
55 Check_package chroot/usr/bin/xorriso xorriso
56
57 case "${LB_PARENT_DISTRIBUTION}" in
58 wheezy)
59 _ISOHDPFX="/usr/lib/syslinux/isohdpfx.bin"
60 Check_package chroot/${_ISOHDPFX} syslinux-common
61 ;;
62
63 *)
64 _ISOHDPFX="/usr/lib/ISOLINUX/isohdpfx.bin"
65 Check_package chroot/${_ISOHDPFX} isolinux
66 ;;
67 esac
55 Check_package chroot /usr/bin/xorriso xorriso
56 Check_package chroot /usr/lib/ISOLINUX/isohdpfx.bin isolinux
6857
6958 # Restoring cache
7059 Restore_cache cache/packages.binary
7968 fi
8069
8170 # Handle xorriso generic options
82 XORRISO_OPTIONS="-R -r -J -joliet-long -l -cache-inodes"
71 XORRISO_OPTIONS="-R -r -J -joliet-long -l -cache-inodes -iso-level 3"
8372
8473 # Handle xorriso live-build specific options
8574 if [ "${LIVE_IMAGE_TYPE}" = "iso-hybrid" ]
8675 then
87 XORRISO_OPTIONS="${XORRISO_OPTIONS} -isohybrid-mbr ${_ISOHDPFX} -partition_offset 16"
76 XORRISO_OPTIONS="${XORRISO_OPTIONS} -isohybrid-mbr /usr/lib/ISOLINUX/isohdpfx.bin -partition_offset 16"
8877 fi
8978
9079 if [ "${_QUIET}" = "true" ]
125114 XORRISO_EXCLUDE="boot/grub/stage2_eltorito"
126115 ;;
127116
128 grub2)
117 grub-pc)
129118 XORRISO_OPTIONS="${XORRISO_OPTIONS} -no-emul-boot -boot-load-size 4 -boot-info-table"
130119 XORRISO_OPTIONS="${XORRISO_OPTIONS} -b boot/grub/grub_eltorito -J"
131120 XORRISO_EXCLUDE="boot/grub/grub_eltorito"
159148 # XORRISO_OPTIONS="${XORRISO_OPTIONS} -m ${XORRISO_EXCLUDE}"
160149 #fi
161150
162 if [ "${LB_BOOTLOADER}" = "grub2" ]
151 if [ "${LB_BOOTLOADER}" = "grub-pc" ]
163152 then
164153
165154 cat > binary.sh << EOF
182171 do
183172 if test -f "\$file"
184173 then
185 cp -f "\$file" binary/boot/grub
174 cp -f "\$file" binary/boot/grub/i386-pc
186175 fi
187176 done
188177 EOF
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
4343 Create_lockfile .lock
4444
4545 case "${LB_INITRAMFS}" in
46 casper)
47 DESTDIR="binary/casper"
48 ;;
49
5046 live-boot)
5147 DESTDIR="binary/live"
5248 ;;
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
4747 case "${LB_BUILD_WITH_CHROOT}" in
4848 true)
4949 # Checking depends
50 Check_package chroot/usr/lib/loadlin/loadlin.exe.gz loadlin
50 Check_package chroot /usr/lib/loadlin/loadlin.exe.gz loadlin
5151
5252 # Restoring cache
5353 Restore_cache cache/packages.binary
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
4343 Create_lockfile .lock
4444
4545 case "${LB_INITRAMFS}" in
46 casper)
47 INITFS="casper"
48 SUFFIX="manifest"
49 ;;
50
5146 live-boot)
5247 INITFS="live"
5348 SUFFIX="packages"
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
6363 # Checking depends
6464 case "${LB_MEMTEST}" in
6565 memtest86)
66 Check_package chroot/boot/memtest86.bin memtest86
66 Check_package chroot /boot/memtest86.bin memtest86
6767 ;;
6868
6969 memtest86+)
70 Check_package chroot/boot/memtest86+.bin memtest86+
70 Check_package chroot /boot/memtest86+.bin memtest86+
7171 ;;
7272 esac
7373
7979
8080 # Setting destination directory
8181 case "${LB_INITRAMFS}" in
82 casper)
83 DESTDIR="binary/casper"
84 ;;
85
8682 live-boot)
8783 DESTDIR="binary/live"
8884 ;;
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
4646
4747 # Creating lock file
4848 Create_lockfile .lock
49
50 if [ "${LB_ARCHITECTURES}" = "sparc" ]
51 then
52 # Checking depends
53 Check_package chroot/usr/bin/elftoaout sparc-utils
54
55 # Restoring cache
56 Restore_cache cache/packages.binary
57
58 # Installing depends
59 Install_package
60
61 # Set target and source directories
62 DESTDIR="tftpboot"
63 case "${LB_INITRAMFS}" in
64 casper)
65 ORIGDIR="binary/casper"
66 ;;
67
68 live-boot)
69 ORIGDIR="binary/live"
70 ;;
71
72 *)
73 ORIGDIR="binary/boot"
74 ;;
75 esac
76
77 # Find defaults
78 DEFAULT_FLAVOUR="$(echo ${LB_LINUX_FLAVOURS} | awk '{ print $1 }')"
79 DEFAULT_KERNEL="$(basename chroot/boot/vmlinuz-*${DEFAULT_FLAVOUR})"
80 DEFAULT_INITRD="initrd.img-$(echo ${DEFAULT_KERNEL} | sed -e 's|vmlinuz-||')"
81 DEFAULT_MAP="$(echo chroot/boot/System.map-*${DEFAULT_FLAVOUR})"
82
83 gzip -cd ${ORIGDIR}/${DEFAULT_KERNEL} > kernel.tmp
84
85 mkdir -p ${DESTDIR}
86 rm -f ${DESTDIR}/boot.img
87 elftoaout -o ${DESTDIR}/boot.img kernel.tmp
88
89 case "${DEFAULT_FLAVOUR}" in
90 sparc32)
91 piggyback ${DESTDIR}/boot.img ${DEFAULT_MAP} ${ORIGDIR}/${DEFAULT_INITRD}
92 ;;
93 sparc64)
94 piggyback64 ${DESTDIR}/boot.img ${DEFAULT_MAP} ${ORIGDIR}/${DEFAULT_INITRD}
95 ;;
96 *)
97 Echo_error "Invalid default kernel flavour for sparc \"%s\"" "${DEFAULT_FLAVOUR}"
98 exit 1;
99 ;;
100 esac
101
102 # Pad boot.img
103 REMAINDER=$((( 4 - $(stat -c %s ${DESTDIR}/boot.img) % 4 ) % 4))
104 dd if=/dev/zero bs=1 count=${REMAINDER} >> ${DESTDIR}/boot.img
105
106 # No need for kernel and initrd images in the binary
107 rm -f ${ORIGDIR}/vmlinuz-*
108 rm -f ${ORIGDIR}/initrd.img-*
109
110 # Clean temporaries
111 rm -f kernel.tmp
112
113 # Saving cache
114 Save_cache cache/packages.binary
115
116 # Removing depends
117 Remove_package
118 fi
11949
12050 # Remove old binary
12151 rm -f ${LIVE_IMAGE_NAME}-${LB_ARCHITECTURES}.netboot.tar ${LIVE_IMAGE_NAME}-${LB_ARCHITECTURES}.netboot.tar.gz ${LIVE_IMAGE_NAME}-${LB_ARCHITECTURES}.netboot.tar.bz2 ${LIVE_IMAGE_NAME}-${LB_ARCHITECTURES}.netboot.tar.xz ${LIVE_IMAGE_NAME}-${LB_ARCHITECTURES}.netboot.tar.xz
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
5252 if ls config/package-lists/*.list > /dev/null 2>&1 || \
5353 ls config/package-lists/*.list.binary > /dev/null 2>&1
5454 then
55 # Check depends
56 Check_package host /usr/bin/apt-ftparchive apt-utils
57
5558 case "${LB_BUILD_WITH_CHROOT}" in
5659 true)
5760 # Restoring cache
5861 Restore_cache cache/packages.chroot
5962
6063 # Check depends
61 Check_package chroot/usr/bin/apt-ftparchive apt-utils
62 Check_package chroot/usr/bin/grep-aptavail dctrl-tools
64 Check_package chroot /usr/bin/grep-aptavail dctrl-tools
6365
6466 # Installing depends
6567 Install_package
6668 ;;
6769
6870 false)
69 if [ ! -e /usr/bin/apt-ftparchive ]; then
70 # apt-utils
71 Echo_error "/usr/bin/apt-ftparchive - no such file."
72 exit 1
73 fi
74
75 if [ ! -e /usr/bin/grep-aptavail ]; then
76 # dctrl-tools
77 Echo_error "/usr/bin/grep-aptavail - no such file."
78 exit 1
79 fi
71 Check_package host /usr/bin/grep-aptavail dctrl-tools
8072 ;;
8173 esac
8274
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
4848 esac
4949
5050 case "${LB_INITRAMFS}" in
51 casper)
52 INITFS="casper"
53 ;;
54
5551 live-boot)
5652 INITFS="live"
5753 ;;
8480 case "${LB_CHROOT_FILESYSTEM}" in
8581 ext2|ext3|ext4)
8682 # Checking depends
87 Check_package chroot/sbin/mkfs.${LB_CHROOT_FILESYSTEM} e2fsprogs
83 Check_package chroot /sbin/mkfs.${LB_CHROOT_FILESYSTEM} e2fsprogs
8884
8985 # Restoring cache
9086 Restore_cache cache/packages.binary
140136 # Move image
141137 mv chroot/filesystem.${LB_CHROOT_FILESYSTEM} binary/${INITFS}
142138
143 case "${LB_MODE}" in
144 ubuntu)
145 du -B 1 -s chroot/chroot | cut -f1 > binary/${INITFS}/filesystem.size
146 ;;
147 esac
139 du -B 1 -s chroot/chroot | cut -f1 > binary/${INITFS}/filesystem.size
148140
149141 if [ -e chroot/chroot.cache ]
150142 then
157149 lb chroot_resolv remove ${@}
158150 lb chroot_hosts remove ${@}
159151 lb chroot_sysv-rc remove ${@}
160 lb chroot_upstart remove ${@}
161152 lb chroot_dpkg remove ${@}
162153 lb chroot_debianchroot remove ${@}
163154 lb chroot_sysfs remove ${@}
175166 lb chroot_debianchroot install ${@}
176167 lb chroot_dpkg install ${@}
177168 lb chroot_sysv-rc install ${@}
178 lb chroot_upstart install ${@}
179169 lb chroot_hosts install ${@}
180170 lb chroot_resolv install ${@}
181171 lb chroot_hostname install ${@}
210200
211201 jffs2)
212202 # Checking depends
213 Check_package chroot/usr/sbin/mkfs.jffs2 mtd-tools
203 Check_package chroot /usr/sbin/mkfs.jffs2 mtd-tools
214204
215205 # Restoring cache
216206 Restore_cache cache/packages.binary
247237 lb chroot_resolv remove ${@}
248238 lb chroot_hosts remove ${@}
249239 lb chroot_sysv-rc remove ${@}
250 lb chroot_upstart remove ${@}
251240 lb chroot_dpkg remove ${@}
252241 lb chroot_debianchroot remove ${@}
253242 lb chroot_sysfs remove ${@}
265254 lb chroot_debianchroot install ${@}
266255 lb chroot_dpkg install ${@}
267256 lb chroot_sysv-rc install ${@}
268 lb chroot_upstart install ${@}
269257 lb chroot_hosts install ${@}
270258 lb chroot_resolv install ${@}
271259 lb chroot_hostname install ${@}
309297
310298 squashfs)
311299 # Checking depends
312 Check_package chroot/usr/share/doc/squashfs-tools squashfs-tools
300 Check_package chroot /usr/share/doc/squashfs-tools squashfs-tools
313301
314302 # Restoring cache
315303 Restore_cache cache/packages.binary
351339 esac
352340 fi
353341
354 if [ "${LB_MODE}" != "ubuntu" ]
355 then
356 MKSQUASHFS_OPTIONS="${MKSQUASHFS_OPTIONS} -comp xz"
357 fi
342 MKSQUASHFS_OPTIONS="${MKSQUASHFS_OPTIONS} -comp xz"
358343
359344 case "${LB_BUILD_WITH_CHROOT}" in
360345 true)
370355
371356 rm -f chroot/chroot/excludes
372357
373 case "${LB_MODE}" in
374 ubuntu)
375 du -B 1 -s chroot/chroot | cut -f1 > binary/${INITFS}/filesystem.size
376 ;;
377 esac
358 du -B 1 -s chroot/chroot | cut -f1 > binary/${INITFS}/filesystem.size
378359
379360 # Move image
380361 mv chroot/filesystem.squashfs binary/${INITFS}
391372 lb chroot_resolv remove ${@}
392373 lb chroot_hosts remove ${@}
393374 lb chroot_sysv-rc remove ${@}
394 lb chroot_upstart remove ${@}
395375 lb chroot_dpkg remove ${@}
396376 lb chroot_debianchroot remove ${@}
397377 lb chroot_sysfs remove ${@}
409389 lb chroot_debianchroot install ${@}
410390 lb chroot_dpkg install ${@}
411391 lb chroot_sysv-rc install ${@}
412 lb chroot_upstart install ${@}
413392 lb chroot_hosts install ${@}
414393 lb chroot_resolv install ${@}
415394 lb chroot_hostname install ${@}
435414
436415 mksquashfs chroot binary/${INITFS}/filesystem.squashfs ${MKSQUASHFS_OPTIONS}
437416
438 case "${LB_MODE}" in
439 ubuntu)
440 du -B 1 -s chroot | cut -f1 > binary/${INITFS}/filesystem.size
441 ;;
442 esac
417 du -B 1 -s chroot | cut -f1 > binary/${INITFS}/filesystem.size
443418 ;;
444419 esac
445420
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
4747 Check_crossarchitectures
4848
4949 case "${LB_INITRAMFS}" in
50 casper)
51 _INITRAMFS="casper"
52 ;;
53
5450 *)
5551 _INITRAMFS="live"
5652 ;;
119115 fi
120116 fi
121117
122 # legacy compatibility for wheezy
123 if [ -e "${_SOURCE}.${LB_PARENT_DISTRIBUTION}" ]
124 then
125 _SOURCE="${_SOURCE}.${LB_PARENT_DISTRIBUTION}"
126 fi
127
128118 # Checking depends
129119 case "${LB_BUILD_WITH_CHROOT}" in
130120 true)
131 case "${LB_PARENT_DISTRIBUTION}" in
132 wheezy)
133 case "${_BOOTLOADER}" in
134 syslinux|extlinux)
135 Check_package chroot/usr/bin/${_BOOTLOADER} ${_BOOTLOADER}
136 ;;
137
138 *)
139 Check_package chroot/usr/lib/syslinux syslinux-common
140 ;;
141 esac
142 ;;
143
144 *)
145 Check_package chroot/usr/lib/$(echo ${_BOOTLOADER} | tr [a-z] [A-Z]) ${_BOOTLOADER}
146 Check_package chroot/usr/lib/syslinux syslinux-common
147 ;;
148 esac
149
150 Check_package chroot/usr/lib/syslinux syslinux-common
121 Check_package chroot /usr/lib/$(echo ${_BOOTLOADER} | tr [a-z] [A-Z]) ${_BOOTLOADER}
122 Check_package chroot /usr/lib/syslinux syslinux-common
151123
152124 if ls "${_SOURCE}"/*.svg* > /dev/null 2>&1
153125 then
154 Check_package chroot/usr/bin/rsvg-convert librsvg2-bin
126 Check_package chroot /usr/bin/rsvg-convert librsvg2-bin
155127 fi
156128 ;;
157129
158130 false)
159 case "${LB_PARENT_DISTRIBUTION}" in
160 wheezy)
161 case "${_BOOTLOADER}" in
162 syslinux|extlinux)
163 if [ ! -e /usr/bin/${_BOOTLOADER} ]
164 then
165 # syslinux or extlinux
166 Echo_error "/usr/bin/${_BOOTLOADER} - no such file."
167 exit 1
168 fi
169 ;;
170
171 *)
172 if ! ls /usr/lib/syslinux/${_BOOTLOADER}* > /dev/null 2>&1
173 then
174 Echo_error "/usr/lib/syslinux/${_BOOTLOADER}* - no such files."
175 exit 1
176 fi
177 ;;
178 esac
179 ;;
180
181 *)
182 if [ ! -e "/usr/share/$(echo ${_BOOTLOADER} | tr [a-z] [A-Z])" ]
183 then
184 Echo_error "/usr/share/$(echo ${_BOOTLOADER} | tr [a-z] [A-Z])"
185 exit 1
186 fi
187 ;;
188 esac
189
131 if [ ! -e "/usr/share/$(echo ${_BOOTLOADER} | tr [a-z] [A-Z])" ]
132 then
133 Echo_error "/usr/share/$(echo ${_BOOTLOADER} | tr [a-z] [A-Z])"
134 exit 1
135 fi
190136
191137 if [ ! -e /usr/lib/syslinux ]
192138 then
282228 esac
283229 fi
284230
285 eval _VERSION="$`echo RELEASE_${LB_DISTRIBUTION}`"
231 if [ -e chroot/etc/os-release ]
232 then
233 _VERSION="$(. chroot/etc/os-release && echo ${VERSION_ID})"
234 fi
235
236 _VERSION="${VERSION:-none}"
286237
287238 _DISTRIBUTION="${LB_DISTRIBUTION}"
288239 _ARCHITECTURE="${LB_ARCHITECTURES}"
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
4545 # Remove old binary
4646 rm -f ${LIVE_IMAGE_NAME}-${LB_ARCHITECTURES}.tar.bz2 ${LIVE_IMAGE_NAME}-${LB_ARCHITECTURES}.tar.gz ${LIVE_IMAGE_NAME}-${LB_ARCHITECTURES}.tar.lz ${LIVE_IMAGE_NAME}-${LB_ARCHITECTURES}.tar
4747
48 tar cf ${LIVE_IMAGE_NAME}-${LB_ARCHITECTURES}.tar.tar ${LIVE_IMAGE_NAME}-${LB_ARCHITECTURES}.
48 tar cf ${LIVE_IMAGE_NAME}-${LB_ARCHITECTURES}.tar.tar binary
49
4950 case "${LB_COMPRESSION}" in
5051 bzip2)
5152 bzip2 ${BZIP2_OPTIONS} ${LIVE_IMAGE_NAME}-${LB_ARCHITECTURES}.tar.tar
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
4242 # Creating lock file
4343 Create_lockfile .lock
4444
45 case "${LB_MODE}" in
46 progress-linux)
47 RUN_LABEL="Run Progress Linux"
48 ;;
49
50 *)
51 RUN_LABEL="Run Debian GNU/Linux"
52 ;;
53 esac
54
4555 case "${LB_ARCHITECTURES}" in
4656 amd64|i386)
4757 if [ "${LB_BUILD_WITH_CHROOT}" = "true" ]
4858 then
4959 # Checking depends
50 Check_package chroot/usr/share/win32/win32-loader.exe win32-loader
60 Check_package chroot /usr/share/win32/win32-loader.exe win32-loader
5161
5262 # Restoring cache
5363 Restore_cache cache/packages.binary
6575 mv binary/win32-loader/g2ldr* binary
6676 rmdir binary/win32-loader > /dev/null 2>&1 || true
6777
68 cat >> binary/autorun.inf << EOF
78 cat > binary/autorun.inf << EOF
6979 [autorun]
7080 open=setup.exe
81 icon=setup.exe,0
82 label=${RUN_LABEL}
83
84 [Content]
85 MusicFiles=false
86 PictureFiles=false
87 VideoFiles=false
7188 EOF
7289
7390 if [ "${LB_DEBIAN_INSTALLER}" != "false" ]
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
4848 Create_lockfile .lock
4949
5050 # Checking depends
51 Check_package chroot/usr/bin/zsyncmake zsync
51 Check_package chroot /usr/bin/zsyncmake zsync
5252
5353 # Restoring cache
5454 Restore_cache cache/packages.binary
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
3535
3636 # Bootstrapping system
3737 lb bootstrap_cache restore ${@}
38 lb bootstrap_cdebootstrap ${@}
3938 lb bootstrap_debootstrap ${@}
4039 lb bootstrap_archive-keys ${@}
4140 lb bootstrap_cache save ${@}
4948 lb chroot_dpkg install ${@}
5049 lb chroot_tmpfs install ${@}
5150 lb chroot_sysv-rc install ${@}
52 lb chroot_upstart install ${@}
5351 lb chroot_hosts install ${@}
5452 lb chroot_resolv install ${@}
5553 lb chroot_hostname install ${@}
6361 lb chroot_resolv remove ${@}
6462 lb chroot_hosts remove ${@}
6563 lb chroot_sysv-rc remove ${@}
66 lb chroot_upstart remove ${@}
6764 lb chroot_tmpfs remove ${@}
6865 lb chroot_dpkg remove ${@}
6966 lb chroot_debianchroot remove ${@}
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
3232 progress-linux)
3333 case "${LB_DISTRIBUTION}" in
3434 artax*)
35 _KEYS="1.0-artax 1.0-artax-packages"
35 _KEYS="artax artax-backports"
3636 ;;
3737
3838 baureo*)
39 _KEYS="2.0-baureo 2.0-baureo-packages"
39 _KEYS="baureo baureo-backports"
4040 ;;
4141
42 chairon*)
43 _KEYS="3.0-chairon 3.0-chairon-packages"
42 cairon*)
43 _KEYS="cairon cairon-backports"
4444 ;;
4545 esac
4646
47 _URL="${LB_MIRROR_CHROOT}/project/keys"
47 _URL="${LB_MIRROR_CHROOT}/project/pgp"
4848 ;;
4949 esac
5050
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
5858
5959 # Configure custom sources.list
6060
61 if echo "${LB_PARENT_MIRROR_CHROOT}" | grep -q '^file:/'
62 then
63 Chroot_bind_path chroot "$(echo ${LB_PARENT_MIRROR_CHROOT} | sed -e 's|file:||')"
64 fi
65
6166 cat > chroot/etc/apt/${_PARENT_FILE} << EOF
62 deb ${LB_PARENT_MIRROR_CHROOT} ${LB_PARENT_DISTRIBUTION} ${LIVE_IMAGE_PARENT_ARCHIVE_AREAS}
67 deb ${LB_PARENT_MIRROR_CHROOT} ${LB_PARENT_DISTRIBUTION} ${LB_PARENT_ARCHIVE_AREAS}
6368 EOF
6469
6570 if [ "${_PASS}" = "source" ] || [ "${LB_APT_SOURCE_ARCHIVES}" = "true" ]
6671 then
67 echo "deb-src ${LB_PARENT_MIRROR_CHROOT} ${LB_PARENT_DISTRIBUTION} ${LIVE_IMAGE_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
72 echo "deb-src ${LB_PARENT_MIRROR_CHROOT} ${LB_PARENT_DISTRIBUTION} ${LB_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
6873 fi
6974
7075 if [ "${LB_DERIVATIVE}" = "true" ]
9196 ;;
9297
9398 *)
94 echo "deb ${LB_PARENT_MIRROR_CHROOT_SECURITY} ${LB_PARENT_DISTRIBUTION}/updates ${LIVE_IMAGE_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
99 echo "deb ${LB_PARENT_MIRROR_CHROOT_SECURITY} ${LB_PARENT_DISTRIBUTION}/updates ${LB_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
95100
96101 if [ "${_PASS}" = "source" ] || [ "${LB_APT_SOURCE_ARCHIVES}" = "true" ]
97102 then
98 echo "deb-src ${LB_PARENT_MIRROR_CHROOT_SECURITY} ${LB_PARENT_DISTRIBUTION}/updates ${LIVE_IMAGE_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
103 echo "deb-src ${LB_PARENT_MIRROR_CHROOT_SECURITY} ${LB_PARENT_DISTRIBUTION}/updates ${LB_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
99104 fi
100105 ;;
101106 esac
120125 fi
121126 fi
122127 ;;
123
124 ubuntu)
125 echo "deb ${LB_PARENT_MIRROR_CHROOT_SECURITY} ${LB_PARENT_DISTRIBUTION}-security ${LIVE_IMAGE_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
126
127 if [ "${_PASS}" = "source" ] || [ "${LB_APT_SOURCE_ARCHIVES}" = "true" ]
128 then
129 echo "deb-src ${LB_PARENT_MIRROR_CHROOT_SECURITY} ${LB_PARENT_DISTRIBUTION}-security ${LIVE_IMAGE_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
130 fi
131 ;;
132128 esac
133129 fi
134130
135131 if [ "${LB_UPDATES}" = "true" ]
136132 then
137 echo "deb ${LB_PARENT_MIRROR_CHROOT} ${LB_PARENT_DISTRIBUTION}-updates ${LIVE_IMAGE_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
133 echo "deb ${LB_PARENT_MIRROR_CHROOT} ${LB_PARENT_DISTRIBUTION}-updates ${LB_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
138134
139135 if [ "${_PASS}" = "source" ] || [ "${LB_APT_SOURCE_ARCHIVES}" = "true" ]
140136 then
141 echo "deb-src ${LB_PARENT_MIRROR_CHROOT} ${LB_PARENT_DISTRIBUTION}-updates ${LIVE_IMAGE_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
137 echo "deb-src ${LB_PARENT_MIRROR_CHROOT} ${LB_PARENT_DISTRIBUTION}-updates ${LB_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
142138 fi
143139
144140 if [ "${LB_DERIVATIVE}" = "true" ]
158154 debian)
159155 if [ "${LB_PARENT_DISTRIBUTION}" != "sid" ]
160156 then
161 echo "deb ${LB_PARENT_MIRROR_CHROOT} ${LB_PARENT_DISTRIBUTION}-backports ${LIVE_IMAGE_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
157 echo "deb ${LB_PARENT_MIRROR_CHROOT} ${LB_PARENT_DISTRIBUTION}-backports ${LB_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
162158
163159 if [ "${_PASS}" = "source" ] || [ "${LB_APT_SOURCE_ARCHIVES}" = "true" ]
164160 then
165 echo "deb-src ${LB_PARENT_MIRROR_CHROOT} ${LB_PARENT_DISTRIBUTION}-backports ${LIVE_IMAGE_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
161 echo "deb-src ${LB_PARENT_MIRROR_CHROOT} ${LB_PARENT_DISTRIBUTION}-backports ${LB_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
166162 fi
167163 fi
168164 ;;
187183 sed -e "s|@DISTRIBUTION@|${LB_DISTRIBUTION}|g" \
188184 -e "s|@PARENT_DISTRIBUTION@|${LB_PARENT_DISTRIBUTION}|g" \
189185 -e "s|@ARCHIVE_AREAS@|${LB_ARCHIVE_AREAS}|g" \
190 -e "s|@PARENT_ARCHIVE_AREAS@|${LIVE_IMAGE_PARENT_ARCHIVE_AREAS}|g" \
186 -e "s|@PARENT_ARCHIVE_AREAS@|${LB_PARENT_ARCHIVE_AREAS}|g" \
191187 "${FILE}" > "chroot/etc/apt/sources.list.d/$(basename ${FILE} .chroot)"
192188
193189 if [ "${_PASS}" != "source" ] && [ "${LB_APT_SOURCE_ARCHIVES}" = "false" ]
267263 rm -rf chroot/var/cache/apt/*.bin
268264
269265 Apt chroot update
266
267 if [ "${LB_DERIVATIVE}" = "true" ]
268 then
269 Apt chroot install apt dpkg
270 fi
271
270272 Apt chroot "upgrade"
271273 Apt chroot "dist-upgrade"
272274
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
+0
-140
scripts/build/bootstrap_cdebootstrap less more
0 #!/bin/sh
1
2 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
4 ##
5 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
6 ## This is free software, and you are welcome to redistribute it
7 ## under certain conditions; see COPYING for details.
8
9
10 set -e
11
12 # Including common functions
13 [ -e "${LIVE_BUILD}/scripts/build.sh" ] && . "${LIVE_BUILD}/scripts/build.sh" || . /usr/lib/live/build.sh
14
15 # Setting static variables
16 DESCRIPTION="$(Echo 'bootstrap a Debian system with cdebootstrap(1)')"
17 HELP=""
18 USAGE="${PROGRAM} [--force]"
19
20 Arguments "${@}"
21
22 # Reading configuration files
23 Read_conffiles config/all config/common config/bootstrap config/chroot config/binary config/source
24 Set_defaults
25
26 if [ "${LB_BOOTSTRAP}" != "cdebootstrap" ] && [ "${LB_BOOTSTRAP}" != "cdebootstrap-static" ]
27 then
28 exit 0
29 fi
30
31 if [ ! -x "$(which cdebootstrap 2>/dev/null)" ]
32 then
33 echo "E: cdebootstrap - command not found"
34 echo "I: cdebootstrap can be obtained from http://ftp.debian.org/debian/pool/main/d/cdebootstrap/"
35 echo "I: On Debian based systems, cdebootstrap can be installed with 'apt-get install cdebootstrap'."
36 exit 1
37 fi
38
39 # Check architecture
40 Check_crossarchitectures
41
42 Echo_message "Begin bootstrapping system..."
43
44 Check_package /usr/bin/${LB_BOOTSTRAP} cdebootstrap
45
46 # Checking stage file
47 Check_stagefile .build/bootstrap
48 Check_stagefile .build/bootstrap_cache.restore
49
50 # Checking lock file
51 Check_lockfile .lock
52
53 # Creating lock file
54 Create_lockfile .lock
55
56 # Creating chroot directory
57 mkdir -p chroot
58
59 # Setting cdebootstrap options
60 if [ -n "${LB_ARCHITECTURES}" ]
61 then
62 CDEBOOTSTRAP_OPTIONS="${CDEBOOTSTRAP_OPTIONS} --arch=${LB_ARCHITECTURES}"
63 fi
64
65 if [ "${_DEBUG}" = "true" ]
66 then
67 CDEBOOTSTRAP_OPTIONS="${CDEBOOTSTRAP_OPTIONS} --debug"
68 fi
69
70 if [ "${_QUIET}" = "true" ]
71 then
72 CDEBOOTSTRAP_OPTIONS="${CDEBOOTSTRAP_OPTIONS} --quiet"
73 fi
74
75 if [ "${_VERBOSE}" = "true" ]
76 then
77 CDEBOOTSTRAP_OPTIONS="${CDEBOOTSTRAP_OPTIONS} --verbose"
78 fi
79
80 if [ "${LB_APT_SECURE}" = "false" ]
81 then
82 CDEBOOTSTRAP_OPTIONS="${CDEBOOTSTRAP_OPTIONS} --allow-unauthenticated"
83 fi
84
85 if [ -x "/usr/bin/cdebootstrap" ] || [ -x "/usr/bin/cdebootstrap-static" ]
86 then
87 if [ "${LB_CACHE_PACKAGES}" = "true" ]
88 then
89 if ls cache/packages.bootstrap/*.deb > /dev/null 2>&1
90 then
91 mkdir -p chroot/var/cache/bootstrap
92 cp cache/packages.bootstrap/*.deb chroot/var/cache/bootstrap
93 fi
94
95 Echo_breakage "Running ${LB_BOOTSTRAP} (download-only)... "
96 ${LB_BOOTSTRAP} ${CDEBOOTSTRAP_OPTIONS} --download-only "${LB_PARENT_DISTRIBUTION}" chroot "${LB_PARENT_MIRROR_BOOTSTRAP}"
97
98 # Removing old cache
99 rm -f cache/packages.bootstrap/*.deb
100
101 # Saving new cache
102 mkdir -p cache/packages.bootstrap
103 cp chroot/var/cache/bootstrap/*.deb cache/packages.bootstrap
104 fi
105
106 Echo_breakage "Running ${LB_BOOTSTRAP}... "
107
108 # Run appropriate bootstrap, i.e. foreign or regular bootstrap
109 if [ "${LB_BOOTSTRAP_QEMU_ARCHITECTURES}" = "${LB_ARCHITECTURES}" ]; then
110
111 if [ -n "${LB_BOOTSTRAP_QEMU_EXCLUDE}" ]
112 then
113 CDEBOOTSTRAP_OPTIONS="${CDEBOOTSTRAP_OPTIONS} --exclude=$(echo ${LB_BOOTSTRAP_QEMU_EXCLUDE} | sed 's| *|,|g')"
114 fi
115
116 Echo_message "Bootstrap will be foreign"
117 ${LB_BOOTSTRAP} ${CDEBOOTSTRAP_OPTIONS} --foreign "${LB_PARENT_DISTRIBUTION}" chroot "${LB_PARENT_MIRROR_BOOTSTRAP}"
118
119 Echo_message "Running debootstrap second stage under QEMU"
120 cp ${LB_BOOTSTRAP_QEMU_STATIC} chroot/usr/bin
121 Chroot chroot /bin/sh /sbin/cdebootstrap-foreign
122 else
123 ${LB_BOOTSTRAP} ${CDEBOOTSTRAP_OPTIONS} "${LB_PARENT_DISTRIBUTION}" chroot "${LB_PARENT_MIRROR_BOOTSTRAP}"
124 fi
125
126 # Deconfiguring cdebootstrap configurations
127 rm -f chroot/etc/apt/sources.list
128 rm -f chroot/etc/hosts
129 rm -f chroot/etc/resolv.conf
130
131 # Removing bootstrap cache
132 rm -rf chroot/var/cache/bootstrap
133
134 # Creating stage file
135 Create_stagefile .build/bootstrap
136 else
137 Echo_error "Can't process file /usr/bin/${LB_BOOTSTRAP} (FIXME)"
138 exit 1
139 fi
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
2323 Read_conffiles config/all config/common config/bootstrap config/chroot config/binary config/source
2424 Set_defaults
2525
26 if [ "${LB_BOOTSTRAP}" != "debootstrap" ]
27 then
28 exit 0
29 fi
30
3126 if [ ! -x "$(which debootstrap 2>/dev/null)" ]
3227 then
3328 echo "E: debootstrap - command not found"
4136
4237 Echo_message "Begin bootstrapping system..."
4338
44 Check_package /usr/sbin/debootstrap debootstrap
39 Check_package chroot bin/debootstrap debootstrap
4540
4641 # Checking stage file
4742 Check_stagefile .build/bootstrap
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
4242 if [ ! -d config ]
4343 then
4444 Echo_warning "No config/ directory; using defaults for all options"
45 lb config
4546 fi
4647
4748 if [ "$(pwd)" = "/" ]
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
4343 lb chroot_dpkg install ${@}
4444 lb chroot_tmpfs install ${@}
4545 lb chroot_sysv-rc install ${@}
46 lb chroot_upstart install ${@}
4746 lb chroot_hosts install ${@}
4847 lb chroot_resolv install ${@}
4948 lb chroot_hostname install ${@}
8079 lb chroot_resolv remove ${@}
8180 lb chroot_hosts remove ${@}
8281 lb chroot_sysv-rc remove ${@}
83 lb chroot_upstart remove ${@}
8482 lb chroot_tmpfs remove ${@}
8583 lb chroot_dpkg remove ${@}
8684 lb chroot_debianchroot remove ${@}
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
5959
6060 # Configure custom sources.list
6161
62 if echo "${LB_PARENT_MIRROR_CHROOT}" | grep -q '^file:/'
63 then
64 Chroot_bind_path chroot "$(echo ${LB_PARENT_MIRROR_CHROOT} | sed -e 's|file:||')"
65 fi
66
6267 cat > chroot/etc/apt/${_PARENT_FILE} << EOF
63 deb ${LB_PARENT_MIRROR_CHROOT} ${LB_PARENT_DISTRIBUTION} ${LIVE_IMAGE_PARENT_ARCHIVE_AREAS}
68 deb ${LB_PARENT_MIRROR_CHROOT} ${LB_PARENT_DISTRIBUTION} ${LB_PARENT_ARCHIVE_AREAS}
6469 EOF
6570
6671 if [ "${_PASS}" = "source" ] || [ "${LB_APT_SOURCE_ARCHIVES}" = "true" ]
6772 then
68 echo "deb-src ${LB_PARENT_MIRROR_CHROOT} ${LB_PARENT_DISTRIBUTION} ${LIVE_IMAGE_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
73 echo "deb-src ${LB_PARENT_MIRROR_CHROOT} ${LB_PARENT_DISTRIBUTION} ${LB_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
6974 fi
7075
7176 if [ "${LB_DERIVATIVE}" = "true" ]
9297 ;;
9398
9499 *)
95 echo "deb ${LB_PARENT_MIRROR_CHROOT_SECURITY} ${LB_PARENT_DISTRIBUTION}/updates ${LIVE_IMAGE_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
100 echo "deb ${LB_PARENT_MIRROR_CHROOT_SECURITY} ${LB_PARENT_DISTRIBUTION}/updates ${LB_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
96101
97102 if [ "${_PASS}" = "source" ] || [ "${LB_APT_SOURCE_ARCHIVES}" = "true" ]
98103 then
99 echo "deb-src ${LB_PARENT_MIRROR_CHROOT_SECURITY} ${LB_PARENT_DISTRIBUTION}/updates ${LIVE_IMAGE_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
104 echo "deb-src ${LB_PARENT_MIRROR_CHROOT_SECURITY} ${LB_PARENT_DISTRIBUTION}/updates ${LB_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
100105 fi
101106 ;;
102107 esac
121126 fi
122127 fi
123128 ;;
124
125 ubuntu)
126 echo "deb ${LB_PARENT_MIRROR_CHROOT_SECURITY} ${LB_PARENT_DISTRIBUTION}-security ${LIVE_IMAGE_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
127
128 if [ "${_PASS}" = "source" ] || [ "${LB_APT_SOURCE_ARCHIVES}" = "true" ]
129 then
130 echo "deb-src ${LB_PARENT_MIRROR_CHROOT_SECURITY} ${LB_PARENT_DISTRIBUTION}-security ${LIVE_IMAGE_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
131 fi
132 ;;
133129 esac
134130 fi
135131
136132 if [ "${LB_UPDATES}" = "true" ]
137133 then
138 echo "deb ${LB_PARENT_MIRROR_CHROOT} ${LB_PARENT_DISTRIBUTION}-updates ${LIVE_IMAGE_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
134 echo "deb ${LB_PARENT_MIRROR_CHROOT} ${LB_PARENT_DISTRIBUTION}-updates ${LB_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
139135
140136 if [ "${_PASS}" = "source" ] || [ "${LB_APT_SOURCE_ARCHIVES}" = "true" ]
141137 then
142 echo "deb-src ${LB_PARENT_MIRROR_CHROOT} ${LB_PARENT_DISTRIBUTION}-updates ${LIVE_IMAGE_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
138 echo "deb-src ${LB_PARENT_MIRROR_CHROOT} ${LB_PARENT_DISTRIBUTION}-updates ${LB_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
143139 fi
144140
145141 if [ "${LB_DERIVATIVE}" = "true" ]
159155 debian)
160156 if [ "${LB_PARENT_DISTRIBUTION}" != "sid" ]
161157 then
162 echo "deb ${LB_PARENT_MIRROR_CHROOT} ${LB_PARENT_DISTRIBUTION}-backports ${LIVE_IMAGE_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
158 echo "deb ${LB_PARENT_MIRROR_CHROOT} ${LB_PARENT_DISTRIBUTION}-backports ${LB_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
163159
164160 if [ "${_PASS}" = "source" ] || [ "${LB_APT_SOURCE_ARCHIVES}" = "true" ]
165161 then
166 echo "deb-src ${LB_PARENT_MIRROR_CHROOT} ${LB_PARENT_DISTRIBUTION}-backports ${LIVE_IMAGE_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
162 echo "deb-src ${LB_PARENT_MIRROR_CHROOT} ${LB_PARENT_DISTRIBUTION}-backports ${LB_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
167163 fi
168164 fi
169165 ;;
188184 sed -e "s|@DISTRIBUTION@|${LB_DISTRIBUTION}|g" \
189185 -e "s|@PARENT_DISTRIBUTION@|${LB_PARENT_DISTRIBUTION}|g" \
190186 -e "s|@ARCHIVE_AREAS@|${LB_ARCHIVE_AREAS}|g" \
191 -e "s|@PARENT_ARCHIVE_AREAS@|${LIVE_IMAGE_PARENT_ARCHIVE_AREAS}|g" \
187 -e "s|@PARENT_ARCHIVE_AREAS@|${LB_PARENT_ARCHIVE_AREAS}|g" \
192188 "${FILE}" > "chroot/etc/apt/sources.list.d/$(basename ${FILE} .chroot)"
193189
194190 if [ "${_PASS}" != "source" ] && [ "${LB_APT_SOURCE_ARCHIVES}" = "false" ]
223219 rm -rf chroot/root/packages
224220 mkdir -p chroot/root/packages
225221
226 if [ "$(stat --printf %d config/packages.chroot)" = "$(stat --printf %d chroot/root/packages)" ] ||
227 [ "$(stat --printf %d config/packages)" = "$(stat --printf %d chroot/root/packages)" ]
222 if [ "$(stat --printf %d config/packages.chroot/)" = "$(stat --printf %d chroot/root/packages/)" ] ||
223 [ "$(stat --printf %d config/packages/)" = "$(stat --printf %d chroot/root/packages/)" ]
228224 then
229225 CP_OPTIONS="-l"
230226 fi
269265 fi
270266
271267 # Check depends
272 Check_package chroot/usr/bin/apt-ftparchive apt-utils
268 Check_package chroot /usr/bin/apt-ftparchive apt-utils
273269
274270 # Installing depends
275271 Install_package
533529 mv chroot/etc/apt/sources.list.d/zz-sources.list chroot/etc/apt/sources.list
534530 fi
535531
532 # Unmount local repository
533 if echo "${LB_PARENT_MIRROR_CHROOT}" | grep -q '^file:/'
534 then
535 Chroot_unbind_path chroot "$(echo ${LB_PARENT_MIRROR_CHROOT} | sed -e 's|file:||')"
536 fi
537
536538 # Configure generic indices
537539 # Don't do anything if it's not required
538540 if [ "${LB_PARENT_MIRROR_CHROOT}" = "${LB_PARENT_MIRROR_BINARY}" ] && \
552554 # Configure custom sources.list
553555
554556 cat > chroot/etc/apt/${_PARENT_FILE} << EOF
555 deb ${LB_PARENT_MIRROR_BINARY} ${LB_PARENT_DISTRIBUTION} ${LIVE_IMAGE_PARENT_ARCHIVE_AREAS}
557 deb ${LB_PARENT_MIRROR_BINARY} ${LB_PARENT_DISTRIBUTION} ${LB_PARENT_ARCHIVE_AREAS}
556558 EOF
557559
558560 if [ "${_PASS}" = "source" ] || [ "${LB_APT_SOURCE_ARCHIVES}" = "true" ]
559561 then
560 echo "deb-src ${LB_PARENT_MIRROR_BINARY} ${LB_PARENT_DISTRIBUTION} ${LIVE_IMAGE_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
562 echo "deb-src ${LB_PARENT_MIRROR_BINARY} ${LB_PARENT_DISTRIBUTION} ${LB_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
561563 fi
562564
563565 if [ "${LB_DERIVATIVE}" = "true" ]
584586 ;;
585587
586588 *)
587 echo "deb ${LB_PARENT_MIRROR_BINARY_SECURITY} ${LB_PARENT_DISTRIBUTION}/updates ${LIVE_IMAGE_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
589 echo "deb ${LB_PARENT_MIRROR_BINARY_SECURITY} ${LB_PARENT_DISTRIBUTION}/updates ${LB_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
588590
589591 if [ "${_PASS}" = "source" ] || [ "${LB_APT_SOURCE_ARCHIVES}" = "true" ]
590592 then
591 echo "deb-src ${LB_PARENT_MIRROR_BINARY_SECURITY} ${LB_PARENT_DISTRIBUTION}/updates ${LIVE_IMAGE_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
593 echo "deb-src ${LB_PARENT_MIRROR_BINARY_SECURITY} ${LB_PARENT_DISTRIBUTION}/updates ${LB_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
592594 fi
593595 ;;
594596 esac
613615 fi
614616 fi
615617 ;;
616
617 ubuntu)
618 echo "deb ${LB_PARENT_MIRROR_BINARY_SECURITY} ${LB_PARENT_DISTRIBUTION}-security ${LIVE_IMAGE_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
619
620 if [ "${_PASS}" = "source" ] || [ "${LB_APT_SOURCE_ARCHIVES}" = "true" ]
621 then
622 echo "deb-src ${LB_PARENT_MIRROR_BINARY_SECURITY} ${LB_PARENT_DISTRIBUTION}-security ${LIVE_IMAGE_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
623 fi
624 ;;
625618 esac
626619 fi
627620
628621 if [ "${LB_UPDATES}" = "true" ]
629622 then
630 echo "deb ${LB_PARENT_MIRROR_BINARY} ${LB_PARENT_DISTRIBUTION}-updates ${LIVE_IMAGE_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
623 echo "deb ${LB_PARENT_MIRROR_BINARY} ${LB_PARENT_DISTRIBUTION}-updates ${LB_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
631624
632625 if [ "${_PASS}" = "source" ] || [ "${LB_APT_SOURCE_ARCHIVES}" = "true" ]
633626 then
634 echo "deb-src ${LB_PARENT_MIRROR_BINARY} ${LB_PARENT_DISTRIBUTION}-updates ${LIVE_IMAGE_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
627 echo "deb-src ${LB_PARENT_MIRROR_BINARY} ${LB_PARENT_DISTRIBUTION}-updates ${LB_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
635628 fi
636629
637630 if [ "${LB_DERIVATIVE}" = "true" ]
651644 debian)
652645 if [ "${LB_PARENT_DISTRIBUTION}" != "sid" ]
653646 then
654 echo "deb ${LB_PARENT_MIRROR_BINARY} ${LB_PARENT_DISTRIBUTION}-backports ${LIVE_IMAGE_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
647 echo "deb ${LB_PARENT_MIRROR_BINARY} ${LB_PARENT_DISTRIBUTION}-backports ${LB_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
655648
656649 if [ "${_PASS}" = "source" ] || [ "${LB_APT_SOURCE_ARCHIVES}" = "true" ]
657650 then
658 echo "deb-src ${LB_PARENT_MIRROR_BINARY} ${LB_PARENT_DISTRIBUTION}-backports ${LIVE_IMAGE_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
651 echo "deb-src ${LB_PARENT_MIRROR_BINARY} ${LB_PARENT_DISTRIBUTION}-backports ${LB_PARENT_ARCHIVE_AREAS}" >> chroot/etc/apt/${_PARENT_FILE}
659652 fi
660653 fi
661654 ;;
707700 sed -e "s|@DISTRIBUTION@|${LB_DISTRIBUTION}|g" \
708701 -e "s|@PARENT_DISTRIBUTION@|${LB_PARENT_DISTRIBUTION}|g" \
709702 -e "s|@ARCHIVE_AREAS@|${LB_ARCHIVE_AREAS}|g" \
710 -e "s|@PARENT_ARCHIVE_AREAS@|${LIVE_IMAGE_PARENT_ARCHIVE_AREAS}|g" \
703 -e "s|@PARENT_ARCHIVE_AREAS@|${LB_PARENT_ARCHIVE_AREAS}|g" \
711704 "${FILE}" > "chroot/etc/apt/sources.list.d/$(basename ${FILE} .binary)"
712705
713706 if [ "${_PASS}" != "source" ] && [ "${LB_APT_SOURCE_ARCHIVES}" = "false" ]
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
6161 # Generic live-build handle for other live packages to act upon
6262 touch chroot/.live-build
6363
64 # samhain
65 if [ -e /var/state/samhain/samhain_file ]
66 then
67 mv /var/state/samhain/samhain_file /var/state/samhain/samhain_file.orig
68 else
69 mkdir -p /var/state/samhain
70 touch /var/state/samhain/samhain_file
71 fi
72
7364 # flash-kernel
7465 Chroot chroot dpkg-divert --rename --quiet --add /usr/sbin/flash-kernel
7566 ln -s /bin/true chroot/usr/sbin/flash-kernel
9687 rm -f chroot/usr/sbin/flash-kernel
9788 Chroot chroot dpkg-divert --rename --quiet --remove /usr/sbin/flash-kernel
9889
99 # samhain
100 if [ -e /var/state/samhain/samhain_file.orig ]
101 then
102 mv /var/state/samhain/samhain_file.orig /var/state/samhain/samhain_file
103 elif [ -d /var/state/samhain ]
104 then
105 rm -f /var/state/samhain/samhain_file
106 rmdir --ignore-fail-on-non-empty /var/state/samhain || true
107 fi
108
10990 # Remove custom start-stop-daemon program
11091 rm -f chroot/sbin/start-stop-daemon
11192 Chroot chroot dpkg-divert --rename --quiet --remove /sbin/start-stop-daemon
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
4040 # Creating lock file
4141 Create_lockfile .lock
4242
43 # Checking depends
44 Check_package host /usr/bin/wget wget
45
4346 # Diverting update-initramfs
4447 #case "${LB_INITRAMFS}" in
4548 # live-boot)
5558
5659 FIRMWARE_PACKAGES=""
5760
58 _CONTENTS="$(for _PARENT_ARCHIVE_AREA in ${LIVE_IMAGE_PARENT_ARCHIVE_AREAS}; do echo ${LB_PARENT_MIRROR_CHROOT}/dists/${LB_PARENT_DISTRIBUTION}/${_PARENT_ARCHIVE_AREA}/Contents-${LB_ARCHITECTURES}.gz; done)"
61 _CONTENTS="$(for _PARENT_ARCHIVE_AREA in ${LB_PARENT_ARCHIVE_AREAS}; do echo ${LB_PARENT_MIRROR_CHROOT}/dists/${LB_PARENT_DISTRIBUTION}/${_PARENT_ARCHIVE_AREA}/Contents-${LB_ARCHITECTURES}.gz; done)"
5962
6063 rm -f cache/contents.chroot/contents.${LB_PARENT_DISTRIBUTION}.${LB_ARCHITECTURES}
6164
6669 FIRMWARE_PACKAGES="${FIRMWARE_PACKAGES} $(awk '/^lib\/firmware/ { print $2 }' cache/contents.chroot/contents.${LB_PARENT_DISTRIBUTION}.${LB_ARCHITECTURES} | sort -u)"
6770 done
6871
69 if echo ${LIVE_IMAGE_PARENT_ARCHIVE_AREAS} | grep -qs "non-free"
72 if echo ${LB_PARENT_ARCHIVE_AREAS} | grep -qs "non-free"
7073 then
71 # FIXME: should check that we're building on debian through e.g. a 'derivative-is-based-on' variable or somesuch.
7274 # Manually add firmware-linux/non-free meta package
73 FIRMWARE_PACKAGES="${FIRMWARE_PACKAGES} firmware-linux"
75 if [ "${LB_DERIVATIVE}" != "true" ]
76 then
77 FIRMWARE_PACKAGES="${FIRMWARE_PACKAGES} firmware-linux"
78 else
79 case "${LB_DERIVATIVE_IS_BASED_ON}" in
80 debian)
81 FIRMWARE_PACKAGES="${FIRMWARE_PACKAGES} firmware-linux"
82 ;;
83 *)
84 ;;
85 esac
86 fi
7487 fi
7588
7689 if [ "${LB_DERIVATIVE}" = "true" ]
89102 done
90103 fi
91104
92 # Remove broken packages
93 FIRMWARE_PACKAGES="$(echo ${FIRMWARE_PACKAGES} | grep -v prism2-usb-firmware-installer || true)"
94
95105 # Drop section and keep package names only
96106 for _PACKAGE in ${FIRMWARE_PACKAGES}
97107 do
99109 done
100110
101111 # Some known licenses required to be accepted
102 if echo ${LIVE_IMAGE_PARENT_ARCHIVE_AREAS} | grep -qs "non-free"
112 if echo ${LB_PARENT_ARCHIVE_AREAS} | grep -qs "non-free"
103113 then
104114
105115 cat >> chroot/root/packages.chroot.cfg << EOF
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
6464
6565 # Update initramfs (always, because of udev rules in initrd)
6666 case "${LB_INITRAMFS}" in
67 casper)
68 UPDATE_INITRAMFS_OPTIONS="CASPER_GENERATE_UUID=1"
69 ;;
70
7167 live-boot)
7268 #UPDATE_INITRAMFS_OPTIONS="LIVE_GENERATE_UUID=1"
7369 ;;
10399 esac
104100
105101 case "${LB_INITRAMFS}" in
106 casper)
107 ID="999"
108 ;;
109
110102 live-boot)
111103 ID="1000"
112104 ;;
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
7777 fi
7878
7979 ## Processing local hooks
80
81 if Find_files config/hooks/*.chroot
80 if ls config/hooks/normal/*.chroot config/hooks/live/*.chroot > /dev/null 2>&1
8281 then
8382 # Restoring cache
8483 Restore_cache cache/packages.chroot
8584
86 for _HOOK in config/hooks/*.chroot
85 for HOOK in config/hooks/normal/*.chroot config/hooks/live/*.chroot
8786 do
87 if [ ! -e "${HOOK}" ]
88 then
89 continue
90 fi
91
8892 # Copying hook
89 cp "${_HOOK}" chroot/root
93 cp "${HOOK}" chroot/root
9094
9195 # Making hook executable
92 if [ ! -x chroot/root/"$(basename ${_HOOK})" ]
96 if [ ! -x chroot/root/"$(basename ${HOOK})" ]
9397 then
94 chmod +x chroot/root/"$(basename ${_HOOK})"
98 chmod +x chroot/root/"$(basename ${HOOK})"
9599 fi
96100
97101 # Executing hook
98 Chroot chroot "/root/$(basename ${_HOOK})" || { Echo_error "${_HOOK} failed (exit non-zero). You should check for errors."; exit 1 ;}
102 Chroot chroot "/root/$(basename ${HOOK})" || { Echo_error "${HOOK} failed (exit non-zero). You should check for errors."; exit 1 ;}
99103
100104 # Removing hook
101 rm -f chroot/root/"$(basename ${_HOOK})"
105 rm -f chroot/root/"$(basename ${HOOK})"
102106 done
103107
104108 # Saving cache
111115 # Remove bind mount of build config inside chroot.
112116 umount chroot/live-build/config
113117 rmdir chroot/live-build/config
114
118 rmdir chroot/live-build
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
4545 cd "${OLDPWD}"
4646
4747 # Creating stage file
48 Create_stagefile .build/includs.chroot
48 Create_stagefile .build/includes.chroot
4949 fi
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
5151 case "${LB_BUILD_WITH_CHROOT}" in
5252 true)
5353 # Checking depends
54 Check_package chroot/usr/bin/grep-aptavail dctrl-tools
54 Check_package chroot /usr/bin/grep-aptavail dctrl-tools
5555
5656 # Restoring cache
5757 Restore_cache cache/packages.chroot
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
4242 ls chroot/root/packages.chroot.cfg > /dev/null 2>&1
4343 then
4444 # Check dependency
45 Check_package chroot/usr/bin/debconf-set-selections debconf
45 Check_package chroot /usr/bin/debconf-set-selections debconf
4646
4747 # Install dependency
4848 Install_package
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
+0
-84
scripts/build/chroot_upstart less more
0 #!/bin/sh
1
2 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
4 ##
5 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
6 ## This is free software, and you are welcome to redistribute it
7 ## under certain conditions; see COPYING for details.
8
9
10 set -e
11
12 # Including common functions
13 [ -e "${LIVE_BUILD}/scripts/build.sh" ] && . "${LIVE_BUILD}/scripts/build.sh" || . /usr/lib/live/build.sh
14
15 # Setting static variables
16 DESCRIPTION="$(Echo 'manage /sbin/initctl')"
17 HELP=""
18 USAGE="${PROGRAM} {install|remove} [--force]"
19
20 Arguments "${@}"
21
22 # Reading configuration files
23 Read_conffiles config/all config/common config/bootstrap config/chroot config/binary config/source
24 Set_defaults
25
26 # Requiring stage file
27 Require_stagefile .build/config .build/bootstrap
28
29 # Check if system uses upstart
30 if [ ! -e chroot/sbin/initctl ]
31 then
32 exit 0
33 fi
34
35 case "${1}" in
36 install)
37 Echo_message "Configuring file /sbin/initctl"
38
39 # Checking stage file
40 Check_stagefile .build/chroot_upstart
41
42 # Checking lock file
43 Check_lockfile .lock
44
45 # Creating lock file
46 Create_lockfile .lock
47
48 # Create custom initctl file
49 Chroot chroot dpkg-divert --rename --quiet --add /sbin/initctl
50
51 cat > chroot/sbin/initctl << EOF
52 #!/bin/sh
53 echo "All runlevel operations denied by policy" >&2
54 exit 101
55 EOF
56
57 chmod 0755 chroot/sbin/initctl
58
59 # Creating stage file
60 Create_stagefile .build/chroot_upstart
61 ;;
62
63 remove)
64 Echo_message "Deconfiguring file /sbin/initctl"
65
66 # Checking lock file
67 Check_lockfile .lock
68
69 # Creating lock file
70 Create_lockfile .lock
71
72 # Remove custom initctl file
73 rm -f chroot/sbin/initctl
74 Chroot chroot dpkg-divert --rename --quiet --remove /sbin/initctl
75
76 # Removing stage file
77 rm -f .build/chroot_upstart
78 ;;
79
80 *)
81 Usage
82 ;;
83 esac
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
3131 \t [--bootappend-install PARAMETER|\"PARAMETERS\"]\n\
3232 \t [--bootappend-live PARAMETER|\"PARAMETERS\"]\n\
3333 \t [--bootappend-live-failsafe PARAMETER|\"PARAMETERS\"]\n\
34 \t [--bootloader grub|grub2|syslinux]\n\
35 \t [--bootstrap cdebootstrap|cdebootstrap-static|debootstrap]\n\
34 \t [--bootloader grub-legacy|grub-pc|syslinux]\n\
3635 \t [--cache true|false]\n\
3736 \t [--cache-indices true|false]\n\
3837 \t [--cache-packages true|false]\n\
6160 \t [--grub-splash FILE]\n\
6261 \t [--gzip-options OPTION|\"OPTIONS\"]\n\
6362 \t [--ignore-system-defaults]\n\
64 \t [--initramfs auto|none|live-boot|casper]\n\
63 \t [--initramfs auto|none|live-boot]\n\
6564 \t [--initramfs-compression bzip2|gzip|lzma]\n\
66 \t [--initsystem sysvinit|systemd|upstart|none]\n\
65 \t [--initsystem sysvinit|systemd|none]\n\
6766 \t [--image-name [NAME]\n\
6867 \t [--interactive shell]\n\
6968 \t [--isohybrid-options OPTION|\"OPTIONS\"]\n\
9190 \t [--mirror-binary URL]\n\
9291 \t [--mirror-binary-security URL]\n\
9392 \t [--mirror-debian-installer URL]\n\
94 \t [--mode debian|ubuntu]\n\
93 \t [--mode debian]\n\
9594 \t [--system live|normal]\n\
9695 \t [--net-root-filesystem nfs|cfs]\n\
9796 \t [--net-root-mountoptions OPTIONS]\n\
113112 \t [--swap-file-path PATH]\n\
114113 \t [--swap-file-size MB]\n\
115114 \t [--tasksel apt|aptitude|tasksel]\n\
116 \t [--templates PATH]\n\
117115 \t [--updates true|false]\n\
118116 \t [--backports true|false]\n\
119117 \t [--verbose]\n\
126124
127125 Local_arguments ()
128126 {
129 LONG_OPTIONS="apt:,apt-ftp-proxy:,apt-http-proxy:,apt-options:,aptitude-options:,debootstrap-options:,cdebootstrap-options:,
127 LONG_OPTIONS="apt:,apt-ftp-proxy:,apt-http-proxy:,apt-options:,aptitude-options:,debootstrap-options:,
130128 apt-pipeline:,apt-recommends:,apt-secure:,apt-source-archives:,bootstrap:,cache:,cache-indices:,cache-packages:,
131129 cache-stages:,debconf-frontend:,debconf-priority:,dump,
132130 initramfs:,initramfs-compression:,initsystem:,fdisk:,losetup:,mode:,system:,tasksel:,
133 templates:,architectures:,clean,
131 architectures:,clean,
134132 distribution:,parent-distribution:,parent-debian-installer-distribution:,parent-mirror-bootstrap:,parent-mirror-chroot:,parent-mirror-chroot-security:,parent-mirror-binary:,
135133 parent-mirror-binary-security:,parent-mirror-debian-installer:,
136134 mirror-bootstrap:,mirror-chroot:,mirror-chroot-security:,mirror-binary:,
254252 shift 2
255253 ;;
256254
257 --bootstrap)
258 LB_BOOTSTRAP="${2}"
259 shift 2
260 ;;
261
262255 --debootstrap-options)
263256 DEBOOTSTRAP_OPTIONS="${2}"
264257 shift 2
265258 ;;
266259
267 --cdebootstrap-options)
268 CDEBOOTSTRAP_OPTIONS="${2}"
269 shift 2
270 ;;
271
272260 --cache)
273261 LB_CACHE="${2}"
274262 shift 2
336324
337325 --tasksel)
338326 LB_TASKSEL="${2}"
339 shift 2
340 ;;
341
342 --templates)
343 LB_TEMPLATES="${2}"
344327 shift 2
345328 ;;
346329
426409 ;;
427410
428411 --parent-archive-areas)
429 LIVE_IMAGE_PARENT_ARCHIVE_AREAS="${2}"
412 LB_PARENT_ARCHIVE_AREAS="${2}"
430413 shift 2
431414 ;;
432415
920903 # (Default: ${LB_APT_SOURCE_ARCHIVES})
921904 LB_APT_SOURCE_ARCHIVES="${LB_APT_SOURCE_ARCHIVES}"
922905
923 # \$LB_BOOTSTRAP: set bootstrap program
924 # (Default: ${LB_BOOTSTRAP})
925 LB_BOOTSTRAP="${LB_BOOTSTRAP}"
926
927906 # \$LB_CACHE: control cache
928907 # (Default: ${LB_CACHE})
929908 LB_CACHE="${LB_CACHE}"
979958 # \$LB_TASKSEL: set tasksel program
980959 # (Default: ${LB_TASKSEL})
981960 LB_TASKSEL="${LB_TASKSEL}"
982
983 # \$LB_TEMPLATES: set templates
984 # (Default: ${LB_TEMPLATES})
985 LB_TEMPLATES="${LB_TEMPLATES}"
986961
987962 # live-build options
988963
1014989 APT_OPTIONS="${APT_OPTIONS}"
1015990 APTITUDE_OPTIONS="${APTITUDE_OPTIONS}"
1016991 DEBOOTSTRAP_OPTIONS="${DEBOOTSTRAP_OPTIONS}"
1017 CDEBOOTSTRAP_OPTIONS="${CDEBOOTSTRAP_OPTIONS}"
1018992 GZIP_OPTIONS="${GZIP_OPTIONS}"
1019993 ISOHYBRID_OPTIONS="${ISOHYBRID_OPTIONS}"
1020994 EOF
13371311 rmdir --ignore-fail-on-non-empty local > /dev/null 2>&1 || true
13381312 fi
13391313
1340 mkdir -p config/hooks
1314 mkdir -p config/hooks/normal config/hooks/live
13411315 mkdir -p config/includes config/includes.bootstrap config/includes.chroot config/includes.binary config/includes.source
13421316
13431317 Echo_message "Symlinking hooks..."
13441318
1345 for _HOOK in "${LIVE_BUILD}"/share/hooks/*.hook* /usr/share/live/build/hooks/*.hook*
1319 for _HOOK in "${LIVE_BUILD}"/share/hooks/normal/*.hook* /usr/share/live/build/hooks/normal/*.hook*
13461320 do
1347 if [ -e "${_HOOK}" ] && [ ! -e "config/hooks/$(basename ${_HOOK})" ]
1321 if [ -e "${_HOOK}" ] && [ ! -e "config/hooks/normal/$(basename ${_HOOK})" ]
13481322 then
1349 ln -s "${_HOOK}" "config/hooks/$(basename ${_HOOK})"
1323 ln -s "${_HOOK}" "config/hooks/normal/$(basename ${_HOOK})"
1324 fi
1325 done
1326
1327 for _HOOK in "${LIVE_BUILD}"/share/hooks/live/*.hook* /usr/share/live/build/hooks/live/*.hook*
1328 do
1329 if [ -e "${_HOOK}" ] && [ ! -e "config/hooks/live/$(basename ${_HOOK})" ]
1330 then
1331 ln -s "${_HOOK}" "config/hooks/live/$(basename ${_HOOK})"
13501332 fi
13511333 done
13521334
13591341 echo "live-boot" > config/package-lists/live.list.chroot
13601342 echo "live-config" >> config/package-lists/live.list.chroot
13611343
1362 case "${LB_PARENT_DISTRIBUTION}" in
1363 wheezy)
1364 echo "live-config-sysvinit" >> config/package-lists/live.list.chroot
1344 case "${LB_INITSYSTEM}" in
1345 none)
1346 # do nothing
13651347 ;;
13661348
1367 *)
1368 case "${LB_INITSYSTEM}" in
1369 none)
1370 # do nothing
1371 ;;
1372
1373 systemd)
1374 echo "live-config-systemd" >> config/package-lists/live.list.chroot
1375 echo "dbus" >> config/package-lists/live.list.chroot
1376 ;;
1377
1378 sysvinit|upstart)
1379 echo "live-config-${LB_INITSYSTEM}" >> config/package-lists/live.list.chroot
1380 echo "sysvinit-core" >> config/package-lists/live.list.chroot
1381 ;;
1382 esac
1349 systemd)
1350 echo "live-config-systemd" >> config/package-lists/live.list.chroot
1351 ;;
1352
1353 sysvinit)
1354 echo "live-config-${LB_INITSYSTEM}" >> config/package-lists/live.list.chroot
1355 echo "sysvinit-core" >> config/package-lists/live.list.chroot
13831356 ;;
13841357 esac
1385 ;;
1386
1387 casper)
1388 echo "casper" > config/package-lists/live.list.chroot
13891358 ;;
13901359
13911360 *)
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
4444 lb chroot_dpkg install ${@}
4545 lb chroot_tmpfs install ${@}
4646 lb chroot_sysv-rc install ${@}
47 lb chroot_upstart install ${@}
4847 lb chroot_hosts install ${@}
4948 lb chroot_resolv install ${@}
5049 lb chroot_hostname install ${@}
6564 lb chroot_resolv remove ${@}
6665 lb chroot_hosts remove ${@}
6766 lb chroot_sysv-rc remove ${@}
68 lb chroot_upstart remove ${@}
6967 lb chroot_tmpfs remove ${@}
7068 lb chroot_dpkg remove ${@}
7169 lb chroot_debianchroot remove ${@}
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
6363 Create_lockfile .lock
6464
6565 # Checking depends
66 Check_package chroot/usr/bin/wget wget
67 Check_package chroot/usr/bin/apt-ftparchive apt-utils
66 Check_package host /usr/bin/wget wget
67 Check_package chroot /usr/bin/apt-ftparchive apt-utils
6868
6969 # Restoring cache
7070 Restore_cache cache/packages.binary
138138 DI_REMOTE_BASE_GTK="${DI_REMOTE_BASE}/gtk"
139139 ;;
140140
141 sparc)
142 DEFAULT_FLAVOUR="$(echo ${LB_LINUX_FLAVOURS} | awk '{ print $1 }')"
143 DI_REMOTE_KERNEL="$(basename chroot/boot/vmlinuz-*${DEFAULT_FLAVOUR})"
144 DI_REMOTE_BASE_GTK="none"
145
146 DI_REMOTE_BASE="cdrom"
147 ;;
148141 *)
149142 case "${DI_IMAGE_TYPE}" in
150143 netboot)
230223 fi
231224 fi
232225
233 if [ "$(stat --printf %d "${_LB_CACHE_DIR}")" = "$(stat --printf %d ./)" ]
226 if [ "$(stat --printf %d "${_LB_CACHE_DIR}/")" = "$(stat --printf %d ./)" ]
234227 then
235228 CP_OPTIONS="-l"
236229 fi
282275
283276 mkdir -p "${DESTDIR_DI}"
284277
285 if [ "${LB_ARCHITECTURES}" = "sparc" ] && [ "${DI_IMAGE_TYPE}" = "netboot" ]
278 # Downloading debian-installer
279 Download_file "${DESTDIR}"/"${VMLINUZ_DI}" ${URL}/${DI_REMOTE_BASE}/${DI_REMOTE_KERNEL}
280 Download_file "${DESTDIR}"/"${INITRD_DI}" ${URL}/${DI_REMOTE_BASE}/initrd.gz
281
282 # Downloading graphical-installer
283 DOWNLOAD_GTK_INSTALLER=0
284 if [ "${LB_DEBIAN_INSTALLER_GUI}" = "true" ]
286285 then
287 # There are no prepared kernel/initrd pairs for sparc netboot so we
288 # must unpack them from a mini.iso
289 Download_file mini.iso ${URL}/mini.iso
290
291 mkdir mini.tmp
292 mount -o loop -t iso9660 mini.iso mini.tmp
293
294 cp mini.tmp/boot/vmlinuz-${DEFAULT_FLAVOUR} "${DESTDIR}"/"${VMLINUZ_DI}"
295 cp mini.tmp/boot/initrd.gz "${DESTDIR}"/"${INITRD_DI}"
296
297 umount mini.tmp
298 rm -rf mini.tmp mini.iso
299 else
300 # Downloading debian-installer
301 Download_file "${DESTDIR}"/"${VMLINUZ_DI}" ${URL}/${DI_REMOTE_BASE}/${DI_REMOTE_KERNEL}
302 Download_file "${DESTDIR}"/"${INITRD_DI}" ${URL}/${DI_REMOTE_BASE}/initrd.gz
303
304 # Downloading graphical-installer
305 DOWNLOAD_GTK_INSTALLER=0
306 if [ "${LB_DEBIAN_INSTALLER_GUI}" = "true" ]
307 then
308286 case "${LB_ARCHITECTURES}" in
309 amd64|i386)
287 amd64|i386)
288 DOWNLOAD_GTK_INSTALLER=1
289 ;;
290
291 powerpc)
292 if [ "${LB_DEBIAN_INSTALLER}" = "netboot" ]
293 then
310294 DOWNLOAD_GTK_INSTALLER=1
311 ;;
312
313 powerpc)
314 if [ "${LB_DEBIAN_INSTALLER}" = "netboot" ]
315 then
316 DOWNLOAD_GTK_INSTALLER=1
317 fi
318 ;;
319 esac
320 fi
321
322 if [ ${DOWNLOAD_GTK_INSTALLER} -eq 1 ]
323 then
324 mkdir -p "${DESTDIR_GI}"
325 Download_file "${DESTDIR}"/"${VMLINUZ_GI}" ${URL}/${DI_REMOTE_BASE_GTK}/${DI_REMOTE_KERNEL}
326 Download_file "${DESTDIR}"/"${INITRD_GI}" ${URL}/${DI_REMOTE_BASE_GTK}/initrd.gz
327 fi
295 fi
296 ;;
297 esac
298 fi
299
300 if [ ${DOWNLOAD_GTK_INSTALLER} -eq 1 ]
301 then
302 mkdir -p "${DESTDIR_GI}"
303 Download_file "${DESTDIR}"/"${VMLINUZ_GI}" ${URL}/${DI_REMOTE_BASE_GTK}/${DI_REMOTE_KERNEL}
304 Download_file "${DESTDIR}"/"${INITRD_GI}" ${URL}/${DI_REMOTE_BASE_GTK}/initrd.gz
328305 fi
329306
330307 # Only download additional packages if appropriate
339316 case "${LB_ARCHITECTURES}" in
340317 amd64)
341318 DI_REQ_PACKAGES="lilo grub-pc"
342
343 case "${LB_MODE}" in
344 ubuntu)
345 DI_PACKAGES="${DI_REQ_PACKAGES} linux-generic"
346 ;;
347
348 *)
349 DI_PACKAGES="${DI_REQ_PACKAGES} linux-image-amd64"
350 ;;
351 esac
319 DI_PACKAGES="${DI_REQ_PACKAGES} linux-image-amd64"
352320 ;;
353321
354322 i386)
355 DI_REQ_PACKAGES="elilo lilo grub-pc"
356
357 case "${LB_MODE}" in
358 ubuntu)
359 case "${LB_DISTRIBUTION}" in
360 precise)
361 DI_PACKAGES="${DI_REQ_PACKAGES} linux-generic-pae"
362 ;;
363
364 *)
365 DI_PACKAGES="${DI_REQ_PACKAGES} linux-generic"
366 ;;
367 esac
368 ;;
369
370 *)
371 DI_PACKAGES="${DI_REQ_PACKAGES} linux-image-486 linux-image-686-pae"
372 ;;
373 esac
374 ;;
375
376 sparc)
377 DI_REQ_PACKAGES="silo"
378 case "${LB_MODE}" in
379 ubuntu)
380 DI_PACKAGES="${DI_REQ_PACKAGES} linux-sparc64"
381 ;;
382
383 *)
384 DI_PACKAGES="${DI_REQ_PACKAGES} linux-image-sparc64 linux-image-sparc64-smp"
385 ;;
386 esac
323 DI_REQ_PACKAGES="lilo grub-pc"
324 DI_PACKAGES="${DI_REQ_PACKAGES} linux-image-586 linux-image-686-pae"
387325 ;;
388326
389327 powerpc)
390328 DI_REQ_PACKAGES="yaboot"
391 case "${LB_MODE}" in
392 ubuntu)
393 DI_PACKAGES="${DI_REQ_PACKAGES} linux-image-powerpc-smp linux-image-powerpc64-smp linux-image-powerpc-e500 linux-image-powerpc-e500mc"
394 ;;
395
396 *)
397 DI_PACKAGES="${DI_REQ_PACKAGES} linux-image-powerpc linux-image-powerpc64 linux-image-powerpc-smp"
398 ;;
399 esac
329 DI_PACKAGES="${DI_REQ_PACKAGES} linux-image-powerpc linux-image-powerpc64 linux-image-powerpc-smp"
400330 ;;
401331 esac
402332
418348
419349 FIRMWARE_PACKAGES=""
420350
421 _CONTENTS="$(for _PARENT_ARCHIVE_AREA in ${LIVE_IMAGE_PARENT_ARCHIVE_AREAS}; do echo ${LB_PARENT_MIRROR_CHROOT}/dists/${LB_PARENT_DISTRIBUTION}/${_PARENT_ARCHIVE_AREA}/Contents-${LB_ARCHITECTURES}.gz; done)"
351 _CONTENTS="$(for _PARENT_ARCHIVE_AREA in ${LB_PARENT_ARCHIVE_AREAS}; do echo ${LB_PARENT_MIRROR_CHROOT}/dists/${LB_PARENT_DISTRIBUTION}/${_PARENT_ARCHIVE_AREA}/Contents-${LB_ARCHITECTURES}.gz; done)"
422352
423353 rm -f cache/contents.chroot/contents.${LB_PARENT_DISTRIBUTION}.${LB_ARCHITECTURES}
424354
429359 FIRMWARE_PACKAGES="${FIRMWARE_PACKAGES} $(awk '/^lib\/firmware/ { print $2 }' cache/contents.chroot/contents.${LB_PARENT_DISTRIBUTION}.${LB_ARCHITECTURES} | sort -u)"
430360 done
431361
432 if echo ${LIVE_IMAGE_PARENT_ARCHIVE_AREAS} | grep -qs "non-free"
433 then
434 # FIXME: should check that we're building on debian through e.g. a 'derivative-is-based-on' variable or somesuch.
362 if echo ${LB_PARENT_ARCHIVE_AREAS} | grep -qs "non-free"
363 then
435364 # Manually add firmware-linux/non-free meta package
436 FIRMWARE_PACKAGES="${FIRMWARE_PACKAGES} firmware-linux"
365 if [ "${LB_DERIVATIVE}" != "true" ]
366 then
367 FIRMWARE_PACKAGES="${FIRMWARE_PACKAGES} firmware-linux"
368 else
369 case "${LB_DERIVATIVE_IS_BASED_ON}" in
370 debian)
371 FIRMWARE_PACKAGES="${FIRMWARE_PACKAGES} firmware-linux"
372 ;;
373 *)
374 ;;
375 esac
376 fi
437377 fi
438378
439379 if [ "${LB_DERIVATIVE}" = "true" ]
492432
493433 mv chroot/binary.deb ./
494434
495 for _ARCHIVE_AREA in $(echo ${LIVE_IMAGE_PARENT_ARCHIVE_AREAS} ${LB_ARCHIVE_AREAS})
435 for _ARCHIVE_AREA in $(echo ${LB_PARENT_ARCHIVE_AREAS} ${LB_ARCHIVE_AREAS})
496436 do
497437 mkdir -p binary/pool/${_ARCHIVE_AREA}
498438 done
722662 # Generating release file
723663 mv binary chroot/root
724664
725 eval _VERSION="$`echo RELEASE_${LB_PARENT_DISTRIBUTION}`"
665 if [ -e chroot/etc/os-release ]
666 then
667 _VERSION="$(. chroot/etc/os-release && echo ${VERSION_ID})"
668 fi
669
670 if [ -n "${_VERSION}" ]; then
671 _LB_APT_VERSION_OPT='-o APT::FTPArchive::Release::Version="'"${_VERSION}"'"'
672 fi
726673
727674 case "${LB_PARENT_DISTRIBUTION}" in
728675 sid)
739686 -o APT::FTPArchive::Release::Origin="Debian" \
740687 -o APT::FTPArchive::Release::Label="Debian" \
741688 -o APT::FTPArchive::Release::Suite="${_SUITE}" \
742 -o APT::FTPArchive::Release::Version="${_VERSION}" \
689 ${_LB_APT_VERSION_OPT} \
743690 -o APT::FTPArchive::Release::Codename="${LB_PARENT_DISTRIBUTION}" \
744691 -o APT::FTPArchive::Release::Date="$(date -R)" \
745692 -o APT::FTPArchive::Release::Architectures="${LB_ARCHITECTURES}" \
746 -o APT::FTPArchive::Release::Components="${LIVE_IMAGE_PARENT_ARCHIVE_AREAS}" \
693 -o APT::FTPArchive::Release::Components="${LB_PARENT_ARCHIVE_AREAS}" \
747694 -o APT::FTPArchive::Release::Description="Last updated: $(date -R)" \
748695 release dists/${LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION} > dists/${LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION}/Release
749696 EOF
753700 mv chroot/root/binary ./
754701
755702 case "${LB_PARENT_DISTRIBUTION}" in
756 wheezy)
703 jessie)
757704 DISTRIBUTIONS="stable"
758705 ;;
759706
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
5050
5151 DISTRIBUTION="$(echo ${LB_DISTRIBUTION} | cut -b 1 | tr '[a-z]' '[A-Z]')"
5252 DISTRIBUTION="${DISTRIBUTION}$(echo ${LB_DISTRIBUTION} | cut -b 2-)"
53 eval VERSION="$`echo RELEASE_${LB_DISTRIBUTION}`"
53
54 if [ -e chroot/etc/os-release ]
55 then
56 VERSION="$(. chroot/etc/os-release && echo ${VERSION_ID})"
57 fi
58
59 VERSION="${VERSION:-none}"
5460
5561 case "${LB_MODE}" in
5662 debian)
5763 TITLE="Debian GNU/Linux"
5864 STRING="Official Snapshot ${ARCHITECTURE}"
5965 TRACE="project/trace/ftp-master.debian.org"
60 ;;
61
62 ubuntu)
63 TITLE="Ubuntu"
64 STRING="Build ${ARCHITECTURE}"
65 TRACE=""
6666 ;;
6767
6868 progress-linux)
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
4848 Create_lockfile .lock
4949
5050 # Checking depends
51 Check_package chroot/sbin/mkdosfs dosfstools
52 Check_package chroot/sbin/parted parted
51 Check_package chroot /sbin/mkdosfs dosfstools
52 Check_package chroot /sbin/parted parted
5353
5454 # Installing depends
5555 Install_package
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
5757 done
5858
5959 ## Processing local hooks
60 for HOOK in config/hooks/normal/*.source config/hooks/live/*.source
61 do
62 if [ ! -e "${HOOK}" ]
63 then
64 continue
65 fi
6066
61 if Find_files config/hooks/*.source
62 then
63 for HOOK in config/hooks/*.source
64 do
65 # Making hook executable
66 if [ ! -x "${HOOK}" ]
67 then
68 chmod +x "${HOOK}"
69 fi
67 # Making hook executable
68 if [ ! -x "${HOOK}" ]
69 then
70 chmod +x "${HOOK}"
71 fi
7072
71 # Executing hook
72 ./"${HOOK}" || { Echo_error "${HOOK} failed (exit non-zero). You should check for errors."; exit 1 ;}
73 done
73 # Executing hook
74 cd source
75 ../"${HOOK}" || { Echo_error "${HOOK} failed (exit non-zero). You should check for errors."; exit 1 ;}
76 cd "${OLDPWD}"
77 done
7478
75 # Creating stage file
76 Create_stagefile .build/source_hooks
77 fi
79 # Creating stage file
80 Create_stagefile .build/source_hooks
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
5252 Create_lockfile .lock
5353
5454 # Checking depends
55 Check_package chroot/usr/bin/xorriso xorriso
55 Check_package chroot /usr/bin/xorriso xorriso
5656
5757 # Installing depends
5858 Install_package
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program is free software: you can redistribute it and/or modify
66 ## it under the terms of the GNU General Public License as published by
00 #!/bin/sh
11
22 ## live-build(7) - System Build Scripts
3 ## Copyright (C) 2006-2014 Daniel Baumann <[email protected]>
3 ## Copyright (C) 2006-2015 Daniel Baumann <[email protected]>
44 ##
55 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
66 ## This is free software, and you are welcome to redistribute it
11 menu label ^Install
22 linux /install/vmlinuz
33 initrd /install/initrd.gz
4 append vga=788 @APPEND_INSTALL@ -- quiet
4 append vga=788 @APPEND_INSTALL@ --- quiet
55
66 label installgui
77 menu label ^Graphical install
88 linux /install/gtk/vmlinuz
99 initrd /install/gtk/initrd.gz
10 append video=vesa:ywrap,mtrr vga=788 @APPEND_INSTALL@ -- quiet
10 append video=vesa:ywrap,mtrr vga=788 @APPEND_INSTALL@ --- quiet
+0
-7
share/bootloaders/extlinux.wheezy/advanced.cfg less more
0 label hdt
1 menu label ^Hardware Detection Tool (HDT)
2 com32 hdt.c32
3
4 label memtest
5 menu label ^Memory Diagnostic Tool (memtest86+)
6 linux /live/memtest
+0
-4
share/bootloaders/extlinux.wheezy/extlinux.conf less more
0 include menu.cfg
1 default vesamenu.c32
2 prompt 0
3 timeout 0
+0
-1
share/bootloaders/extlinux.wheezy/hdt.c32 less more
0 /usr/lib/syslinux/hdt.c32
+0
-11
share/bootloaders/extlinux.wheezy/install.cfg less more
0 label install
1 menu label ^Install
2 linux /install/vmlinuz
3 initrd /install/initrd.gz
4 append vga=788 @APPEND_INSTALL@ -- quiet
5
6 label installgui
7 menu label ^Graphical install
8 linux /install/gtk/vmlinuz
9 initrd /install/gtk/initrd.gz
10 append video=vesa:ywrap,mtrr vga=788 @APPEND_INSTALL@ -- quiet
+0
-12
share/bootloaders/extlinux.wheezy/live.cfg.in less more
0 label live-@FLAVOUR@
1 menu label ^Live (@FLAVOUR@)
2 menu default
3 linux @LINUX@
4 initrd @INITRD@
5 append @APPEND_LIVE@
6
7 label live-@FLAVOUR@-failsafe
8 menu label ^Live (@FLAVOUR@ failsafe)
9 linux @LINUX@
10 initrd @INITRD@
11 append @APPEND_LIVE_FAILSAFE@
+0
-17
share/bootloaders/extlinux.wheezy/menu.cfg less more
0 menu hshift 0
1 menu width 82
2
3 menu title Boot menu
4 include stdmenu.cfg
5 include live.cfg
6 include install.cfg
7 menu begin advanced
8 menu title Advanced options
9 include stdmenu.cfg
10 label mainmenu
11 menu label ^Back..
12 menu exit
13 include advanced.cfg
14 menu end
15
16 menu clear
+0
-388
share/bootloaders/extlinux.wheezy/splash.svg less more
0 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
1 <!-- Created with Inkscape (http://www.inkscape.org/) -->
2
3 <svg
4 xmlns:dc="http://purl.org/dc/elements/1.1/"
5 xmlns:cc="http://creativecommons.org/ns#"
6 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
7 xmlns:svg="http://www.w3.org/2000/svg"
8 xmlns="http://www.w3.org/2000/svg"
9 xmlns:xlink="http://www.w3.org/1999/xlink"
10 xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11 xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12 width="640"
13 height="480"
14 id="svg3320"
15 version="1.1"
16 inkscape:version="0.48.3.1 r9886"
17 sodipodi:docname="splash.svg.in">
18 <defs
19 id="defs3322">
20 <radialGradient
21 gradientUnits="userSpaceOnUse"
22 gradientTransform="matrix(1.402663,0,0,1.115648,-6.237984,0.0533075)"
23 r="18.370251"
24 fy="10.943316"
25 fx="15.491823"
26 cy="10.943316"
27 cx="15.491823"
28 id="radialGradient2813"
29 xlink:href="#linearGradient2807"
30 inkscape:collect="always" />
31 <radialGradient
32 r="35.934704"
33 fy="424.15677"
34 fx="131.23691"
35 cy="424.15677"
36 cx="131.23691"
37 gradientTransform="matrix(0.101953,-0.04272301,0.09621296,0.229599,-48.67227,-64.24148)"
38 gradientUnits="userSpaceOnUse"
39 id="radialGradient2798"
40 xlink:href="#linearGradient8543"
41 inkscape:collect="always" />
42 <radialGradient
43 gradientUnits="userSpaceOnUse"
44 gradientTransform="matrix(1,0,0,0.415385,0,26.70146)"
45 r="30.365856"
46 fy="45.673546"
47 fx="29.898689"
48 cy="45.673546"
49 cx="29.898689"
50 id="radialGradient18290"
51 xlink:href="#linearGradient18284"
52 inkscape:collect="always" />
53 <radialGradient
54 gradientUnits="userSpaceOnUse"
55 gradientTransform="matrix(0.105628,-0.04514018,0.06692574,0.156607,-46.01605,-24.35485)"
56 r="103.26014"
57 fy="409.83737"
58 fx="340.35886"
59 cy="409.83737"
60 cx="340.35886"
61 id="radialGradient13895"
62 xlink:href="#linearGradient8543"
63 inkscape:collect="always" />
64 <radialGradient
65 gradientUnits="userSpaceOnUse"
66 gradientTransform="matrix(0.08174351,0.01024998,-0.04335971,0.345793,6.123413,-84.50421)"
67 r="38.451698"
68 fy="270.67969"
69 fx="424.99243"
70 cy="270.67969"
71 cx="424.99243"
72 id="radialGradient11208"
73 xlink:href="#linearGradient11202"
74 inkscape:collect="always" />
75 <radialGradient
76 gradientUnits="userSpaceOnUse"
77 gradientTransform="matrix(0.272962,-0.071724,0.05616202,0.213737,-78.54657,-24.30491)"
78 r="48.782982"
79 fy="243.06874"
80 fx="293.81989"
81 cy="243.06874"
82 cx="293.81989"
83 id="radialGradient10317"
84 xlink:href="#linearGradient8543"
85 inkscape:collect="always" />
86 <radialGradient
87 gradientUnits="userSpaceOnUse"
88 gradientTransform="matrix(0.224796,0.01017229,-0.00975947,0.215674,-73.87964,-54.89804)"
89 r="40.975471"
90 fy="286.46918"
91 fx="500.97794"
92 cy="286.46918"
93 cx="500.97794"
94 id="radialGradient9434"
95 xlink:href="#linearGradient8543"
96 inkscape:collect="always" />
97 <radialGradient
98 gradientUnits="userSpaceOnUse"
99 gradientTransform="matrix(0.163532,-0.01065754,0.01078108,0.165425,-46.18187,-65.65506)"
100 r="235.88632"
101 fy="685.99139"
102 fx="420.87839"
103 cy="685.99139"
104 cx="420.87839"
105 id="radialGradient8549"
106 xlink:href="#linearGradient8543"
107 inkscape:collect="always" />
108 <radialGradient
109 r="297.21338"
110 fy="-72.420044"
111 fx="336.73767"
112 cy="-72.420044"
113 cx="336.73767"
114 gradientTransform="matrix(0.136507,0,-4.484926e-5,0.07137743,-23.39816,12.31028)"
115 gradientUnits="userSpaceOnUse"
116 id="radialGradient7666"
117 xlink:href="#linearGradient5012"
118 inkscape:collect="always" />
119 <linearGradient
120 id="linearGradient5012">
121 <stop
122 id="stop5014"
123 offset="0"
124 style="stop-color:#fdf188;stop-opacity:1;" />
125 <stop
126 id="stop5016"
127 offset="1"
128 style="stop-color:#d3bc00;stop-opacity:1;" />
129 </linearGradient>
130 <linearGradient
131 id="linearGradient8543">
132 <stop
133 id="stop8545"
134 offset="0"
135 style="stop-color:#fffef5;stop-opacity:0.94117647;" />
136 <stop
137 id="stop8547"
138 offset="1"
139 style="stop-color:#fce94f;stop-opacity:0;" />
140 </linearGradient>
141 <linearGradient
142 id="linearGradient11202">
143 <stop
144 id="stop11204"
145 offset="0"
146 style="stop-color:#c4a000;stop-opacity:1;" />
147 <stop
148 id="stop11206"
149 offset="1"
150 style="stop-color:#c4a000;stop-opacity:0;" />
151 </linearGradient>
152 <linearGradient
153 id="linearGradient18284">
154 <stop
155 id="stop18286"
156 offset="0"
157 style="stop-color:#000000;stop-opacity:1;" />
158 <stop
159 style="stop-color:#000000;stop-opacity:1;"
160 offset="0.5"
161 id="stop20913" />
162 <stop
163 style="stop-color:#000000;stop-opacity:0;"
164 offset="1"
165 id="stop19165" />
166 </linearGradient>
167 <linearGradient
168 id="linearGradient2807"
169 inkscape:collect="always">
170 <stop
171 id="stop2809"
172 offset="0"
173 style="stop-color:#ffffff;stop-opacity:1;" />
174 <stop
175 id="stop2811"
176 offset="1"
177 style="stop-color:#ffffff;stop-opacity:0;" />
178 </linearGradient>
179 <inkscape:perspective
180 id="perspective47"
181 inkscape:persp3d-origin="24 : 16 : 1"
182 inkscape:vp_z="48 : 24 : 1"
183 inkscape:vp_y="0 : 1000 : 0"
184 inkscape:vp_x="0 : 24 : 1"
185 sodipodi:type="inkscape:persp3d" />
186 </defs>
187 <sodipodi:namedview
188 id="base"
189 pagecolor="#ffffff"
190 bordercolor="#666666"
191 borderopacity="1.0"
192 inkscape:pageopacity="0.0"
193 inkscape:pageshadow="2"
194 inkscape:zoom="0.775"
195 inkscape:cx="574.36733"
196 inkscape:cy="250.84337"
197 inkscape:document-units="px"
198 inkscape:current-layer="layer1"
199 showgrid="false"
200 inkscape:window-width="1016"
201 inkscape:window-height="570"
202 inkscape:window-x="0"
203 inkscape:window-y="1"
204 inkscape:window-maximized="0" />
205 <metadata
206 id="metadata3325">
207 <rdf:RDF>
208 <cc:Work
209 rdf:about="">
210 <dc:format>image/svg+xml</dc:format>
211 <dc:type
212 rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
213 <dc:title></dc:title>
214 </cc:Work>
215 </rdf:RDF>
216 </metadata>
217 <g
218 inkscape:label="Layer 1"
219 inkscape:groupmode="layer"
220 id="layer1"
221 transform="translate(0,-572.3622)">
222 <rect
223 style="fill:#000000;fill-opacity:1;stroke:none"
224 id="rect3328"
225 width="640"
226 height="480"
227 x="0"
228 y="572.36218" />
229 <text
230 transform="scale(1.0000015,0.99999849)"
231 sodipodi:linespacing="100%"
232 id="text3002"
233 y="619.20685"
234 x="190.68135"
235 style="font-size:35.65467453px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold"
236 xml:space="preserve"><tspan
237 y="619.20685"
238 x="190.68135"
239 sodipodi:role="line"
240 style="font-size:19.99996948px;font-style:normal;font-weight:bold;-inkscape-font-specification:DejaVu Sans Bold"
241 id="tspan3045">@PROJECT@ @VERSION@ (@DISTRIBUTION@)</tspan><tspan
242 y="639.20679"
243 x="190.68135"
244 sodipodi:role="line"
245 style="font-size:19.99996948px;font-style:normal;font-weight:bold;-inkscape-font-specification:DejaVu Sans Bold"
246 id="tspan3041">@ARCHITECTURE@</tspan><tspan
247 y="659.20679"
248 x="190.68135"
249 sodipodi:role="line"
250 style="font-size:19.99996948px;font-style:normal;font-weight:bold;-inkscape-font-specification:DejaVu Sans Bold"
251 id="tspan3037" /><tspan
252 y="679.20679"
253 x="190.68135"
254 sodipodi:role="line"
255 style="font-size:19.99996948px;font-style:normal;font-weight:bold;-inkscape-font-specification:DejaVu Sans Bold"
256 id="tspan3039">Build: @YEAR@-@MONTH@-@DAY@ @HOUR@:@MINUTE@:@SECOND@</tspan><tspan
257 y="699.20673"
258 x="190.68135"
259 sodipodi:role="line"
260 style="font-size:19.99996948px;font-style:normal;font-weight:bold;-inkscape-font-specification:DejaVu Sans Bold"
261 id="tspan3098" /><tspan
262 y="719.20667"
263 x="190.68135"
264 sodipodi:role="line"
265 style="font-size:19.99996948px;font-style:normal;font-weight:normal;-inkscape-font-specification:DejaVu Sans"
266 id="tspan3102">linux: @LINUX_VERSIONS@</tspan><tspan
267 y="739.20667"
268 x="190.68135"
269 sodipodi:role="line"
270 style="font-size:19.99996948px;font-style:normal;font-weight:normal;-inkscape-font-specification:DejaVu Sans"
271 id="tspan3076">live-build: @LIVE_BUILD_VERSION@</tspan><tspan
272 y="759.20667"
273 x="190.68135"
274 sodipodi:role="line"
275 style="font-size:19.99996948px;font-style:normal;font-weight:normal;-inkscape-font-specification:DejaVu Sans"
276 id="tspan3068">live-boot: @LIVE_BOOT_VERSION@</tspan><tspan
277 y="779.2066"
278 x="190.68135"
279 sodipodi:role="line"
280 style="font-size:19.99996948px;font-style:normal;font-weight:normal;-inkscape-font-specification:DejaVu Sans"
281 id="tspan3070">live-config: @LIVE_CONFIG_VERSION@</tspan><tspan
282 y="799.20654"
283 x="190.68135"
284 sodipodi:role="line"
285 style="font-size:19.99996948px;font-style:normal;font-weight:normal;-inkscape-font-specification:DejaVu Sans"
286 id="tspan3012">live-tools: @LIVE_TOOLS_VERSION@</tspan><tspan
287 y="819.20654"
288 x="190.68135"
289 sodipodi:role="line"
290 style="font-size:19.99996948px;font-style:normal;font-weight:normal;-inkscape-font-specification:DejaVu Sans"
291 id="tspan3066" /></text>
292 <text
293 xml:space="preserve"
294 style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
295 x="200"
296 y="336.7742"
297 id="text3114"
298 sodipodi:linespacing="125%"
299 transform="translate(0,572.3622)"><tspan
300 sodipodi:role="line"
301 id="tspan3116" /></text>
302 <g
303 id="layer1-9"
304 inkscape:label="Layer 1"
305 transform="matrix(2.8369273,0,0,2.8369235,27.782921,602.43406)">
306 <path
307 transform="matrix(0.742527,0,-0.05812964,1.428611,4.500517,-36.68345)"
308 d="m 60.264545,45.673546 c 0,6.966249 -13.595256,12.613509 -30.365856,12.613509 -16.770599,0 -30.3658559,-5.64726 -30.3658559,-12.613509 0,-6.966249 13.5952569,-12.613509 30.3658559,-12.613509 16.7706,0 30.365856,5.64726 30.365856,12.613509 z"
309 sodipodi:ry="12.613509"
310 sodipodi:rx="30.365856"
311 sodipodi:cy="45.673546"
312 sodipodi:cx="29.898689"
313 id="path17409"
314 style="fill:url(#radialGradient18290);fill-opacity:1;stroke:none"
315 sodipodi:type="arc" />
316 <path
317 sodipodi:nodetypes="cccscsssscsccsc"
318 id="path3120"
319 d="M 23.152758,1.1801876 C 20.380218,1.2190783 17.86582,1.8908769 15.634281,3.0196314 14.541531,5.1714614 10.9437,7.7293655 9.4689484,8.0015561 6.5691703,11.460832 4.6887193,15.805035 3.9754523,19.98162 c -4.375e-4,0.0026 4.366e-4,0.0052 0,0.0077 -1.1863594,1.549717 -1.6900108,3.396594 -1.3773472,5.53256 1.1211744,7.659314 3.2821678,14.888292 8.1850959,16.556275 7.154429,2.433946 21.871769,1.785847 25.129507,0.458258 7.13903,-2.909286 7.771453,-9.285098 8.891432,-16.780256 0.305554,-2.044832 -0.144835,-3.841202 -1.230601,-5.372942 -0.009,-0.0556 -0.01849,-0.111474 -0.02832,-0.167342 C 42.763966,15.777007 40.697859,11.326849 37.602582,7.8466935 35.508773,7.62926 31.462964,4.270333 30.483158,2.6229925 28.330506,1.7020155 25.961342,1.1801876 23.407632,1.1801876 c -0.08532,0 -0.170037,-0.00119 -0.254874,0 z"
320 style="fill:url(#radialGradient7666);fill-opacity:1;stroke:#c4a000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
321 inkscape:connector-curvature="0" />
322 <path
323 sodipodi:nodetypes="ccscc"
324 id="path7668"
325 d="M 43.629688,22.792984 C 39.033494,39.233217 10.438199,40.802737 3.7832765,23.04227 3.7410682,39.366403 10.103414,44.083889 28.189955,43.247454 c 3.061977,-0.140689 10.00982,0.04287 14.614484,-9.136776 2.238365,-11.5104 0.825249,-11.317694 0.825249,-11.317694 z"
326 style="opacity:0.66666667;fill:url(#radialGradient8549);fill-opacity:1;fill-rule:evenodd;stroke:none"
327 inkscape:connector-curvature="0" />
328 <path
329 sodipodi:nodetypes="cccc"
330 id="path8553"
331 d="m 34.691565,7.6783057 2.500881,1.1253976 c 0,0 -1.310404,10.1226397 -6.669016,16.4849717 1.771665,-6.455834 4.188975,-17.6103693 4.168135,-17.6103693 z"
332 style="fill:url(#radialGradient9434);fill-opacity:1;fill-rule:evenodd;stroke:none"
333 inkscape:connector-curvature="0" />
334 <path
335 sodipodi:nodetypes="cccc"
336 id="path9436"
337 d="m 15.872437,4.1562328 c 1.50053,9.0656942 6.50229,19.4860282 6.002115,20.0070452 -4.584948,-6.981624 -6.502291,-12.921217 -8.00282,-17.9229779 0,-0.083363 2.000705,-2.0632267 2.000705,-2.0840673 z"
338 style="fill:url(#radialGradient10317);fill-opacity:1;fill-rule:evenodd;stroke:none"
339 inkscape:connector-curvature="0" />
340 <path
341 sodipodi:nodetypes="ccsc"
342 id="path10319"
343 d="M 30.21082,3.8227818 C 26.126047,20.328594 25.959322,23.079563 25.959322,23.079563 c 0,0 6.335566,-16.7559003 6.335566,-17.1727135 0,-8e-7 -1.583891,-1.5005286 -2.084068,-2.0840677 z"
344 style="fill:url(#radialGradient11208);fill-opacity:1;fill-rule:evenodd;stroke:none"
345 inkscape:connector-curvature="0" />
346 <flowRoot
347 id="flowRoot12974"
348 xml:space="preserve"><flowRegion
349 id="flowRegion12976"><rect
350 y="412.80496"
351 x="86.787514"
352 height="16.02231"
353 width="40.055775"
354 id="rect12978" /></flowRegion><flowPara
355 id="flowPara12980" /></flowRoot> <path
356 sodipodi:nodetypes="ccccccc"
357 id="path13014"
358 d="m 16.18209,34.476182 -0.04467,-9.569745 14.493727,0 1.642604,-1.263542 -16.931465,0 0.04467,10.640581 0.795134,0.192706 z"
359 style="fill:url(#radialGradient13895);fill-opacity:1;fill-rule:evenodd;stroke:none"
360 inkscape:connector-curvature="0" />
361 <path
362 sodipodi:nodetypes="ccccc"
363 id="path13897"
364 d="m 31.043495,24.81709 0.08168,9.804611 0.686144,-0.214742 0.01198,-10.85341 -0.779803,1.263541 z"
365 style="fill:#958401;fill-opacity:1;fill-rule:evenodd;stroke:none"
366 inkscape:connector-curvature="0" />
367 <path
368 sodipodi:nodetypes="ccccscc"
369 id="path16526"
370 d="m 4.2551267,24.106065 c 0,0 2.3166503,8.115689 10.2209413,8.766037 1.105608,2.490418 -1.13497,4.124601 -1.13497,4.124601 L 9.7315781,36.745641 c 0,0 -6.2387745,-7.992942 -6.4882087,-9.900882 -0.2494325,-1.907937 0.1632835,-3.407793 0.1632835,-3.407793 l 0.8484738,0.669099 z"
371 style="fill:url(#radialGradient2798);fill-opacity:1;fill-rule:evenodd;stroke:none"
372 inkscape:connector-curvature="0" />
373 <path
374 style="opacity:0.74444442;fill:none;stroke:#ffffff;stroke-width:0.99999976;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
375 d="M 23.184204,2.3889904 C 20.570275,2.4256563 18.199721,3.0590226 16.095844,4.1232033 15.065608,6.1519314 11.673602,8.563503 10.283218,8.8201221 7.5493302,12.0815 5.776456,16.17718 5.1039936,20.11483 c -4.124e-4,0.0024 4.116e-4,0.0049 0,0.0073 -1.1184901,1.46106 -1.8584936,3.246475 -1.5637169,5.260247 1.0570343,7.22114 2.9276025,13.709677 7.3279793,15.639454 5.923141,2.597582 21.539722,1.785935 24.611092,0.534295 6.73062,-2.742852 7.061699,-8.930694 8.117606,-15.997069 0.288074,-1.927851 -0.13655,-3.621454 -1.160201,-5.065566 -0.0084,-0.05242 -0.01743,-0.105097 -0.0267,-0.157769 C 41.673494,16.150755 39.725585,11.955182 36.807382,8.6741189 34.833356,8.4691243 31.019,5.3023548 30.095246,3.7492553 28.065743,2.8809656 25.832115,2.3889904 23.424497,2.3889904 c -0.08044,0 -0.160309,-0.00112 -0.240293,0 z"
376 id="path2703"
377 sodipodi:nodetypes="cccscsssscsccsc"
378 inkscape:connector-curvature="0" />
379 <path
380 sodipodi:nodetypes="cccssccscccssc"
381 id="path2800"
382 d="m 22.59375,2.78125 c -2.329557,0.1165682 -4.440971,0.7250384 -6.34375,1.6875 -1.010725,1.9903059 -4.354698,4.373241 -5.71875,4.625 -2.6821095,3.199611 -4.4027734,7.199424 -5.0625,11.0625 -4.046e-4,0.0024 4.038e-4,0.02888 0,0.03125 -1.0973069,1.43339 -1.4580267,3.591148 -1.4580267,3.591148 4.685267,3.605062 7.6416117,0.213892 14.3188727,-2.01722 12.59928,1.923141 18.748338,-0.995945 22.514154,-5.667678 0.0069,-0.0085 -0.0035,-0.02088 0,-0.03125 C 39.852567,13.479666 38.411479,11.016387 36.5625,8.9375 34.62586,8.7363873 30.875008,5.6486852 29.96875,4.125 27.977684,3.2731547 25.79952,2.78125 23.4375,2.78125 c -0.07892,10e-8 -0.171531,-0.0011 -0.25,0 -0.200346,0.00281 -0.39633,-0.00988 -0.59375,0 z"
383 style="opacity:0.59444424;fill:url(#radialGradient2813);fill-opacity:1;stroke:none"
384 inkscape:connector-curvature="0" />
385 </g>
386 </g>
387 </svg>
+0
-15
share/bootloaders/extlinux.wheezy/stdmenu.cfg less more
0 menu background splash.png
1 menu color title * #FFFFFFFF *
2 menu color border * #00000000 #00000000 none
3 menu color sel * #ffffffff #76a1d0ff *
4 menu color hotsel 1;7;37;40 #ffffffff #76a1d0ff *
5 menu color tabmsg * #ffffffff #00000000 *
6 menu color help 37;40 #ffdddd00 #00000000 none
7 menu vshift 12
8 menu rows 10
9 menu helpmsgrow 15
10 # The command line must be at least one line from the bottom.
11 menu cmdlinerow 16
12 menu timeoutrow 16
13 menu tabmsgrow 18
14 menu tabmsg Press ENTER to boot or TAB to edit a menu entry
+0
-1
share/bootloaders/extlinux.wheezy/vesamenu.c32 less more
0 /usr/lib/syslinux/vesamenu.c32
0 default 0
1 color cyan/blue white/blue
2 splashimage /boot/grub/splash.xpm.gz
3
4 LINUX_LIVE
5
6 LINUX_INSTALL
7
8 MEMTEST
0 set default=0
1
2 insmod tga
3 background_image ($root)/boot/grub/splash.tga
4 set color_normal=cyan/blue
5 set color_highlight=white/blue
6
7 LINUX_LIVE
8
9 LINUX_INSTALL
10
11 MEMTEST
11 menu label ^Install
22 linux /install/vmlinuz
33 initrd /install/initrd.gz
4 append vga=788 @APPEND_INSTALL@ -- quiet
4 append vga=788 @APPEND_INSTALL@ --- quiet
55
66 label installgui
77 menu label ^Graphical install
88 linux /install/gtk/vmlinuz
99 initrd /install/gtk/initrd.gz
10 append video=vesa:ywrap,mtrr vga=788 @APPEND_INSTALL@ -- quiet
10 append video=vesa:ywrap,mtrr vga=788 @APPEND_INSTALL@ --- quiet
+0
-7
share/bootloaders/isolinux.wheezy/advanced.cfg less more
0 label hdt
1 menu label ^Hardware Detection Tool (HDT)
2 com32 hdt.c32
3
4 label memtest
5 menu label ^Memory Diagnostic Tool (memtest86+)
6 linux /live/memtest
+0
-1
share/bootloaders/isolinux.wheezy/hdt.c32 less more
0 /usr/lib/syslinux/hdt.c32
+0
-11
share/bootloaders/isolinux.wheezy/install.cfg less more
0 label install
1 menu label ^Install
2 linux /install/vmlinuz
3 initrd /install/initrd.gz
4 append vga=788 @APPEND_INSTALL@ -- quiet
5
6 label installgui
7 menu label ^Graphical install
8 linux /install/gtk/vmlinuz
9 initrd /install/gtk/initrd.gz
10 append video=vesa:ywrap,mtrr vga=788 @APPEND_INSTALL@ -- quiet
+0
-1
share/bootloaders/isolinux.wheezy/isolinux.bin less more
0 /usr/lib/syslinux/isolinux.bin
+0
-4
share/bootloaders/isolinux.wheezy/isolinux.cfg less more
0 include menu.cfg
1 default vesamenu.c32
2 prompt 0
3 timeout 0
+0
-12
share/bootloaders/isolinux.wheezy/live.cfg.in less more
0 label live-@FLAVOUR@
1 menu label ^Live (@FLAVOUR@)
2 menu default
3 linux @LINUX@
4 initrd @INITRD@
5 append @APPEND_LIVE@
6
7 label live-@FLAVOUR@-failsafe
8 menu label ^Live (@FLAVOUR@ failsafe)
9 linux @LINUX@
10 initrd @INITRD@
11 append @APPEND_LIVE_FAILSAFE@
+0
-17
share/bootloaders/isolinux.wheezy/menu.cfg less more
0 menu hshift 0
1 menu width 82
2
3 menu title Boot menu
4 include stdmenu.cfg
5 include live.cfg
6 include install.cfg
7 menu begin advanced
8 menu title Advanced options
9 include stdmenu.cfg
10 label mainmenu
11 menu label ^Back..
12 menu exit
13 include advanced.cfg
14 menu end
15
16 menu clear
+0
-388
share/bootloaders/isolinux.wheezy/splash.svg less more
0 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
1 <!-- Created with Inkscape (http://www.inkscape.org/) -->
2
3 <svg
4 xmlns:dc="http://purl.org/dc/elements/1.1/"
5 xmlns:cc="http://creativecommons.org/ns#"
6 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
7 xmlns:svg="http://www.w3.org/2000/svg"
8 xmlns="http://www.w3.org/2000/svg"
9 xmlns:xlink="http://www.w3.org/1999/xlink"
10 xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11 xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12 width="640"
13 height="480"
14 id="svg3320"
15 version="1.1"
16 inkscape:version="0.48.3.1 r9886"
17 sodipodi:docname="splash.svg.in">
18 <defs
19 id="defs3322">
20 <radialGradient
21 gradientUnits="userSpaceOnUse"
22 gradientTransform="matrix(1.402663,0,0,1.115648,-6.237984,0.0533075)"
23 r="18.370251"
24 fy="10.943316"
25 fx="15.491823"
26 cy="10.943316"
27 cx="15.491823"
28 id="radialGradient2813"
29 xlink:href="#linearGradient2807"
30 inkscape:collect="always" />
31 <radialGradient
32 r="35.934704"
33 fy="424.15677"
34 fx="131.23691"
35 cy="424.15677"
36 cx="131.23691"
37 gradientTransform="matrix(0.101953,-0.04272301,0.09621296,0.229599,-48.67227,-64.24148)"
38 gradientUnits="userSpaceOnUse"
39 id="radialGradient2798"
40 xlink:href="#linearGradient8543"
41 inkscape:collect="always" />
42 <radialGradient
43 gradientUnits="userSpaceOnUse"
44 gradientTransform="matrix(1,0,0,0.415385,0,26.70146)"
45 r="30.365856"
46 fy="45.673546"
47 fx="29.898689"
48 cy="45.673546"
49 cx="29.898689"
50 id="radialGradient18290"
51 xlink:href="#linearGradient18284"
52 inkscape:collect="always" />
53 <radialGradient
54 gradientUnits="userSpaceOnUse"
55 gradientTransform="matrix(0.105628,-0.04514018,0.06692574,0.156607,-46.01605,-24.35485)"
56 r="103.26014"
57 fy="409.83737"
58 fx="340.35886"
59 cy="409.83737"
60 cx="340.35886"
61 id="radialGradient13895"
62 xlink:href="#linearGradient8543"
63 inkscape:collect="always" />
64 <radialGradient
65 gradientUnits="userSpaceOnUse"
66 gradientTransform="matrix(0.08174351,0.01024998,-0.04335971,0.345793,6.123413,-84.50421)"
67 r="38.451698"
68 fy="270.67969"
69 fx="424.99243"
70 cy="270.67969"
71 cx="424.99243"
72 id="radialGradient11208"
73 xlink:href="#linearGradient11202"
74 inkscape:collect="always" />
75 <radialGradient
76 gradientUnits="userSpaceOnUse"
77 gradientTransform="matrix(0.272962,-0.071724,0.05616202,0.213737,-78.54657,-24.30491)"
78 r="48.782982"
79 fy="243.06874"
80 fx="293.81989"
81 cy="243.06874"
82 cx="293.81989"
83 id="radialGradient10317"
84 xlink:href="#linearGradient8543"
85 inkscape:collect="always" />
86 <radialGradient
87 gradientUnits="userSpaceOnUse"
88 gradientTransform="matrix(0.224796,0.01017229,-0.00975947,0.215674,-73.87964,-54.89804)"
89 r="40.975471"
90 fy="286.46918"
91 fx="500.97794"
92 cy="286.46918"
93 cx="500.97794"
94 id="radialGradient9434"
95 xlink:href="#linearGradient8543"
96 inkscape:collect="always" />
97 <radialGradient
98 gradientUnits="userSpaceOnUse"
99 gradientTransform="matrix(0.163532,-0.01065754,0.01078108,0.165425,-46.18187,-65.65506)"
100 r="235.88632"
101 fy="685.99139"
102 fx="420.87839"
103 cy="685.99139"
104 cx="420.87839"
105 id="radialGradient8549"
106 xlink:href="#linearGradient8543"
107 inkscape:collect="always" />
108 <radialGradient
109 r="297.21338"
110 fy="-72.420044"
111 fx="336.73767"
112 cy="-72.420044"
113 cx="336.73767"
114 gradientTransform="matrix(0.136507,0,-4.484926e-5,0.07137743,-23.39816,12.31028)"
115 gradientUnits="userSpaceOnUse"
116 id="radialGradient7666"
117 xlink:href="#linearGradient5012"
118 inkscape:collect="always" />
119 <linearGradient
120 id="linearGradient5012">
121 <stop
122 id="stop5014"
123 offset="0"
124 style="stop-color:#fdf188;stop-opacity:1;" />
125 <stop
126 id="stop5016"
127 offset="1"
128 style="stop-color:#d3bc00;stop-opacity:1;" />
129 </linearGradient>
130 <linearGradient
131 id="linearGradient8543">
132 <stop
133 id="stop8545"
134 offset="0"
135 style="stop-color:#fffef5;stop-opacity:0.94117647;" />
136 <stop
137 id="stop8547"
138 offset="1"
139 style="stop-color:#fce94f;stop-opacity:0;" />
140 </linearGradient>
141 <linearGradient
142 id="linearGradient11202">
143 <stop
144 id="stop11204"
145 offset="0"
146 style="stop-color:#c4a000;stop-opacity:1;" />
147 <stop
148 id="stop11206"
149 offset="1"
150 style="stop-color:#c4a000;stop-opacity:0;" />
151 </linearGradient>
152 <linearGradient
153 id="linearGradient18284">
154 <stop
155 id="stop18286"
156 offset="0"
157 style="stop-color:#000000;stop-opacity:1;" />
158 <stop
159 style="stop-color:#000000;stop-opacity:1;"
160 offset="0.5"
161 id="stop20913" />
162 <stop
163 style="stop-color:#000000;stop-opacity:0;"
164 offset="1"
165 id="stop19165" />
166 </linearGradient>
167 <linearGradient
168 id="linearGradient2807"
169 inkscape:collect="always">
170 <stop
171 id="stop2809"
172 offset="0"
173 style="stop-color:#ffffff;stop-opacity:1;" />
174 <stop
175 id="stop2811"
176 offset="1"
177 style="stop-color:#ffffff;stop-opacity:0;" />
178 </linearGradient>
179 <inkscape:perspective
180 id="perspective47"
181 inkscape:persp3d-origin="24 : 16 : 1"
182 inkscape:vp_z="48 : 24 : 1"
183 inkscape:vp_y="0 : 1000 : 0"
184 inkscape:vp_x="0 : 24 : 1"
185 sodipodi:type="inkscape:persp3d" />
186 </defs>
187 <sodipodi:namedview
188 id="base"
189 pagecolor="#ffffff"
190 bordercolor="#666666"
191 borderopacity="1.0"
192 inkscape:pageopacity="0.0"
193 inkscape:pageshadow="2"
194 inkscape:zoom="0.775"
195 inkscape:cx="574.36733"
196 inkscape:cy="250.84337"
197 inkscape:document-units="px"
198 inkscape:current-layer="layer1"
199 showgrid="false"
200 inkscape:window-width="1016"
201 inkscape:window-height="570"
202 inkscape:window-x="0"
203 inkscape:window-y="1"
204 inkscape:window-maximized="0" />
205 <metadata
206 id="metadata3325">
207 <rdf:RDF>
208 <cc:Work
209 rdf:about="">
210 <dc:format>image/svg+xml</dc:format>
211 <dc:type
212 rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
213 <dc:title></dc:title>
214 </cc:Work>
215 </rdf:RDF>
216 </metadata>
217 <g
218 inkscape:label="Layer 1"
219 inkscape:groupmode="layer"
220 id="layer1"
221 transform="translate(0,-572.3622)">
222 <rect
223 style="fill:#000000;fill-opacity:1;stroke:none"
224 id="rect3328"
225 width="640"
226 height="480"
227 x="0"
228 y="572.36218" />
229 <text
230 transform="scale(1.0000015,0.99999849)"
231 sodipodi:linespacing="100%"
232 id="text3002"
233 y="619.20685"
234 x="190.68135"
235 style="font-size:35.65467453px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold"
236 xml:space="preserve"><tspan
237 y="619.20685"
238 x="190.68135"
239 sodipodi:role="line"
240 style="font-size:19.99996948px;font-style:normal;font-weight:bold;-inkscape-font-specification:DejaVu Sans Bold"
241 id="tspan3045">@PROJECT@ @VERSION@ (@DISTRIBUTION@)</tspan><tspan
242 y="639.20679"
243 x="190.68135"
244 sodipodi:role="line"
245 style="font-size:19.99996948px;font-style:normal;font-weight:bold;-inkscape-font-specification:DejaVu Sans Bold"
246 id="tspan3041">@ARCHITECTURE@</tspan><tspan
247 y="659.20679"
248 x="190.68135"
249 sodipodi:role="line"
250 style="font-size:19.99996948px;font-style:normal;font-weight:bold;-inkscape-font-specification:DejaVu Sans Bold"
251 id="tspan3037" /><tspan
252 y="679.20679"
253 x="190.68135"
254 sodipodi:role="line"
255 style="font-size:19.99996948px;font-style:normal;font-weight:bold;-inkscape-font-specification:DejaVu Sans Bold"
256 id="tspan3039">Build: @YEAR@-@MONTH@-@DAY@ @HOUR@:@MINUTE@:@SECOND@</tspan><tspan
257 y="699.20673"
258 x="190.68135"
259 sodipodi:role="line"
260 style="font-size:19.99996948px;font-style:normal;font-weight:bold;-inkscape-font-specification:DejaVu Sans Bold"
261 id="tspan3098" /><tspan
262 y="719.20667"
263 x="190.68135"
264 sodipodi:role="line"
265 style="font-size:19.99996948px;font-style:normal;font-weight:normal;-inkscape-font-specification:DejaVu Sans"
266 id="tspan3102">linux: @LINUX_VERSIONS@</tspan><tspan
267 y="739.20667"
268 x="190.68135"
269 sodipodi:role="line"
270 style="font-size:19.99996948px;font-style:normal;font-weight:normal;-inkscape-font-specification:DejaVu Sans"
271 id="tspan3076">live-build: @LIVE_BUILD_VERSION@</tspan><tspan
272 y="759.20667"
273 x="190.68135"
274 sodipodi:role="line"
275 style="font-size:19.99996948px;font-style:normal;font-weight:normal;-inkscape-font-specification:DejaVu Sans"
276 id="tspan3068">live-boot: @LIVE_BOOT_VERSION@</tspan><tspan
277 y="779.2066"
278 x="190.68135"
279 sodipodi:role="line"
280 style="font-size:19.99996948px;font-style:normal;font-weight:normal;-inkscape-font-specification:DejaVu Sans"
281 id="tspan3070">live-config: @LIVE_CONFIG_VERSION@</tspan><tspan
282 y="799.20654"
283 x="190.68135"
284 sodipodi:role="line"
285 style="font-size:19.99996948px;font-style:normal;font-weight:normal;-inkscape-font-specification:DejaVu Sans"
286 id="tspan3012">live-tools: @LIVE_TOOLS_VERSION@</tspan><tspan
287 y="819.20654"
288 x="190.68135"
289 sodipodi:role="line"
290 style="font-size:19.99996948px;font-style:normal;font-weight:normal;-inkscape-font-specification:DejaVu Sans"
291 id="tspan3066" /></text>
292 <text
293 xml:space="preserve"
294 style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
295 x="200"
296 y="336.7742"
297 id="text3114"
298 sodipodi:linespacing="125%"
299 transform="translate(0,572.3622)"><tspan
300 sodipodi:role="line"
301 id="tspan3116" /></text>
302 <g
303 id="layer1-9"
304 inkscape:label="Layer 1"
305 transform="matrix(2.8369273,0,0,2.8369235,27.782921,602.43406)">
306 <path
307 transform="matrix(0.742527,0,-0.05812964,1.428611,4.500517,-36.68345)"
308 d="m 60.264545,45.673546 c 0,6.966249 -13.595256,12.613509 -30.365856,12.613509 -16.770599,0 -30.3658559,-5.64726 -30.3658559,-12.613509 0,-6.966249 13.5952569,-12.613509 30.3658559,-12.613509 16.7706,0 30.365856,5.64726 30.365856,12.613509 z"
309 sodipodi:ry="12.613509"
310 sodipodi:rx="30.365856"
311 sodipodi:cy="45.673546"
312 sodipodi:cx="29.898689"
313 id="path17409"
314 style="fill:url(#radialGradient18290);fill-opacity:1;stroke:none"
315 sodipodi:type="arc" />
316 <path
317 sodipodi:nodetypes="cccscsssscsccsc"
318 id="path3120"
319 d="M 23.152758,1.1801876 C 20.380218,1.2190783 17.86582,1.8908769 15.634281,3.0196314 14.541531,5.1714614 10.9437,7.7293655 9.4689484,8.0015561 6.5691703,11.460832 4.6887193,15.805035 3.9754523,19.98162 c -4.375e-4,0.0026 4.366e-4,0.0052 0,0.0077 -1.1863594,1.549717 -1.6900108,3.396594 -1.3773472,5.53256 1.1211744,7.659314 3.2821678,14.888292 8.1850959,16.556275 7.154429,2.433946 21.871769,1.785847 25.129507,0.458258 7.13903,-2.909286 7.771453,-9.285098 8.891432,-16.780256 0.305554,-2.044832 -0.144835,-3.841202 -1.230601,-5.372942 -0.009,-0.0556 -0.01849,-0.111474 -0.02832,-0.167342 C 42.763966,15.777007 40.697859,11.326849 37.602582,7.8466935 35.508773,7.62926 31.462964,4.270333 30.483158,2.6229925 28.330506,1.7020155 25.961342,1.1801876 23.407632,1.1801876 c -0.08532,0 -0.170037,-0.00119 -0.254874,0 z"
320 style="fill:url(#radialGradient7666);fill-opacity:1;stroke:#c4a000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
321 inkscape:connector-curvature="0" />
322 <path
323 sodipodi:nodetypes="ccscc"
324 id="path7668"
325 d="M 43.629688,22.792984 C 39.033494,39.233217 10.438199,40.802737 3.7832765,23.04227 3.7410682,39.366403 10.103414,44.083889 28.189955,43.247454 c 3.061977,-0.140689 10.00982,0.04287 14.614484,-9.136776 2.238365,-11.5104 0.825249,-11.317694 0.825249,-11.317694 z"
326 style="opacity:0.66666667;fill:url(#radialGradient8549);fill-opacity:1;fill-rule:evenodd;stroke:none"
327 inkscape:connector-curvature="0" />
328 <path
329 sodipodi:nodetypes="cccc"
330 id="path8553"
331 d="m 34.691565,7.6783057 2.500881,1.1253976 c 0,0 -1.310404,10.1226397 -6.669016,16.4849717 1.771665,-6.455834 4.188975,-17.6103693 4.168135,-17.6103693 z"
332 style="fill:url(#radialGradient9434);fill-opacity:1;fill-rule:evenodd;stroke:none"
333 inkscape:connector-curvature="0" />
334 <path
335 sodipodi:nodetypes="cccc"
336 id="path9436"
337 d="m 15.872437,4.1562328 c 1.50053,9.0656942 6.50229,19.4860282 6.002115,20.0070452 -4.584948,-6.981624 -6.502291,-12.921217 -8.00282,-17.9229779 0,-0.083363 2.000705,-2.0632267 2.000705,-2.0840673 z"
338 style="fill:url(#radialGradient10317);fill-opacity:1;fill-rule:evenodd;stroke:none"
339 inkscape:connector-curvature="0" />
340 <path
341 sodipodi:nodetypes="ccsc"
342 id="path10319"
343 d="M 30.21082,3.8227818 C 26.126047,20.328594 25.959322,23.079563 25.959322,23.079563 c 0,0 6.335566,-16.7559003 6.335566,-17.1727135 0,-8e-7 -1.583891,-1.5005286 -2.084068,-2.0840677 z"
344 style="fill:url(#radialGradient11208);fill-opacity:1;fill-rule:evenodd;stroke:none"
345 inkscape:connector-curvature="0" />
346 <flowRoot
347 id="flowRoot12974"
348 xml:space="preserve"><flowRegion
349 id="flowRegion12976"><rect
350 y="412.80496"
351 x="86.787514"
352 height="16.02231"
353 width="40.055775"
354 id="rect12978" /></flowRegion><flowPara
355 id="flowPara12980" /></flowRoot> <path
356 sodipodi:nodetypes="ccccccc"
357 id="path13014"
358 d="m 16.18209,34.476182 -0.04467,-9.569745 14.493727,0 1.642604,-1.263542 -16.931465,0 0.04467,10.640581 0.795134,0.192706 z"
359 style="fill:url(#radialGradient13895);fill-opacity:1;fill-rule:evenodd;stroke:none"
360 inkscape:connector-curvature="0" />
361 <path
362 sodipodi:nodetypes="ccccc"
363 id="path13897"
364 d="m 31.043495,24.81709 0.08168,9.804611 0.686144,-0.214742 0.01198,-10.85341 -0.779803,1.263541 z"
365 style="fill:#958401;fill-opacity:1;fill-rule:evenodd;stroke:none"
366 inkscape:connector-curvature="0" />
367 <path
368 sodipodi:nodetypes="ccccscc"
369 id="path16526"
370 d="m 4.2551267,24.106065 c 0,0 2.3166503,8.115689 10.2209413,8.766037 1.105608,2.490418 -1.13497,4.124601 -1.13497,4.124601 L 9.7315781,36.745641 c 0,0 -6.2387745,-7.992942 -6.4882087,-9.900882 -0.2494325,-1.907937 0.1632835,-3.407793 0.1632835,-3.407793 l 0.8484738,0.669099 z"
371 style="fill:url(#radialGradient2798);fill-opacity:1;fill-rule:evenodd;stroke:none"
372 inkscape:connector-curvature="0" />
373 <path
374 style="opacity:0.74444442;fill:none;stroke:#ffffff;stroke-width:0.99999976;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
375 d="M 23.184204,2.3889904 C 20.570275,2.4256563 18.199721,3.0590226 16.095844,4.1232033 15.065608,6.1519314 11.673602,8.563503 10.283218,8.8201221 7.5493302,12.0815 5.776456,16.17718 5.1039936,20.11483 c -4.124e-4,0.0024 4.116e-4,0.0049 0,0.0073 -1.1184901,1.46106 -1.8584936,3.246475 -1.5637169,5.260247 1.0570343,7.22114 2.9276025,13.709677 7.3279793,15.639454 5.923141,2.597582 21.539722,1.785935 24.611092,0.534295 6.73062,-2.742852 7.061699,-8.930694 8.117606,-15.997069 0.288074,-1.927851 -0.13655,-3.621454 -1.160201,-5.065566 -0.0084,-0.05242 -0.01743,-0.105097 -0.0267,-0.157769 C 41.673494,16.150755 39.725585,11.955182 36.807382,8.6741189 34.833356,8.4691243 31.019,5.3023548 30.095246,3.7492553 28.065743,2.8809656 25.832115,2.3889904 23.424497,2.3889904 c -0.08044,0 -0.160309,-0.00112 -0.240293,0 z"
376 id="path2703"
377 sodipodi:nodetypes="cccscsssscsccsc"
378 inkscape:connector-curvature="0" />
379 <path
380 sodipodi:nodetypes="cccssccscccssc"
381 id="path2800"
382 d="m 22.59375,2.78125 c -2.329557,0.1165682 -4.440971,0.7250384 -6.34375,1.6875 -1.010725,1.9903059 -4.354698,4.373241 -5.71875,4.625 -2.6821095,3.199611 -4.4027734,7.199424 -5.0625,11.0625 -4.046e-4,0.0024 4.038e-4,0.02888 0,0.03125 -1.0973069,1.43339 -1.4580267,3.591148 -1.4580267,3.591148 4.685267,3.605062 7.6416117,0.213892 14.3188727,-2.01722 12.59928,1.923141 18.748338,-0.995945 22.514154,-5.667678 0.0069,-0.0085 -0.0035,-0.02088 0,-0.03125 C 39.852567,13.479666 38.411479,11.016387 36.5625,8.9375 34.62586,8.7363873 30.875008,5.6486852 29.96875,4.125 27.977684,3.2731547 25.79952,2.78125 23.4375,2.78125 c -0.07892,10e-8 -0.171531,-0.0011 -0.25,0 -0.200346,0.00281 -0.39633,-0.00988 -0.59375,0 z"
383 style="opacity:0.59444424;fill:url(#radialGradient2813);fill-opacity:1;stroke:none"
384 inkscape:connector-curvature="0" />
385 </g>
386 </g>
387 </svg>
+0
-15
share/bootloaders/isolinux.wheezy/stdmenu.cfg less more
0 menu background splash.png
1 menu color title * #FFFFFFFF *
2 menu color border * #00000000 #00000000 none
3 menu color sel * #ffffffff #76a1d0ff *
4 menu color hotsel 1;7;37;40 #ffffffff #76a1d0ff *
5 menu color tabmsg * #ffffffff #00000000 *
6 menu color help 37;40 #ffdddd00 #00000000 none
7 menu vshift 12
8 menu rows 10
9 menu helpmsgrow 15
10 # The command line must be at least one line from the bottom.
11 menu cmdlinerow 16
12 menu timeoutrow 16
13 menu tabmsgrow 18
14 menu tabmsg Press ENTER to boot or TAB to edit a menu entry
+0
-1
share/bootloaders/isolinux.wheezy/vesamenu.c32 less more
0 /usr/lib/syslinux/vesamenu.c32
11 menu label ^Install
22 linux /install/vmlinuz
33 initrd /install/initrd.gz
4 append vga=788 @APPEND_INSTALL@ -- quiet
4 append vga=788 @APPEND_INSTALL@ --- quiet
55
66 label installgui
77 menu label ^Graphical install
88 linux /install/gtk/vmlinuz
99 initrd /install/gtk/initrd.gz
10 append video=vesa:ywrap,mtrr vga=788 @APPEND_INSTALL@ -- quiet
10 append video=vesa:ywrap,mtrr vga=788 @APPEND_INSTALL@ --- quiet
+0
-7
share/bootloaders/pxelinux.wheezy/advanced.cfg less more
0 label hdt
1 menu label ^Hardware Detection Tool (HDT)
2 com32 hdt.c32
3
4 label memtest
5 menu label ^Memory Diagnostic Tool (memtest86+)
6 linux /live/memtest
+0
-1
share/bootloaders/pxelinux.wheezy/hdt.c32 less more
0 /usr/lib/syslinux/hdt.c32
+0
-11
share/bootloaders/pxelinux.wheezy/install.cfg less more
0 label install
1 menu label ^Install
2 linux /install/vmlinuz
3 initrd /install/initrd.gz
4 append vga=788 @APPEND_INSTALL@ -- quiet
5
6 label installgui
7 menu label ^Graphical install
8 linux /install/gtk/vmlinuz
9 initrd /install/gtk/initrd.gz
10 append video=vesa:ywrap,mtrr vga=788 @APPEND_INSTALL@ -- quiet
+0
-12
share/bootloaders/pxelinux.wheezy/live.cfg.in less more
0 label live-@FLAVOUR@
1 menu label ^Live (@FLAVOUR@)
2 menu default
3 linux @LINUX@
4 initrd @INITRD@
5 append @APPEND_LIVE@
6
7 label live-@FLAVOUR@-failsafe
8 menu label ^Live (@FLAVOUR@ failsafe)
9 linux @LINUX@
10 initrd @INITRD@
11 append @APPEND_LIVE_FAILSAFE@
+0
-17
share/bootloaders/pxelinux.wheezy/menu.cfg less more
0 menu hshift 0
1 menu width 82
2
3 menu title Boot menu
4 include stdmenu.cfg
5 include live.cfg
6 include install.cfg
7 menu begin advanced
8 menu title Advanced options
9 include stdmenu.cfg
10 label mainmenu
11 menu label ^Back..
12 menu exit
13 include advanced.cfg
14 menu end
15
16 menu clear
+0
-1
share/bootloaders/pxelinux.wheezy/pxelinux.0 less more
0 /usr/lib/syslinux/pxelinux.0
+0
-4
share/bootloaders/pxelinux.wheezy/pxelinux.cfg/default less more
0 include menu.cfg
1 default vesamenu.c32
2 prompt 0
3 timeout 0
+0
-388
share/bootloaders/pxelinux.wheezy/splash.svg less more
0 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
1 <!-- Created with Inkscape (http://www.inkscape.org/) -->
2
3 <svg
4 xmlns:dc="http://purl.org/dc/elements/1.1/"
5 xmlns:cc="http://creativecommons.org/ns#"
6 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
7 xmlns:svg="http://www.w3.org/2000/svg"
8 xmlns="http://www.w3.org/2000/svg"
9 xmlns:xlink="http://www.w3.org/1999/xlink"
10 xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11 xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12 width="640"
13 height="480"
14 id="svg3320"
15 version="1.1"
16 inkscape:version="0.48.3.1 r9886"
17 sodipodi:docname="splash.svg.in">
18 <defs
19 id="defs3322">
20 <radialGradient
21 gradientUnits="userSpaceOnUse"
22 gradientTransform="matrix(1.402663,0,0,1.115648,-6.237984,0.0533075)"
23 r="18.370251"
24 fy="10.943316"
25 fx="15.491823"
26 cy="10.943316"
27 cx="15.491823"
28 id="radialGradient2813"
29 xlink:href="#linearGradient2807"
30 inkscape:collect="always" />
31 <radialGradient
32 r="35.934704"
33 fy="424.15677"
34 fx="131.23691"
35 cy="424.15677"
36 cx="131.23691"
37 gradientTransform="matrix(0.101953,-0.04272301,0.09621296,0.229599,-48.67227,-64.24148)"
38 gradientUnits="userSpaceOnUse"
39 id="radialGradient2798"
40 xlink:href="#linearGradient8543"
41 inkscape:collect="always" />
42 <radialGradient
43 gradientUnits="userSpaceOnUse"
44 gradientTransform="matrix(1,0,0,0.415385,0,26.70146)"
45 r="30.365856"
46 fy="45.673546"
47 fx="29.898689"
48 cy="45.673546"
49 cx="29.898689"
50 id="radialGradient18290"
51 xlink:href="#linearGradient18284"
52 inkscape:collect="always" />
53 <radialGradient
54 gradientUnits="userSpaceOnUse"
55 gradientTransform="matrix(0.105628,-0.04514018,0.06692574,0.156607,-46.01605,-24.35485)"
56 r="103.26014"
57 fy="409.83737"
58 fx="340.35886"
59 cy="409.83737"
60 cx="340.35886"
61 id="radialGradient13895"
62 xlink:href="#linearGradient8543"
63 inkscape:collect="always" />
64 <radialGradient
65 gradientUnits="userSpaceOnUse"
66 gradientTransform="matrix(0.08174351,0.01024998,-0.04335971,0.345793,6.123413,-84.50421)"
67 r="38.451698"
68 fy="270.67969"
69 fx="424.99243"
70 cy="270.67969"
71 cx="424.99243"
72 id="radialGradient11208"
73 xlink:href="#linearGradient11202"
74 inkscape:collect="always" />
75 <radialGradient
76 gradientUnits="userSpaceOnUse"
77 gradientTransform="matrix(0.272962,-0.071724,0.05616202,0.213737,-78.54657,-24.30491)"
78 r="48.782982"
79 fy="243.06874"
80 fx="293.81989"
81 cy="243.06874"
82 cx="293.81989"
83 id="radialGradient10317"
84 xlink:href="#linearGradient8543"
85 inkscape:collect="always" />
86 <radialGradient
87 gradientUnits="userSpaceOnUse"
88 gradientTransform="matrix(0.224796,0.01017229,-0.00975947,0.215674,-73.87964,-54.89804)"
89 r="40.975471"
90 fy="286.46918"
91 fx="500.97794"
92 cy="286.46918"
93 cx="500.97794"
94 id="radialGradient9434"
95 xlink:href="#linearGradient8543"
96 inkscape:collect="always" />
97 <radialGradient
98 gradientUnits="userSpaceOnUse"
99 gradientTransform="matrix(0.163532,-0.01065754,0.01078108,0.165425,-46.18187,-65.65506)"
100 r="235.88632"
101 fy="685.99139"
102 fx="420.87839"
103 cy="685.99139"
104 cx="420.87839"
105 id="radialGradient8549"
106 xlink:href="#linearGradient8543"
107 inkscape:collect="always" />
108 <radialGradient
109 r="297.21338"
110 fy="-72.420044"
111 fx="336.73767"
112 cy="-72.420044"
113 cx="336.73767"
114 gradientTransform="matrix(0.136507,0,-4.484926e-5,0.07137743,-23.39816,12.31028)"
115 gradientUnits="userSpaceOnUse"
116 id="radialGradient7666"
117 xlink:href="#linearGradient5012"
118 inkscape:collect="always" />
119 <linearGradient
120 id="linearGradient5012">
121 <stop
122 id="stop5014"
123 offset="0"
124 style="stop-color:#fdf188;stop-opacity:1;" />
125 <stop
126 id="stop5016"
127 offset="1"
128 style="stop-color:#d3bc00;stop-opacity:1;" />
129 </linearGradient>
130 <linearGradient
131 id="linearGradient8543">
132 <stop
133 id="stop8545"
134 offset="0"
135 style="stop-color:#fffef5;stop-opacity:0.94117647;" />
136 <stop
137 id="stop8547"
138 offset="1"
139 style="stop-color:#fce94f;stop-opacity:0;" />
140 </linearGradient>
141 <linearGradient
142 id="linearGradient11202">
143 <stop
144 id="stop11204"
145 offset="0"
146 style="stop-color:#c4a000;stop-opacity:1;" />
147 <stop
148 id="stop11206"
149 offset="1"
150 style="stop-color:#c4a000;stop-opacity:0;" />
151 </linearGradient>
152 <linearGradient
153 id="linearGradient18284">
154 <stop
155 id="stop18286"
156 offset="0"
157 style="stop-color:#000000;stop-opacity:1;" />
158 <stop
159 style="stop-color:#000000;stop-opacity:1;"
160 offset="0.5"
161 id="stop20913" />
162 <stop
163 style="stop-color:#000000;stop-opacity:0;"
164 offset="1"
165 id="stop19165" />
166 </linearGradient>
167 <linearGradient
168 id="linearGradient2807"
169 inkscape:collect="always">
170 <stop
171 id="stop2809"
172 offset="0"
173 style="stop-color:#ffffff;stop-opacity:1;" />
174 <stop
175 id="stop2811"
176 offset="1"
177 style="stop-color:#ffffff;stop-opacity:0;" />
178 </linearGradient>
179 <inkscape:perspective
180 id="perspective47"
181 inkscape:persp3d-origin="24 : 16 : 1"
182 inkscape:vp_z="48 : 24 : 1"
183 inkscape:vp_y="0 : 1000 : 0"
184 inkscape:vp_x="0 : 24 : 1"
185 sodipodi:type="inkscape:persp3d" />
186 </defs>
187 <sodipodi:namedview
188 id="base"
189 pagecolor="#ffffff"
190 bordercolor="#666666"
191 borderopacity="1.0"
192 inkscape:pageopacity="0.0"
193 inkscape:pageshadow="2"
194 inkscape:zoom="0.775"
195 inkscape:cx="574.36733"
196 inkscape:cy="250.84337"
197 inkscape:document-units="px"
198 inkscape:current-layer="layer1"
199 showgrid="false"
200 inkscape:window-width="1016"
201 inkscape:window-height="570"
202 inkscape:window-x="0"
203 inkscape:window-y="1"
204 inkscape:window-maximized="0" />
205 <metadata
206 id="metadata3325">
207 <rdf:RDF>
208 <cc:Work
209 rdf:about="">
210 <dc:format>image/svg+xml</dc:format>
211 <dc:type
212 rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
213 <dc:title></dc:title>
214 </cc:Work>
215 </rdf:RDF>
216 </metadata>
217 <g
218 inkscape:label="Layer 1"
219 inkscape:groupmode="layer"
220 id="layer1"
221 transform="translate(0,-572.3622)">
222 <rect
223 style="fill:#000000;fill-opacity:1;stroke:none"
224 id="rect3328"
225 width="640"
226 height="480"
227 x="0"
228 y="572.36218" />
229 <text
230 transform="scale(1.0000015,0.99999849)"
231 sodipodi:linespacing="100%"
232 id="text3002"
233 y="619.20685"
234 x="190.68135"
235 style="font-size:35.65467453px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold"
236 xml:space="preserve"><tspan
237 y="619.20685"
238 x="190.68135"
239 sodipodi:role="line"
240 style="font-size:19.99996948px;font-style:normal;font-weight:bold;-inkscape-font-specification:DejaVu Sans Bold"
241 id="tspan3045">@PROJECT@ @VERSION@ (@DISTRIBUTION@)</tspan><tspan
242 y="639.20679"
243 x="190.68135"
244 sodipodi:role="line"
245 style="font-size:19.99996948px;font-style:normal;font-weight:bold;-inkscape-font-specification:DejaVu Sans Bold"
246 id="tspan3041">@ARCHITECTURE@</tspan><tspan
247 y="659.20679"
248 x="190.68135"
249 sodipodi:role="line"
250 style="font-size:19.99996948px;font-style:normal;font-weight:bold;-inkscape-font-specification:DejaVu Sans Bold"
251 id="tspan3037" /><tspan
252 y="679.20679"
253 x="190.68135"
254 sodipodi:role="line"
255 style="font-size:19.99996948px;font-style:normal;font-weight:bold;-inkscape-font-specification:DejaVu Sans Bold"
256 id="tspan3039">Build: @YEAR@-@MONTH@-@DAY@ @HOUR@:@MINUTE@:@SECOND@</tspan><tspan
257 y="699.20673"
258 x="190.68135"
259 sodipodi:role="line"
260 style="font-size:19.99996948px;font-style:normal;font-weight:bold;-inkscape-font-specification:DejaVu Sans Bold"
261 id="tspan3098" /><tspan
262 y="719.20667"
263 x="190.68135"
264 sodipodi:role="line"
265 style="font-size:19.99996948px;font-style:normal;font-weight:normal;-inkscape-font-specification:DejaVu Sans"
266 id="tspan3102">linux: @LINUX_VERSIONS@</tspan><tspan
267 y="739.20667"
268 x="190.68135"
269 sodipodi:role="line"
270 style="font-size:19.99996948px;font-style:normal;font-weight:normal;-inkscape-font-specification:DejaVu Sans"
271 id="tspan3076">live-build: @LIVE_BUILD_VERSION@</tspan><tspan
272 y="759.20667"
273 x="190.68135"
274 sodipodi:role="line"
275 style="font-size:19.99996948px;font-style:normal;font-weight:normal;-inkscape-font-specification:DejaVu Sans"
276 id="tspan3068">live-boot: @LIVE_BOOT_VERSION@</tspan><tspan
277 y="779.2066"
278 x="190.68135"
279 sodipodi:role="line"
280 style="font-size:19.99996948px;font-style:normal;font-weight:normal;-inkscape-font-specification:DejaVu Sans"
281 id="tspan3070">live-config: @LIVE_CONFIG_VERSION@</tspan><tspan
282 y="799.20654"
283 x="190.68135"
284 sodipodi:role="line"
285 style="font-size:19.99996948px;font-style:normal;font-weight:normal;-inkscape-font-specification:DejaVu Sans"
286 id="tspan3012">live-tools: @LIVE_TOOLS_VERSION@</tspan><tspan
287 y="819.20654"
288 x="190.68135"
289 sodipodi:role="line"
290 style="font-size:19.99996948px;font-style:normal;font-weight:normal;-inkscape-font-specification:DejaVu Sans"
291 id="tspan3066" /></text>
292 <text
293 xml:space="preserve"
294 style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
295 x="200"
296 y="336.7742"
297 id="text3114"
298 sodipodi:linespacing="125%"
299 transform="translate(0,572.3622)"><tspan
300 sodipodi:role="line"
301 id="tspan3116" /></text>
302 <g
303 id="layer1-9"
304 inkscape:label="Layer 1"
305 transform="matrix(2.8369273,0,0,2.8369235,27.782921,602.43406)">
306 <path
307 transform="matrix(0.742527,0,-0.05812964,1.428611,4.500517,-36.68345)"
308 d="m 60.264545,45.673546 c 0,6.966249 -13.595256,12.613509 -30.365856,12.613509 -16.770599,0 -30.3658559,-5.64726 -30.3658559,-12.613509 0,-6.966249 13.5952569,-12.613509 30.3658559,-12.613509 16.7706,0 30.365856,5.64726 30.365856,12.613509 z"
309 sodipodi:ry="12.613509"
310 sodipodi:rx="30.365856"
311 sodipodi:cy="45.673546"
312 sodipodi:cx="29.898689"
313 id="path17409"
314 style="fill:url(#radialGradient18290);fill-opacity:1;stroke:none"
315 sodipodi:type="arc" />
316 <path
317 sodipodi:nodetypes="cccscsssscsccsc"
318 id="path3120"
319 d="M 23.152758,1.1801876 C 20.380218,1.2190783 17.86582,1.8908769 15.634281,3.0196314 14.541531,5.1714614 10.9437,7.7293655 9.4689484,8.0015561 6.5691703,11.460832 4.6887193,15.805035 3.9754523,19.98162 c -4.375e-4,0.0026 4.366e-4,0.0052 0,0.0077 -1.1863594,1.549717 -1.6900108,3.396594 -1.3773472,5.53256 1.1211744,7.659314 3.2821678,14.888292 8.1850959,16.556275 7.154429,2.433946 21.871769,1.785847 25.129507,0.458258 7.13903,-2.909286 7.771453,-9.285098 8.891432,-16.780256 0.305554,-2.044832 -0.144835,-3.841202 -1.230601,-5.372942 -0.009,-0.0556 -0.01849,-0.111474 -0.02832,-0.167342 C 42.763966,15.777007 40.697859,11.326849 37.602582,7.8466935 35.508773,7.62926 31.462964,4.270333 30.483158,2.6229925 28.330506,1.7020155 25.961342,1.1801876 23.407632,1.1801876 c -0.08532,0 -0.170037,-0.00119 -0.254874,0 z"
320 style="fill:url(#radialGradient7666);fill-opacity:1;stroke:#c4a000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
321 inkscape:connector-curvature="0" />
322 <path
323 sodipodi:nodetypes="ccscc"
324 id="path7668"
325 d="M 43.629688,22.792984 C 39.033494,39.233217 10.438199,40.802737 3.7832765,23.04227 3.7410682,39.366403 10.103414,44.083889 28.189955,43.247454 c 3.061977,-0.140689 10.00982,0.04287 14.614484,-9.136776 2.238365,-11.5104 0.825249,-11.317694 0.825249,-11.317694 z"
326 style="opacity:0.66666667;fill:url(#radialGradient8549);fill-opacity:1;fill-rule:evenodd;stroke:none"
327 inkscape:connector-curvature="0" />
328 <path
329 sodipodi:nodetypes="cccc"
330 id="path8553"
331 d="m 34.691565,7.6783057 2.500881,1.1253976 c 0,0 -1.310404,10.1226397 -6.669016,16.4849717 1.771665,-6.455834 4.188975,-17.6103693 4.168135,-17.6103693 z"
332 style="fill:url(#radialGradient9434);fill-opacity:1;fill-rule:evenodd;stroke:none"
333 inkscape:connector-curvature="0" />
334 <path
335 sodipodi:nodetypes="cccc"
336 id="path9436"
337 d="m 15.872437,4.1562328 c 1.50053,9.0656942 6.50229,19.4860282 6.002115,20.0070452 -4.584948,-6.981624 -6.502291,-12.921217 -8.00282,-17.9229779 0,-0.083363 2.000705,-2.0632267 2.000705,-2.0840673 z"
338 style="fill:url(#radialGradient10317);fill-opacity:1;fill-rule:evenodd;stroke:none"
339 inkscape:connector-curvature="0" />
340 <path
341 sodipodi:nodetypes="ccsc"
342 id="path10319"
343 d="M 30.21082,3.8227818 C 26.126047,20.328594 25.959322,23.079563 25.959322,23.079563 c 0,0 6.335566,-16.7559003 6.335566,-17.1727135 0,-8e-7 -1.583891,-1.5005286 -2.084068,-2.0840677 z"
344 style="fill:url(#radialGradient11208);fill-opacity:1;fill-rule:evenodd;stroke:none"
345 inkscape:connector-curvature="0" />
346 <flowRoot
347 id="flowRoot12974"
348 xml:space="preserve"><flowRegion
349 id="flowRegion12976"><rect
350 y="412.80496"
351 x="86.787514"
352 height="16.02231"
353 width="40.055775"
354 id="rect12978" /></flowRegion><flowPara
355 id="flowPara12980" /></flowRoot> <path
356 sodipodi:nodetypes="ccccccc"
357 id="path13014"
358 d="m 16.18209,34.476182 -0.04467,-9.569745 14.493727,0 1.642604,-1.263542 -16.931465,0 0.04467,10.640581 0.795134,0.192706 z"
359 style="fill:url(#radialGradient13895);fill-opacity:1;fill-rule:evenodd;stroke:none"
360 inkscape:connector-curvature="0" />
361 <path
362 sodipodi:nodetypes="ccccc"
363 id="path13897"
364 d="m 31.043495,24.81709 0.08168,9.804611 0.686144,-0.214742 0.01198,-10.85341 -0.779803,1.263541 z"
365 style="fill:#958401;fill-opacity:1;fill-rule:evenodd;stroke:none"
366 inkscape:connector-curvature="0" />
367 <path
368 sodipodi:nodetypes="ccccscc"
369 id="path16526"
370 d="m 4.2551267,24.106065 c 0,0 2.3166503,8.115689 10.2209413,8.766037 1.105608,2.490418 -1.13497,4.124601 -1.13497,4.124601 L 9.7315781,36.745641 c 0,0 -6.2387745,-7.992942 -6.4882087,-9.900882 -0.2494325,-1.907937 0.1632835,-3.407793 0.1632835,-3.407793 l 0.8484738,0.669099 z"
371 style="fill:url(#radialGradient2798);fill-opacity:1;fill-rule:evenodd;stroke:none"
372 inkscape:connector-curvature="0" />
373 <path
374 style="opacity:0.74444442;fill:none;stroke:#ffffff;stroke-width:0.99999976;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
375 d="M 23.184204,2.3889904 C 20.570275,2.4256563 18.199721,3.0590226 16.095844,4.1232033 15.065608,6.1519314 11.673602,8.563503 10.283218,8.8201221 7.5493302,12.0815 5.776456,16.17718 5.1039936,20.11483 c -4.124e-4,0.0024 4.116e-4,0.0049 0,0.0073 -1.1184901,1.46106 -1.8584936,3.246475 -1.5637169,5.260247 1.0570343,7.22114 2.9276025,13.709677 7.3279793,15.639454 5.923141,2.597582 21.539722,1.785935 24.611092,0.534295 6.73062,-2.742852 7.061699,-8.930694 8.117606,-15.997069 0.288074,-1.927851 -0.13655,-3.621454 -1.160201,-5.065566 -0.0084,-0.05242 -0.01743,-0.105097 -0.0267,-0.157769 C 41.673494,16.150755 39.725585,11.955182 36.807382,8.6741189 34.833356,8.4691243 31.019,5.3023548 30.095246,3.7492553 28.065743,2.8809656 25.832115,2.3889904 23.424497,2.3889904 c -0.08044,0 -0.160309,-0.00112 -0.240293,0 z"
376 id="path2703"
377 sodipodi:nodetypes="cccscsssscsccsc"
378 inkscape:connector-curvature="0" />
379 <path
380 sodipodi:nodetypes="cccssccscccssc"
381 id="path2800"
382 d="m 22.59375,2.78125 c -2.329557,0.1165682 -4.440971,0.7250384 -6.34375,1.6875 -1.010725,1.9903059 -4.354698,4.373241 -5.71875,4.625 -2.6821095,3.199611 -4.4027734,7.199424 -5.0625,11.0625 -4.046e-4,0.0024 4.038e-4,0.02888 0,0.03125 -1.0973069,1.43339 -1.4580267,3.591148 -1.4580267,3.591148 4.685267,3.605062 7.6416117,0.213892 14.3188727,-2.01722 12.59928,1.923141 18.748338,-0.995945 22.514154,-5.667678 0.0069,-0.0085 -0.0035,-0.02088 0,-0.03125 C 39.852567,13.479666 38.411479,11.016387 36.5625,8.9375 34.62586,8.7363873 30.875008,5.6486852 29.96875,4.125 27.977684,3.2731547 25.79952,2.78125 23.4375,2.78125 c -0.07892,10e-8 -0.171531,-0.0011 -0.25,0 -0.200346,0.00281 -0.39633,-0.00988 -0.59375,0 z"
383 style="opacity:0.59444424;fill:url(#radialGradient2813);fill-opacity:1;stroke:none"
384 inkscape:connector-curvature="0" />
385 </g>
386 </g>
387 </svg>
+0
-15
share/bootloaders/pxelinux.wheezy/stdmenu.cfg less more
0 menu background splash.png
1 menu color title * #FFFFFFFF *
2 menu color border * #00000000 #00000000 none
3 menu color sel * #ffffffff #76a1d0ff *
4 menu color hotsel 1;7;37;40 #ffffffff #76a1d0ff *
5 menu color tabmsg * #ffffffff #00000000 *
6 menu color help 37;40 #ffdddd00 #00000000 none
7 menu vshift 12
8 menu rows 10
9 menu helpmsgrow 15
10 # The command line must be at least one line from the bottom.
11 menu cmdlinerow 16
12 menu timeoutrow 16
13 menu tabmsgrow 18
14 menu tabmsg Press ENTER to boot or TAB to edit a menu entry
+0
-1
share/bootloaders/pxelinux.wheezy/vesamenu.c32 less more
0 /usr/lib/syslinux/vesamenu.c32
11 menu label ^Install
22 linux /install/vmlinuz
33 initrd /install/initrd.gz
4 append vga=788 @APPEND_INSTALL@ -- quiet
4 append vga=788 @APPEND_INSTALL@ --- quiet
55
66 label installgui
77 menu label ^Graphical install
88 linux /install/gtk/vmlinuz
99 initrd /install/gtk/initrd.gz
10 append video=vesa:ywrap,mtrr vga=788 @APPEND_INSTALL@ -- quiet
10 append video=vesa:ywrap,mtrr vga=788 @APPEND_INSTALL@ --- quiet
+0
-7
share/bootloaders/syslinux.wheezy/advanced.cfg less more
0 label hdt
1 menu label ^Hardware Detection Tool (HDT)
2 com32 hdt.c32
3
4 label memtest
5 menu label ^Memory Diagnostic Tool (memtest86+)
6 linux /live/memtest
+0
-1
share/bootloaders/syslinux.wheezy/hdt.c32 less more
0 /usr/lib/syslinux/hdt.c32
+0
-11
share/bootloaders/syslinux.wheezy/install.cfg less more
0 label install
1 menu label ^Install
2 linux /install/vmlinuz
3 initrd /install/initrd.gz
4 append vga=788 @APPEND_INSTALL@ -- quiet
5
6 label installgui
7 menu label ^Graphical install
8 linux /install/gtk/vmlinuz
9 initrd /install/gtk/initrd.gz
10 append video=vesa:ywrap,mtrr vga=788 @APPEND_INSTALL@ -- quiet
+0
-12
share/bootloaders/syslinux.wheezy/live.cfg.in less more
0 label live-@FLAVOUR@
1 menu label ^Live (@FLAVOUR@)
2 menu default
3 linux @LINUX@
4 initrd @INITRD@
5 append @APPEND_LIVE@
6
7 label live-@FLAVOUR@-failsafe
8 menu label ^Live (@FLAVOUR@ failsafe)
9 linux @LINUX@
10 initrd @INITRD@
11 append @APPEND_LIVE_FAILSAFE@
+0
-17
share/bootloaders/syslinux.wheezy/menu.cfg less more
0 menu hshift 0
1 menu width 82
2
3 menu title Boot menu
4 include stdmenu.cfg
5 include live.cfg
6 include install.cfg
7 menu begin advanced
8 menu title ^Advanced options
9 include stdmenu.cfg
10 label mainmenu
11 menu label ^Back..
12 menu exit
13 include advanced.cfg
14 menu end
15
16 menu clear
+0
-388
share/bootloaders/syslinux.wheezy/splash.svg less more
0 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
1 <!-- Created with Inkscape (http://www.inkscape.org/) -->
2
3 <svg
4 xmlns:dc="http://purl.org/dc/elements/1.1/"
5 xmlns:cc="http://creativecommons.org/ns#"
6 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
7 xmlns:svg="http://www.w3.org/2000/svg"
8 xmlns="http://www.w3.org/2000/svg"
9 xmlns:xlink="http://www.w3.org/1999/xlink"
10 xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11 xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12 width="640"
13 height="480"
14 id="svg3320"
15 version="1.1"
16 inkscape:version="0.48.3.1 r9886"
17 sodipodi:docname="splash.svg.in">
18 <defs
19 id="defs3322">
20 <radialGradient
21 gradientUnits="userSpaceOnUse"
22 gradientTransform="matrix(1.402663,0,0,1.115648,-6.237984,0.0533075)"
23 r="18.370251"
24 fy="10.943316"
25 fx="15.491823"
26 cy="10.943316"
27 cx="15.491823"
28 id="radialGradient2813"
29 xlink:href="#linearGradient2807"
30 inkscape:collect="always" />
31 <radialGradient
32 r="35.934704"
33 fy="424.15677"
34 fx="131.23691"
35 cy="424.15677"
36 cx="131.23691"
37 gradientTransform="matrix(0.101953,-0.04272301,0.09621296,0.229599,-48.67227,-64.24148)"
38 gradientUnits="userSpaceOnUse"
39 id="radialGradient2798"
40 xlink:href="#linearGradient8543"
41 inkscape:collect="always" />
42 <radialGradient
43 gradientUnits="userSpaceOnUse"
44 gradientTransform="matrix(1,0,0,0.415385,0,26.70146)"
45 r="30.365856"
46 fy="45.673546"
47 fx="29.898689"
48 cy="45.673546"
49 cx="29.898689"
50 id="radialGradient18290"
51 xlink:href="#linearGradient18284"
52 inkscape:collect="always" />
53 <radialGradient
54 gradientUnits="userSpaceOnUse"
55 gradientTransform="matrix(0.105628,-0.04514018,0.06692574,0.156607,-46.01605,-24.35485)"
56 r="103.26014"
57 fy="409.83737"
58 fx="340.35886"
59 cy="409.83737"
60 cx="340.35886"
61 id="radialGradient13895"
62 xlink:href="#linearGradient8543"
63 inkscape:collect="always" />
64 <radialGradient
65 gradientUnits="userSpaceOnUse"
66 gradientTransform="matrix(0.08174351,0.01024998,-0.04335971,0.345793,6.123413,-84.50421)"
67 r="38.451698"
68 fy="270.67969"
69 fx="424.99243"
70 cy="270.67969"
71 cx="424.99243"
72 id="radialGradient11208"
73 xlink:href="#linearGradient11202"
74 inkscape:collect="always" />
75 <radialGradient
76 gradientUnits="userSpaceOnUse"
77 gradientTransform="matrix(0.272962,-0.071724,0.05616202,0.213737,-78.54657,-24.30491)"
78 r="48.782982"
79 fy="243.06874"
80 fx="293.81989"
81 cy="243.06874"
82 cx="293.81989"
83 id="radialGradient10317"
84 xlink:href="#linearGradient8543"
85 inkscape:collect="always" />
86 <radialGradient
87 gradientUnits="userSpaceOnUse"
88 gradientTransform="matrix(0.224796,0.01017229,-0.00975947,0.215674,-73.87964,-54.89804)"
89 r="40.975471"
90 fy="286.46918"
91 fx="500.97794"
92 cy="286.46918"
93 cx="500.97794"
94 id="radialGradient9434"
95 xlink:href="#linearGradient8543"
96 inkscape:collect="always" />
97 <radialGradient
98 gradientUnits="userSpaceOnUse"
99 gradientTransform="matrix(0.163532,-0.01065754,0.01078108,0.165425,-46.18187,-65.65506)"
100 r="235.88632"
101 fy="685.99139"
102 fx="420.87839"
103 cy="685.99139"
104 cx="420.87839"
105 id="radialGradient8549"
106 xlink:href="#linearGradient8543"
107 inkscape:collect="always" />
108 <radialGradient
109 r="297.21338"
110 fy="-72.420044"
111 fx="336.73767"
112 cy="-72.420044"
113 cx="336.73767"
114 gradientTransform="matrix(0.136507,0,-4.484926e-5,0.07137743,-23.39816,12.31028)"
115 gradientUnits="userSpaceOnUse"
116 id="radialGradient7666"
117 xlink:href="#linearGradient5012"
118 inkscape:collect="always" />
119 <linearGradient
120 id="linearGradient5012">
121 <stop
122 id="stop5014"
123 offset="0"
124 style="stop-color:#fdf188;stop-opacity:1;" />
125 <stop
126 id="stop5016"
127 offset="1"
128 style="stop-color:#d3bc00;stop-opacity:1;" />
129 </linearGradient>
130 <linearGradient
131 id="linearGradient8543">
132 <stop
133 id="stop8545"
134 offset="0"
135 style="stop-color:#fffef5;stop-opacity:0.94117647;" />
136 <stop
137 id="stop8547"
138 offset="1"
139 style="stop-color:#fce94f;stop-opacity:0;" />
140 </linearGradient>
141 <linearGradient
142 id="linearGradient11202">
143 <stop
144 id="stop11204"
145 offset="0"
146 style="stop-color:#c4a000;stop-opacity:1;" />
147 <stop
148 id="stop11206"
149 offset="1"
150 style="stop-color:#c4a000;stop-opacity:0;" />
151 </linearGradient>
152 <linearGradient
153 id="linearGradient18284">
154 <stop
155 id="stop18286"
156 offset="0"
157 style="stop-color:#000000;stop-opacity:1;" />
158 <stop
159 style="stop-color:#000000;stop-opacity:1;"
160 offset="0.5"
161 id="stop20913" />
162 <stop
163 style="stop-color:#000000;stop-opacity:0;"
164 offset="1"
165 id="stop19165" />
166 </linearGradient>
167 <linearGradient
168 id="linearGradient2807"
169 inkscape:collect="always">
170 <stop
171 id="stop2809"
172 offset="0"
173 style="stop-color:#ffffff;stop-opacity:1;" />
174 <stop
175 id="stop2811"
176 offset="1"
177 style="stop-color:#ffffff;stop-opacity:0;" />
178 </linearGradient>
179 <inkscape:perspective
180 id="perspective47"
181 inkscape:persp3d-origin="24 : 16 : 1"
182 inkscape:vp_z="48 : 24 : 1"
183 inkscape:vp_y="0 : 1000 : 0"
184 inkscape:vp_x="0 : 24 : 1"
185 sodipodi:type="inkscape:persp3d" />
186 </defs>
187 <sodipodi:namedview
188 id="base"
189 pagecolor="#ffffff"
190 bordercolor="#666666"
191 borderopacity="1.0"
192 inkscape:pageopacity="0.0"
193 inkscape:pageshadow="2"
194 inkscape:zoom="0.775"
195 inkscape:cx="574.36733"
196 inkscape:cy="250.84337"
197 inkscape:document-units="px"
198 inkscape:current-layer="layer1"
199 showgrid="false"
200 inkscape:window-width="1016"
201 inkscape:window-height="570"
202 inkscape:window-x="0"
203 inkscape:window-y="1"
204 inkscape:window-maximized="0" />
205 <metadata
206 id="metadata3325">
207 <rdf:RDF>
208 <cc:Work
209 rdf:about="">
210 <dc:format>image/svg+xml</dc:format>
211 <dc:type
212 rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
213 <dc:title></dc:title>
214 </cc:Work>
215 </rdf:RDF>
216 </metadata>
217 <g
218 inkscape:label="Layer 1"
219 inkscape:groupmode="layer"
220 id="layer1"
221 transform="translate(0,-572.3622)">
222 <rect
223 style="fill:#000000;fill-opacity:1;stroke:none"
224 id="rect3328"
225 width="640"
226 height="480"
227 x="0"
228 y="572.36218" />
229 <text
230 transform="scale(1.0000015,0.99999849)"
231 sodipodi:linespacing="100%"
232 id="text3002"
233 y="619.20685"
234 x="190.68135"
235 style="font-size:35.65467453px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:100%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans Bold"
236 xml:space="preserve"><tspan
237 y="619.20685"
238 x="190.68135"
239 sodipodi:role="line"
240 style="font-size:19.99996948px;font-style:normal;font-weight:bold;-inkscape-font-specification:DejaVu Sans Bold"
241 id="tspan3045">@PROJECT@ @VERSION@ (@DISTRIBUTION@)</tspan><tspan
242 y="639.20679"
243 x="190.68135"
244 sodipodi:role="line"
245 style="font-size:19.99996948px;font-style:normal;font-weight:bold;-inkscape-font-specification:DejaVu Sans Bold"
246 id="tspan3041">@ARCHITECTURE@</tspan><tspan
247 y="659.20679"
248 x="190.68135"
249 sodipodi:role="line"
250 style="font-size:19.99996948px;font-style:normal;font-weight:bold;-inkscape-font-specification:DejaVu Sans Bold"
251 id="tspan3037" /><tspan
252 y="679.20679"
253 x="190.68135"
254 sodipodi:role="line"
255 style="font-size:19.99996948px;font-style:normal;font-weight:bold;-inkscape-font-specification:DejaVu Sans Bold"
256 id="tspan3039">Build: @YEAR@-@MONTH@-@DAY@ @HOUR@:@MINUTE@:@SECOND@</tspan><tspan
257 y="699.20673"
258 x="190.68135"
259 sodipodi:role="line"
260 style="font-size:19.99996948px;font-style:normal;font-weight:bold;-inkscape-font-specification:DejaVu Sans Bold"
261 id="tspan3098" /><tspan
262 y="719.20667"
263 x="190.68135"
264 sodipodi:role="line"
265 style="font-size:19.99996948px;font-style:normal;font-weight:normal;-inkscape-font-specification:DejaVu Sans"
266 id="tspan3102">linux: @LINUX_VERSIONS@</tspan><tspan
267 y="739.20667"
268 x="190.68135"
269 sodipodi:role="line"
270 style="font-size:19.99996948px;font-style:normal;font-weight:normal;-inkscape-font-specification:DejaVu Sans"
271 id="tspan3076">live-build: @LIVE_BUILD_VERSION@</tspan><tspan
272 y="759.20667"
273 x="190.68135"
274 sodipodi:role="line"
275 style="font-size:19.99996948px;font-style:normal;font-weight:normal;-inkscape-font-specification:DejaVu Sans"
276 id="tspan3068">live-boot: @LIVE_BOOT_VERSION@</tspan><tspan
277 y="779.2066"
278 x="190.68135"
279 sodipodi:role="line"
280 style="font-size:19.99996948px;font-style:normal;font-weight:normal;-inkscape-font-specification:DejaVu Sans"
281 id="tspan3070">live-config: @LIVE_CONFIG_VERSION@</tspan><tspan
282 y="799.20654"
283 x="190.68135"
284 sodipodi:role="line"
285 style="font-size:19.99996948px;font-style:normal;font-weight:normal;-inkscape-font-specification:DejaVu Sans"
286 id="tspan3012">live-tools: @LIVE_TOOLS_VERSION@</tspan><tspan
287 y="819.20654"
288 x="190.68135"
289 sodipodi:role="line"
290 style="font-size:19.99996948px;font-style:normal;font-weight:normal;-inkscape-font-specification:DejaVu Sans"
291 id="tspan3066" /></text>
292 <text
293 xml:space="preserve"
294 style="font-size:40px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans"
295 x="200"
296 y="336.7742"
297 id="text3114"
298 sodipodi:linespacing="125%"
299 transform="translate(0,572.3622)"><tspan
300 sodipodi:role="line"
301 id="tspan3116" /></text>
302 <g
303 id="layer1-9"
304 inkscape:label="Layer 1"
305 transform="matrix(2.8369273,0,0,2.8369235,27.782921,602.43406)">
306 <path
307 transform="matrix(0.742527,0,-0.05812964,1.428611,4.500517,-36.68345)"
308 d="m 60.264545,45.673546 c 0,6.966249 -13.595256,12.613509 -30.365856,12.613509 -16.770599,0 -30.3658559,-5.64726 -30.3658559,-12.613509 0,-6.966249 13.5952569,-12.613509 30.3658559,-12.613509 16.7706,0 30.365856,5.64726 30.365856,12.613509 z"
309 sodipodi:ry="12.613509"
310 sodipodi:rx="30.365856"
311 sodipodi:cy="45.673546"
312 sodipodi:cx="29.898689"
313 id="path17409"
314 style="fill:url(#radialGradient18290);fill-opacity:1;stroke:none"
315 sodipodi:type="arc" />
316 <path
317 sodipodi:nodetypes="cccscsssscsccsc"
318 id="path3120"
319 d="M 23.152758,1.1801876 C 20.380218,1.2190783 17.86582,1.8908769 15.634281,3.0196314 14.541531,5.1714614 10.9437,7.7293655 9.4689484,8.0015561 6.5691703,11.460832 4.6887193,15.805035 3.9754523,19.98162 c -4.375e-4,0.0026 4.366e-4,0.0052 0,0.0077 -1.1863594,1.549717 -1.6900108,3.396594 -1.3773472,5.53256 1.1211744,7.659314 3.2821678,14.888292 8.1850959,16.556275 7.154429,2.433946 21.871769,1.785847 25.129507,0.458258 7.13903,-2.909286 7.771453,-9.285098 8.891432,-16.780256 0.305554,-2.044832 -0.144835,-3.841202 -1.230601,-5.372942 -0.009,-0.0556 -0.01849,-0.111474 -0.02832,-0.167342 C 42.763966,15.777007 40.697859,11.326849 37.602582,7.8466935 35.508773,7.62926 31.462964,4.270333 30.483158,2.6229925 28.330506,1.7020155 25.961342,1.1801876 23.407632,1.1801876 c -0.08532,0 -0.170037,-0.00119 -0.254874,0 z"
320 style="fill:url(#radialGradient7666);fill-opacity:1;stroke:#c4a000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
321 inkscape:connector-curvature="0" />
322 <path
323 sodipodi:nodetypes="ccscc"
324 id="path7668"
325 d="M 43.629688,22.792984 C 39.033494,39.233217 10.438199,40.802737 3.7832765,23.04227 3.7410682,39.366403 10.103414,44.083889 28.189955,43.247454 c 3.061977,-0.140689 10.00982,0.04287 14.614484,-9.136776 2.238365,-11.5104 0.825249,-11.317694 0.825249,-11.317694 z"
326 style="opacity:0.66666667;fill:url(#radialGradient8549);fill-opacity:1;fill-rule:evenodd;stroke:none"
327 inkscape:connector-curvature="0" />
328 <path
329 sodipodi:nodetypes="cccc"
330 id="path8553"
331 d="m 34.691565,7.6783057 2.500881,1.1253976 c 0,0 -1.310404,10.1226397 -6.669016,16.4849717 1.771665,-6.455834 4.188975,-17.6103693 4.168135,-17.6103693 z"
332 style="fill:url(#radialGradient9434);fill-opacity:1;fill-rule:evenodd;stroke:none"
333 inkscape:connector-curvature="0" />
334 <path
335 sodipodi:nodetypes="cccc"
336 id="path9436"
337 d="m 15.872437,4.1562328 c 1.50053,9.0656942 6.50229,19.4860282 6.002115,20.0070452 -4.584948,-6.981624 -6.502291,-12.921217 -8.00282,-17.9229779 0,-0.083363 2.000705,-2.0632267 2.000705,-2.0840673 z"
338 style="fill:url(#radialGradient10317);fill-opacity:1;fill-rule:evenodd;stroke:none"
339 inkscape:connector-curvature="0" />
340 <path
341 sodipodi:nodetypes="ccsc"
342 id="path10319"
343 d="M 30.21082,3.8227818 C 26.126047,20.328594 25.959322,23.079563 25.959322,23.079563 c 0,0 6.335566,-16.7559003 6.335566,-17.1727135 0,-8e-7 -1.583891,-1.5005286 -2.084068,-2.0840677 z"
344 style="fill:url(#radialGradient11208);fill-opacity:1;fill-rule:evenodd;stroke:none"
345 inkscape:connector-curvature="0" />
346 <flowRoot
347 id="flowRoot12974"
348 xml:space="preserve"><flowRegion
349 id="flowRegion12976"><rect
350 y="412.80496"
351 x="86.787514"
352 height="16.02231"
353 width="40.055775"
354 id="rect12978" /></flowRegion><flowPara
355 id="flowPara12980" /></flowRoot> <path
356 sodipodi:nodetypes="ccccccc"
357 id="path13014"
358 d="m 16.18209,34.476182 -0.04467,-9.569745 14.493727,0 1.642604,-1.263542 -16.931465,0 0.04467,10.640581 0.795134,0.192706 z"
359 style="fill:url(#radialGradient13895);fill-opacity:1;fill-rule:evenodd;stroke:none"
360 inkscape:connector-curvature="0" />
361 <path
362 sodipodi:nodetypes="ccccc"
363 id="path13897"
364 d="m 31.043495,24.81709 0.08168,9.804611 0.686144,-0.214742 0.01198,-10.85341 -0.779803,1.263541 z"
365 style="fill:#958401;fill-opacity:1;fill-rule:evenodd;stroke:none"
366 inkscape:connector-curvature="0" />
367 <path
368 sodipodi:nodetypes="ccccscc"
369 id="path16526"
370 d="m 4.2551267,24.106065 c 0,0 2.3166503,8.115689 10.2209413,8.766037 1.105608,2.490418 -1.13497,4.124601 -1.13497,4.124601 L 9.7315781,36.745641 c 0,0 -6.2387745,-7.992942 -6.4882087,-9.900882 -0.2494325,-1.907937 0.1632835,-3.407793 0.1632835,-3.407793 l 0.8484738,0.669099 z"
371 style="fill:url(#radialGradient2798);fill-opacity:1;fill-rule:evenodd;stroke:none"
372 inkscape:connector-curvature="0" />
373 <path
374 style="opacity:0.74444442;fill:none;stroke:#ffffff;stroke-width:0.99999976;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
375 d="M 23.184204,2.3889904 C 20.570275,2.4256563 18.199721,3.0590226 16.095844,4.1232033 15.065608,6.1519314 11.673602,8.563503 10.283218,8.8201221 7.5493302,12.0815 5.776456,16.17718 5.1039936,20.11483 c -4.124e-4,0.0024 4.116e-4,0.0049 0,0.0073 -1.1184901,1.46106 -1.8584936,3.246475 -1.5637169,5.260247 1.0570343,7.22114 2.9276025,13.709677 7.3279793,15.639454 5.923141,2.597582 21.539722,1.785935 24.611092,0.534295 6.73062,-2.742852 7.061699,-8.930694 8.117606,-15.997069 0.288074,-1.927851 -0.13655,-3.621454 -1.160201,-5.065566 -0.0084,-0.05242 -0.01743,-0.105097 -0.0267,-0.157769 C 41.673494,16.150755 39.725585,11.955182 36.807382,8.6741189 34.833356,8.4691243 31.019,5.3023548 30.095246,3.7492553 28.065743,2.8809656 25.832115,2.3889904 23.424497,2.3889904 c -0.08044,0 -0.160309,-0.00112 -0.240293,0 z"
376 id="path2703"
377 sodipodi:nodetypes="cccscsssscsccsc"
378 inkscape:connector-curvature="0" />
379 <path
380 sodipodi:nodetypes="cccssccscccssc"
381 id="path2800"
382 d="m 22.59375,2.78125 c -2.329557,0.1165682 -4.440971,0.7250384 -6.34375,1.6875 -1.010725,1.9903059 -4.354698,4.373241 -5.71875,4.625 -2.6821095,3.199611 -4.4027734,7.199424 -5.0625,11.0625 -4.046e-4,0.0024 4.038e-4,0.02888 0,0.03125 -1.0973069,1.43339 -1.4580267,3.591148 -1.4580267,3.591148 4.685267,3.605062 7.6416117,0.213892 14.3188727,-2.01722 12.59928,1.923141 18.748338,-0.995945 22.514154,-5.667678 0.0069,-0.0085 -0.0035,-0.02088 0,-0.03125 C 39.852567,13.479666 38.411479,11.016387 36.5625,8.9375 34.62586,8.7363873 30.875008,5.6486852 29.96875,4.125 27.977684,3.2731547 25.79952,2.78125 23.4375,2.78125 c -0.07892,10e-8 -0.171531,-0.0011 -0.25,0 -0.200346,0.00281 -0.39633,-0.00988 -0.59375,0 z"
383 style="opacity:0.59444424;fill:url(#radialGradient2813);fill-opacity:1;stroke:none"
384 inkscape:connector-curvature="0" />
385 </g>
386 </g>
387 </svg>
+0
-15
share/bootloaders/syslinux.wheezy/stdmenu.cfg less more
0 menu background splash.png
1 menu color title * #FFFFFFFF *
2 menu color border * #00000000 #00000000 none
3 menu color sel * #ffffffff #76a1d0ff *
4 menu color hotsel 1;7;37;40 #ffffffff #76a1d0ff *
5 menu color tabmsg * #ffffffff #00000000 *
6 menu color help 37;40 #ffdddd00 #00000000 none
7 menu vshift 12
8 menu rows 10
9 menu helpmsgrow 15
10 # The command line must be at least one line from the bottom.
11 menu cmdlinerow 16
12 menu timeoutrow 16
13 menu tabmsgrow 18
14 menu tabmsg Press ENTER to boot or TAB to edit a menu entry
+0
-4
share/bootloaders/syslinux.wheezy/syslinux.cfg less more
0 include menu.cfg
1 default vesamenu.c32
2 prompt 0
3 timeout 0
+0
-1
share/bootloaders/syslinux.wheezy/vesamenu.c32 less more
0 /usr/lib/syslinux/vesamenu.c32
+0
-16
share/hooks/0010-disable-kexec-tools.hook.chroot less more
0 #!/bin/sh
1
2 set -e
3
4 # Disable kexec-tools
5
6 if [ -e /sbin/kexec ]
7 then
8 echo "kexec-tools kexec-tools/load_kexec boolean false" > /root/preseed
9
10 debconf-set-selections /root/preseed
11
12 rm -f /root/preseed
13
14 dpkg-reconfigure kexec-tools
15 fi
+0
-11
share/hooks/0020-create-mtab-symlink.hook.chroot less more
0 #!/bin/sh
1
2 set -e
3
4 # Create /etc/mtab symlink, replacing a regular file if necessary
5
6 if [ ! -L /etc/mtab ]
7 then
8 rm -f /etc/mtab
9 ln -s /proc/mounts /etc/mtab
10 fi
+0
-21
share/hooks/0030-enable-cryptsetup.hook.chroot less more
0 #!/bin/sh
1
2 set -e
3
4 # Enable cryptsetup
5
6 if [ -e /sbin/cryptsetup ]
7 then
8 if [ ! -e /etc/initramfs-tools/conf.d/cryptsetup ]
9 then
10 mkdir -p /etc/initramfs-tools/conf.d
11
12 cat > /etc/initramfs-tools/conf.d/cryptsetup << EOF
13 # /etc/initramfs-tools/conf.d/cryptsetup
14
15 CRYPTSETUP=yes
16 export CRYPTSETUP
17 EOF
18
19 fi
20 fi
+0
-11
share/hooks/0100-remove-adjtime-configuration.hook.chroot less more
0 #!/bin/sh
1
2 set -e
3
4 # Reset generated file
5
6 cat > /etc/adjtime << EOF
7 0.0 0 0.0
8 0
9 UTC
10 EOF
+0
-18
share/hooks/0110-remove-backup-files.hook.chroot less more
0 #!/bin/sh
1
2 set -e
3
4 # Remove backup files
5 rm -f /boot/*.bak
6 rm -f /boot/*.old-dkms
7
8 rm -f /etc/apt/sources.list~
9 rm -f /etc/apt/trusted.gpg~
10
11 rm -f /etc/passwd-
12 rm -f /etc/group-
13 rm -f /etc/shadow-
14 rm -f /etc/gshadow-
15
16 rm -f /var/cache/debconf/*-old
17 rm -f /var/lib/dpkg/*-old
+0
-9
share/hooks/0120-remove-dbus-machine-id.hook.chroot less more
0 #!/bin/sh
1
2 set -e
3
4 # Remove dbus machine id.
5 #
6 # This removes dbus machine id that cache that makes each system unique.
7
8 rm -f /var/lib/dbus/machine-id
+0
-9
share/hooks/0130-remove-gnome-icon-cache.hook.chroot less more
0 #!/bin/sh
1
2 set -e
3
4 # Remove GNOME icon cache.
5 #
6 # This saves space some space.
7
8 rm -f /usr/share/icons/*/icon-theme.cache
+0
-9
share/hooks/0140-remove-log-files.hook.chroot less more
0 #!/bin/sh
1
2 set -e
3
4 # Truncate log files
5 for _FILE in $(find /var/log/ -type f)
6 do
7 : > ${_FILE}
8 done
+0
-7
share/hooks/0150-remove-mdadm-configuration.hook.chroot less more
0 #!/bin/sh
1
2 set -e
3
4 # Remove generated files
5
6 rm -f /etc/mdadm/mdadm.conf
+0
-10
share/hooks/0160-remove-openssh-server-host-keys.hook.chroot less more
0 #!/bin/sh
1
2 set -e
3
4 # Remove OpenSSH Host Keys.
5 #
6 # This removes openssh-server host keys, they are regenerated by live-config
7 # on system start.
8
9 rm -f /etc/ssh/ssh_host_*_key /etc/ssh/ssh_host_*_key.pub
+0
-9
share/hooks/0170-remove-python-py.hook.chroot less more
0 #!/bin/sh
1
2 set -e
3
4 # Remove Python *.py files.
5 #
6 # This removes byte-compiled Python modules to save some space.
7
8 find /usr -name "*.pyc" -print0 | xargs -0r rm -f
+0
-13
share/hooks/0180-remove-systemd-machine-id.hook.chroot less more
0 #!/bin/sh
1
2 set -e
3
4 # Blank out systemd machine id. If it does not exist, systemd-journald
5 # will fail, but if it exists and is empty, systemd will automatically
6 # set up a new unique ID.
7
8 if [ -e /etc/machine-id ]
9 then
10 rm -f /etc/machine-id
11 : > /etc/machine-id
12 fi
+0
-14
share/hooks/0190-remove-temporary-files.hook.chroot less more
0 #!/bin/sh
1
2 set -e
3
4 # Remove temporary files
5 rm -rf /var/cache/man/*
6
7 for _DIRECTORY in /tmp /var/tmp
8 do
9 rm -rf ${_DIRECTORY}
10
11 mkdir -p ${_DIRECTORY}
12 chmod 1777 ${_DIRECTORY}
13 done
+0
-13
share/hooks/0195-remove-ssl-cert-snakeoil.hook.chroot less more
0 #!/bin/sh
1
2 set -e
3
4 # Remove ssl-cert snakeoil
5
6 if [ -e /etc/ssl/certs/ssl-cert-snakeoil.pem ]
7 then
8 rm -f /etc/ssl/certs/$(openssl x509 -hash -noout -in /etc/ssl/certs/ssl-cert-snakeoil.pem)
9
10 rm -f /etc/ssl/certs/ssl-cert-snakeoil.pem
11 rm -f /etc/ssl/private/ssl-cert-snakeoil.key
12 fi
+0
-13
share/hooks/0200-remove-udev-persistent-cd-rules.hook.chroot less more
0 #!/bin/sh
1
2 set -e
3
4 # Remove udev persistent rules.
5 #
6 # This removes udev persistent rules that cache the host systems cd drive as
7 # well as the running live systems cd drive to remember its device name.
8
9 if [ -e /etc/udev/rules.d ]
10 then
11 > /etc/udev/rules.d/70-persistent-cd.rules
12 fi
+0
-16
share/hooks/0300-remove-udev-persistent-net-rules.hook.chroot less more
0 #!/bin/sh
1
2 set -e
3
4 # Remove udev persistent rules.
5 #
6 # This removes udev persistent rules that cache the host systems mac address to
7 # remember its device name.
8
9 for _FILE in /etc/udev/rules.d/*persistent-net.rules
10 do
11 if [ -e "${_FILE}" ]
12 then
13 : > ${_FILE}
14 fi
15 done
+0
-14
share/hooks/0400-update-apt-file-cache.hook.chroot less more
0 #!/bin/sh
1
2 set -e
3
4 # Update the Apt File cache.
5 #
6 # This allows to use using apt-file out-of-the-box.
7
8 . /live-build/config/binary
9
10 if [ -x /usr/bin/apt-file ] && [ "${LB_APT_INDICES}" = "true" ]
11 then
12 apt-file update
13 fi
+0
-14
share/hooks/0410-update-apt-xapian-index.hook.chroot less more
0 #!/bin/sh
1
2 set -e
3
4 # Update the Apt Xapian index.
5 #
6 # The package would do this itself, but (a) it checks policy-rc.d which says it
7 # is not allowed to, and (b) it wants to build the index in the background which
8 # will be racy in the context of live-build.
9
10 if [ -x /usr/sbin/update-apt-xapian-index ]
11 then
12 PYTHONDONTWRITEBYTECODE=1 /usr/sbin/update-apt-xapian-index --force --quiet
13 fi
+0
-9
share/hooks/0420-update-glx-alternative.hook.chroot less more
0 #!/bin/sh
1
2 set -e
3
4 # Use mesa renderer by default
5 if [ -e /etc/alternatives/glx ]
6 then
7 update-alternatives --quiet --set glx /usr/lib/mesa-diverted
8 fi
+0
-14
share/hooks/0430-update-mlocate-database.hook.chroot less more
0 #!/bin/sh
1
2 set -e
3
4 # Update the mlocate database.
5 #
6 # It is convenient for this to be already up to date on the live system, and it
7 # means that if the live system is later installed to a hard disk then less
8 # work will be required after installation.
9
10 if [ -x /usr/bin/updatedb.mlocate ]
11 then
12 updatedb.mlocate
13 fi
+0
-9
share/hooks/0440-update-nvidia-alternative.hook.chroot less more
0 #!/bin/sh
1
2 set -e
3
4 # Use newest nvidia version by default
5 if [ -e /etc/alternatives/nvidia ] && [ -e /usr/lib/nvidia/current ]
6 then
7 update-alternatives --quiet --set nvidia /usr/lib/nvidia/current
8 fi
+0
-8
share/hooks/0910-remove-apt-sources-lists less more
0 #!/bin/sh
1
2 set -e
3
4 # Remove apt sources.list files
5
6 rm -f /etc/apt/sources.list
7 rm -f /etc/apt/sources.list.d/*.list
0 #!/bin/sh
1
2 set -e
3
4 # Disable kexec-tools
5
6 if [ -e /sbin/kexec ]
7 then
8 echo "kexec-tools kexec-tools/load_kexec boolean false" > /root/preseed
9
10 debconf-set-selections /root/preseed
11
12 rm -f /root/preseed
13
14 dpkg-reconfigure kexec-tools
15 fi
0 #!/bin/sh
1
2 set -e
3
4 # Disable tmpfs on /tmp
5
6 if [ -e /etc/default/rcS ]
7 then
8 sed -i -e 's|^ *RAMTMP=.*|RAMTMP=no|' /etc/default/rcS
9 fi
0 #!/bin/sh
1
2 set -e
3
4 # Create /etc/mtab symlink, replacing a regular file if necessary
5
6 if [ ! -L /etc/mtab ]
7 then
8 rm -f /etc/mtab
9 ln -s /proc/mounts /etc/mtab
10 fi
0 #!/bin/sh
1
2 set -e
3
4 # Enable cryptsetup
5
6 if [ -e /sbin/cryptsetup ]
7 then
8 if [ ! -e /etc/initramfs-tools/conf.d/cryptsetup ]
9 then
10 mkdir -p /etc/initramfs-tools/conf.d
11
12 cat > /etc/initramfs-tools/conf.d/cryptsetup << EOF
13 # /etc/initramfs-tools/conf.d/cryptsetup
14
15 CRYPTSETUP=yes
16 export CRYPTSETUP
17 EOF
18
19 fi
20 fi
0 #!/bin/sh
1
2 set -e
3
4 # Create /etc/environment and /etc/default/locale
5 touch /etc/environment
6 touch /etc/default/locale
0 #!/bin/sh
1
2 set -e
3
4 # Reset generated file
5
6 cat > /etc/adjtime << EOF
7 0.0 0 0.0
8 0
9 UTC
10 EOF
0 #!/bin/sh
1
2 set -e
3
4 # Remove backup files
5 rm -f /boot/*.bak
6 rm -f /boot/*.old-dkms
7
8 rm -f /etc/apt/sources.list~
9 rm -f /etc/apt/trusted.gpg~
10
11 rm -f /etc/passwd-
12 rm -f /etc/group-
13 rm -f /etc/shadow-
14 rm -f /etc/gshadow-
15
16 rm -f /var/cache/debconf/*-old
17 rm -f /var/lib/dpkg/*-old
0 #!/bin/sh
1
2 set -e
3
4 # Remove dbus machine id.
5 #
6 # This removes dbus machine id that cache that makes each system unique.
7
8 rm -f /var/lib/dbus/machine-id
0 #!/bin/sh
1
2 set -e
3
4 # Remove GNOME icon cache.
5 #
6 # This saves space some space.
7
8 rm -f /usr/share/icons/*/icon-theme.cache
0 #!/bin/sh
1
2 set -e
3
4 # Truncate log files
5 for _FILE in $(find /var/log/ -type f)
6 do
7 : > ${_FILE}
8 done
0 #!/bin/sh
1
2 set -e
3
4 # Remove generated files
5
6 rm -f /etc/mdadm/mdadm.conf
0 #!/bin/sh
1
2 set -e
3
4 # Remove OpenSSH Host Keys.
5 #
6 # This removes openssh-server host keys, they are regenerated by live-config
7 # on system start.
8
9 rm -f /etc/ssh/ssh_host_*_key /etc/ssh/ssh_host_*_key.pub
0 #!/bin/sh
1
2 set -e
3
4 # Remove Python *.py files.
5 #
6 # This removes byte-compiled Python modules to save some space.
7
8 find /usr -name "*.pyc" -print0 | xargs -0r rm -f
0 #!/bin/sh
1
2 set -e
3
4 # Blank out systemd machine id. If it does not exist, systemd-journald
5 # will fail, but if it exists and is empty, systemd will automatically
6 # set up a new unique ID.
7
8 if [ -e /etc/machine-id ]
9 then
10 rm -f /etc/machine-id
11 : > /etc/machine-id
12 fi
0 #!/bin/sh
1
2 set -e
3
4 # Remove temporary files
5 rm -rf /var/cache/man/*
6
7 for _DIRECTORY in /tmp /var/tmp
8 do
9 rm -rf ${_DIRECTORY}
10
11 mkdir -p ${_DIRECTORY}
12 chmod 1777 ${_DIRECTORY}
13 done
0 #!/bin/sh
1
2 set -e
3
4 # Remove ssl-cert snakeoil
5
6 if [ -e /etc/ssl/certs/ssl-cert-snakeoil.pem ]
7 then
8 rm -f /etc/ssl/certs/$(openssl x509 -hash -noout -in /etc/ssl/certs/ssl-cert-snakeoil.pem)
9
10 rm -f /etc/ssl/certs/ssl-cert-snakeoil.pem
11 rm -f /etc/ssl/private/ssl-cert-snakeoil.key
12 fi
0 #!/bin/sh
1
2 set -e
3
4 # Remove udev persistent rules.
5 #
6 # This removes udev persistent rules that cache the host systems cd drive as
7 # well as the running live systems cd drive to remember its device name.
8
9 if [ -e /etc/udev/rules.d ]
10 then
11 > /etc/udev/rules.d/70-persistent-cd.rules
12 fi
0 #!/bin/sh
1
2 set -e
3
4 # Remove udev persistent rules.
5 #
6 # This removes udev persistent rules that cache the host systems mac address to
7 # remember its device name.
8
9 for _FILE in /etc/udev/rules.d/*persistent-net.rules
10 do
11 if [ -e "${_FILE}" ]
12 then
13 : > ${_FILE}
14 fi
15 done
0 #!/bin/sh
1
2 set -e
3
4 # Update the Apt File cache.
5 #
6 # This allows to use using apt-file out-of-the-box.
7
8 . /live-build/config/binary
9
10 if [ -x /usr/bin/apt-file ] && [ "${LB_APT_INDICES}" = "true" ]
11 then
12 apt-file update
13 fi
0 #!/bin/sh
1
2 set -e
3
4 # Update the Apt Xapian index.
5 #
6 # The package would do this itself, but (a) it checks policy-rc.d which says it
7 # is not allowed to, and (b) it wants to build the index in the background which
8 # will be racy in the context of live-build.
9
10 if [ -x /usr/sbin/update-apt-xapian-index ]
11 then
12 PYTHONDONTWRITEBYTECODE=1 /usr/sbin/update-apt-xapian-index --force --quiet
13 fi
0 #!/bin/sh
1
2 set -e
3
4 # Use mesa renderer by default
5 if [ -e /etc/alternatives/glx ]
6 then
7 update-alternatives --quiet --set glx /usr/lib/mesa-diverted
8 fi
0 #!/bin/sh
1
2 set -e
3
4 # Update the mlocate database.
5 #
6 # It is convenient for this to be already up to date on the live system, and it
7 # means that if the live system is later installed to a hard disk then less
8 # work will be required after installation.
9
10 if [ -x /usr/bin/updatedb.mlocate ]
11 then
12 updatedb.mlocate
13 fi
0 #!/bin/sh
1
2 set -e
3
4 # Use newest nvidia version by default
5 if [ -e /etc/alternatives/nvidia ] && [ -e /usr/lib/nvidia/current ]
6 then
7 update-alternatives --quiet --set nvidia /usr/lib/nvidia/current
8 fi
0 #!/bin/sh
1
2 set -e
3
4 # Remove apt sources.list files
5
6 rm -f /etc/apt/sources.list
7 rm -f /etc/apt/sources.list.d/*.list
+0
-65
templates/cgi/debian/build.html less more
0 <br />
1
2 <h3>Your build 'BUILD' was recorded and will be processed soon. Depending on the options you have selected, a build attempt generally takes between 5 and 20 minutes to complete. Currently there are 'QUEUENUM' pending build(s) to be processed ahead of your request. You will be notified by email when the attempt has completed.</h3>
3
4 <h3>Your build will be available at: <a href="SERVER/BUILD/">SERVER/BUILD/</a>.</h3>
5
6 <fieldset>
7
8 <legend><b>Options</b></legend>
9
10 <b>Standard options</b>
11
12 <table>
13 <tr><td>Email: </td><td>EMAIL</td></tr>
14 <tr><td>--binary-image: </td><td>LIVE_IMAGE_TYPE</td></tr>
15 <tr><td>--distribution: </td><td>LB_DISTRIBUTION</td></tr>
16 <tr><td>--config: </td><td>_LB_CONFIG</td></tr>
17 <tr><td>--apt: </td><td>LB_APT</td></tr>
18 <tr><td>cgipackages.list.chroot: </td><td>_LB_CGIPACKAGES</td><tr>
19 </table>
20
21 <b>Advanced bootstrap options</b>
22
23 <table>
24 <tr><td>--architectures: </td><td>LB_ARCHITECTURES</td></tr>
25 <tr><td>--archive-areas: </td><td>LB_ARCHIVE_AREAS</td></tr>
26 </table>
27
28 <b>Advanced chroot options</b>
29
30 <table>
31 <tr><td>--chroot-fileystem: </td><td>LB_CHROOT_FILESYSTEM</td></tr>
32 <tr><td>--linux-flavours: </td><td>LB_LINUX_FLAVOURS</td></tr>
33 <tr><td>--security: </td><td>LB_SECURITY</td></tr>
34 </table>
35
36 <b>Advanced binary options</b>
37
38 <table>
39 <tr><td>--apt-indices: </td><td>LB_APT_INDICES</td></tr>
40 <tr><td>--bootappend-live: </td><td>LB_BOOTAPPEND_LIVE</td></tr>
41 <tr><td>--bootloader: </td><td>LB_BOOTLOADER</td></tr>
42 <tr><td>--debian-installer: </td><td>LB_DEBIAN_INSTALLER</td></tr>
43 <tr><td>--bootappend-install: </td><td>LB_BOOTAPPEND_INSTALL</td></tr>
44 <tr><td>--iso-application: </td><td>LB_ISO_APPLICATION</td></tr>
45 <tr><td>--iso-preparer: </td><td>LB_ISO_PREPARER</td></tr>
46 <tr><td>--iso-publisher: </td><td>LB_ISO_PUBLISHER</td></tr>
47 <tr><td>--iso-volume: </td><td>LB_ISO_VOLUME</td></tr>
48 <tr><td>--memtest: </td><td>LB_MEMTEST</td></tr>
49 <tr><td>--net-path: </td><td>LB_NET_ROOT_PATH</td></tr>
50 <tr><td>--net-server: </td><td>LB_NET_ROOT_SERVER</td></tr>
51 </table>
52
53 <b>Advanced source options</b>
54
55 <table>
56 <tr><td>--source: </td><td>LB_SOURCE</td></tr>
57 <tr><td>--source-images: </td><td>LB_SOURCE_IMAGES</td></tr>
58 </table>
59
60 </fieldset>
61
62 <br />
63
64 <h3>Thank you for your submission.</h3>
+0
-16
templates/cgi/debian/footer.html less more
0 <hr />
1
2 <footer>
3 <p><div class="muted">2006-2014 <a class="muted" href="mailto:[email protected]?subject=Live Systems Project:%20Feedback">Live Systems Project</a> <a class="muted pull-right" href="http://live-systems.org/project/legal/">Legal Information</a></p>
4 </footer>
5 </div> <!-- /container -->
6
7
8 <!-- Bootstrap core JavaScript
9 ================================================== -->
10 <!-- Placed at the end of the document so the pages load faster -->
11 <script src="http://live-systems.org/stuff/jquery/jquery.min.js"></script>
12 <script src="http://live-systems.org/stuff/bootstrap/js/bootstrap.min.js"></script>
13 <script src="http://live-systems.org/stuff/bootstrap/table.js"></script>
14 </body>
15 </html>
+0
-272
templates/cgi/debian/form.html less more
0 <h3>Submit your parameters (<b>working</b> email address is required) to generate your very own live system.</h3>
1
2 <form action="live-build" method="post">
3
4 <fieldset>
5
6 <legend><b>Options</b></legend>
7
8 <table>
9 <tr>
10 <td><label for="Email">Email Address:</label> </td>
11 <td><input id="Email" name="email" maxlength="50" size="50" type="text" /></td>
12 </tr>
13 </table>
14
15 <span id="click_1" onmouseover='javascript:objectOver(this)' onmouseout='javascript:objectOut(this)' onclick='javascript:collapse(1,"<b>Standard options</b>")'>
16 <b>Standard options</b><small>&nbsp;(click to collapse)</small>
17 <br />
18 </span>
19
20 <div id="text_1" style='margin-left:0;display:block'>
21 <table>
22 <tr>
23 <td><label for="Binary_Images">--binary-images:</label> </td>
24 <td>
25 <select id="Binary_Images" name="binary_images" size="1">
26 <option value="iso">iso</option>
27 <option selected value="iso-hybrid">iso-hybrid</option>
28 <option value="netboot">netboot</option>
29 <option value="tar">tar</option>
30 <option value="hdd">hdd</option>
31 </select>
32 </td>
33 </tr>
34 <tr>
35 <td><label for="Distribution">--distribution:</label> </td>
36 <td>
37 <select id="Distribution" name="distribution" size="1">
38 <option selected value="wheezy">wheezy</option>
39 <option value="jessie">jessie</option>
40 <option value="sid">sid</option>
41 </select>
42 </td>
43 </tr>
44 <tr>
45 <td><label for="Config">--config:</label> </td>
46 <td>
47 <select id="Config" name="config" size="1" >
48 <option value="cinnamon-desktop">Cinnamon Desktop</option>
49 <option value="gnome-desktop">GNOME Desktop</option>
50 <option value="kde-desktop">KDE Desktop</option>
51 <option value="lxde-desktop">LXDE Desktop</option>
52 <option value="mate-desktop">Mate Desktop</option>
53 <option value="rescue">Rescue</option>
54 <option selected value="standard">Standard</option>
55 <option value="xfce-desktop">Xfce Desktop</option>
56 </select>
57 </td>
58 </tr>
59 <tr>
60 <td><label for="Apt">--apt:</label> </td>
61 <td>
62 <select id="Apt" name="apt" size="1" >
63 <option selected value="apt">apt</option>
64 <option value="aptitude">aptitude</option>
65 </select>
66 </td>
67 </tr>
68 <tr>
69 <td><label for="Packages">cgipackages.list.chroot:</label> </td>
70 <td><input id="Packages" name="cgipackages" maxlength="2000" size="50" type="text" /></td>
71 </tr>
72 </table>
73 </div>
74
75 <span id="click_2" onmouseover='javascript:objectOver(this)' onmouseout='javascript:objectOut(this)' onclick='javascript:collapse(2,"<b>Advanced bootstrap options</b>")'>
76 <b>Advanced bootstrap options</b><small>&nbsp;(click to expand)</small>
77 <br />
78 </span>
79
80 <div id="text_2" style='margin-left:0;display:none'>
81 <table>
82 <tr>
83 <td><label for="Architectures">--architectures:</label> </td>
84 <td>
85 <select id="Architectures" name="architectures" size="1">
86 <option value="amd64">amd64</option>
87 <option selected value="i386">i386</option>
88 </select>
89 </td>
90 </tr>
91 <!-- LIVE_DISTRIBUTION -->
92 <!-- LIVE_DISTRIBUTION_CONFIG -->
93 <tr>
94 <td><label for="Archive_Areas">--archive-areas:</label> </td>
95 <td><input id="Archive_Areas" name="archive_areas" maxlength="128" size="50" type="text" value="main" readonly /></td>
96 </tr>
97 </table>
98 </div>
99
100 <span id="click_3" onmouseover='javascript:objectOver(this)' onmouseout='javascript:objectOut(this)' onclick='javascript:collapse(3,"<b>Advanced chroot options</b>")'>
101 <b>Advanced chroot options</b><small>&nbsp;(click to expand)</small>
102 <br />
103 </span>
104
105 <div id="text_3" style='margin-left:0;display:none'>
106 <table>
107 <tr>
108 <td><label for="Chroot_Filesystem">--chroot-filesystem:</label> </td>
109 <td>
110 <select id="Chroot_Filesystem" name="chroot_filesystem" size="1">
111 <option value="ext2">ext2</option>
112 <option value="plain">plain</option>
113 <option selected value="squashfs">squashfs</option>
114 </select>
115 </td>
116 </tr>
117 <!-- LIVE_HOOKS -->
118 <!-- LIVE_INTERACTIVE -->
119 <!-- LIVE_KEYRING_PACKAGES -->
120 <!-- LIVE_LANGUAGE -->
121 <tr>
122 <td><label for="Linux_Flavours">--linux-flavours:</label> </td>
123 <td>
124 <select id="Linux_Flavours" name="linux_flavours" size="1">
125 <option selected value="486">486</option>
126 <option value="686">686</option>
127 <option value="686-pae">686-pae</option>
128 <option value="amd64">amd64</option>
129 <option value="k7">k7</option>
130 <option value="vserver-686">vserver-686</option>
131 <option value="vserver-k7">vserver-k7</option>
132 <option value="xen-686">xen-686</option>
133 </select>
134 </td>
135 </tr>
136 <!-- LIVE_LINUX_PACKAGES -->
137 <tr>
138 <td><label for="Security">--security:</label> </td>
139 <td>
140 <select id="Security" name="security" size="1">
141 <option selected value="true">true</option>
142 <option value="false">false</option>
143 </select>
144 </td>
145 </tr>
146 </table>
147 </div>
148
149 <span id="click_4" onmouseover='javascript:objectOver(this)' onmouseout='javascript:objectOut(this)' onclick='javascript:collapse(4,"<b>Advanced binary options</b>")'>
150 <b>Advanced binary options</b><small>&nbsp;(click to expand)</small>
151 <br />
152 </span>
153
154 <div id="text_4" style='margin-left:0;display:none'>
155 <table>
156 <!-- LIVE_BINARY_IMAGES -->
157 <tr>
158 <td><label for="Apt_Indices">--apt-indices:</label> </td>
159 <td>
160 <select id="Apt_Indices" name="apt_indices" size="1">
161 <option selected value="true">true</option>
162 <option value="false">false</option>
163 </select>
164 </td>
165 </tr>
166 <tr>
167 <td><label for="Bootappend_Live">--bootappend-live:</label> </td>
168 <td><input id="Bootappend_Live" name="bootappend_live" maxlength="256" size="50" type="text" value="" /></td>
169 </tr>
170 <tr>
171 <td><label for="Bootloader">--bootloader:</label> </td>
172 <td>
173 <select id="Bootloader" name="bootloader" size="1">
174 <option value="grub">grub</option>
175 <option value="grub2">grub2</option>
176 <option selected value="syslinux">syslinux</option>
177 </select>
178 </td>
179 </tr>
180 <tr>
181 <td><label for="Debian_Installer">--debian-installer:</label> </td>
182 <td>
183 <select id="Debian_Installer" name="debian_installer" size="1">
184 <option value="true">true</option>
185 <option selected value="false">false</option>
186 </select>
187 </td>
188 </tr>
189 <tr>
190 <td><label for="Bootappend_Install">--bootappend-install:</label> </td>
191 <td><input id="Bootappend_Install" name="bootappend_install" maxlength="256" size="50" type="text" value="" /></td>
192 </tr>
193 <!-- LIVE_GRUB_SPLASH -->
194 <tr>
195 <td><label for="Iso_Application">--iso-application:</label> </td>
196 <td><input id="Iso_Application" name="iso_application" maxlength="128" size="50" type="text" value="Debian Live" /></td>
197 </tr>
198 <tr>
199 <td><label for="Iso_Preparer">--iso-preparer:</label> </td>
200 <td><input id="Iso_Preparer" name="iso_preparer" maxlength="128" size="50" type="text" value="live-build; http://live-systems.org/devel/live-build/" /></td>
201 </tr>
202 <tr>
203 <td><label for="Iso_Publisher">--iso-publisher:</label> </td>
204 <td><input id="Iso_Publisher" name="iso_publisher" maxlength="128" size="50" type="text" value="Live Systems project; http://live-systems.org/; [email protected]" /></td>
205 </tr>
206 <tr>
207 <td><label for="Iso_Volume">--iso-volume:</label> </td>
208 <td><input id="Iso_Volume" name="iso_volume" maxlength="128" size="50" type="text" value="Debian Live DATE" /></td>
209 </tr>
210 <tr>
211 <td><label for="Memtest">--memtest:</label> </td>
212 <td>
213 <select id="Memtest" name="memtest" size="1">
214 <option value="memtest86">memtest86</option>
215 <option selected value="memtest86+">memtest86+</option>
216 <option value="none">none</option>
217 </select>
218 </td>
219 </tr>
220 <tr>
221 <td><label for="Net_Path">--net-path:</label> </td>
222 <td><input id="Net_Path" name="net_path" maxlength="256" size="50" type="text" value="/srv/debian-live" /></td>
223 </tr>
224 <tr>
225 <td><label for="Net_Server">--net-server:</label> </td>
226 <td><input id="Net_Server" name="net_server" maxlength="15" size="50" type="text" value="192.168.1.1" /></td>
227 </tr>
228 <!-- LIVE_SYSLINUX_SPLASH -->
229 </table>
230 </div>
231
232 <span id="click_5" onmouseover='javascript:objectOver(this)' onmouseout='javascript:objectOut(this)' onclick='javascript:collapse(5,"<b>Advanced source options</b>")'>
233 <b>Advanced source options</b><small>&nbsp;(click to expand)</small>
234 <br />
235 </span>
236
237 <div id="text_5" style='margin-left:0;display:none'>
238 <table>
239 <tr>
240 <td><label for="Source">--source:</label> </td>
241 <td>
242 <select id="Source" name="source" size="1">
243 <option value="true">true</option>
244 <option selected value="false">false</option>
245 </select>
246 </td>
247 </tr>
248 <tr>
249 <td><label for="Source_Images">--source-images:</label> </td>
250 <td>
251 <select id="Source_Images" name="source_images" size="1">
252 <option value="iso">iso</option>
253 <option value="net">net</option>
254 <option selected value="tar">tar</option>
255 <option value="hdd">hdd</option>
256 </select>
257 </td>
258 </tr>
259 </table>
260 </div>
261
262 </fieldset>
263
264 <br />
265
266 <input type="reset" value="Reset" />
267 &nbsp;
268 <input type="submit" value="Submit" />
269 &nbsp;
270
271 </form>
+0
-63
templates/cgi/debian/header.html less more
0 <!DOCTYPE html>
1 <html lang="en">
2 <head>
3 <meta charset="utf-8">
4 <meta name="viewport" content="width=device-width, initial-scale=1.0">
5 <meta name="description" content="Live Systems Project">
6 <meta name="author" content="Live Systems Project <[email protected]>">
7 <!-- <meta name="keywords" content="Live Systems, free software, open source software, Debian, GNU, Linux"> -->
8 <link rel="shortcut icon" href="http://live-systems.org/images/logo-32.png">
9
10 <title>Live Systems Project</title>
11
12 <!-- Bootstrap core CSS -->
13 <link href="http://live-systems.org/stuff/bootstrap/css/bootstrap.min.css" rel="stylesheet">
14 <link href="http://live-systems.org/stuff/bootstrap/css/bootstrap-theme.min.css" rel="stylesheet">
15
16 <!-- Custom styles for this template -->
17 <link href="http://live-systems.org/stuff/bootstrap/navbar.css" rel="stylesheet">
18 <link href="http://live-systems.org/stuff/bootstrap/label.css" rel="stylesheet">
19
20 <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
21 <!--[if lt IE 9]>
22 <script src="http://live-systems.org/stuff/html5shiv/html5shiv.min.js"></script>
23 <script src="http://live-systems.org/stuff/respond/respond.min.js"></script>
24 <![endif]-->
25
26 <script type="text/javascript" language="JavaScript">
27 function collapse(x, txt) {
28 var oTemp=document.getElementById("text_"+x);
29 var oClick=document.getElementById("click_"+x);
30 if (oTemp.style.display=="block") {
31 oTemp.style.display="none";
32 oClick.innerHTML=txt+"&nbsp<small>(click to expand)<\/small><br \/>";
33 }
34 else {
35 oTemp.style.display="block";
36 oClick.innerHTML=txt+"&nbsp<small>(click to collapse)<\/small><br \/>";
37 }
38 }
39 </script>
40 </head>
41
42 <body>
43
44 <div class="container">
45
46 <!-- Static navbar -->
47 <div class="navbar navbar-default">
48 <div class="navbar-header">
49 <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
50 <span class="icon-bar"></span>
51 <span class="icon-bar"></span>
52 <span class="icon-bar"></span>
53 </button>
54 <a class="navbar-brand" href="/"><strong>Live</strong> Systems</a>
55 </div>
56 <div class="navbar-collapse collapse">
57 <ul class="nav navbar-nav navbar-right">
58 <li class="active"><a href="/">Build</a></li>
59 <li><a href="http://live-systems.org/">WWW</a></li>
60 </ul>
61 </div><!--/.nav-collapse -->
62 </div>
+0
-18
templates/cgi/debian/mail.txt less more
0 Subject: Live Systems, live-build web-frontend - Build BUILD
1 From: Live Systems live-build web-frontend <[email protected]>
2 To: EMAIL
3
4 Hi,
5
6 This is live-build web-frontend <http://live-build.debian.net/> of the Live Systems project <http://live-systems.org/>.
7
8 Your build BUILD was started DATE_START and ended DATE_END with status 'STATUS'.
9
10 You can see the log file and download the image from <SERVER/BUILD/>.
11
12 Note that builds are removed after 24 hours.
13
14 Feedback about all Live Systems matters can be sent to our mailinglist at [email protected] (no subscription required).
15
16 Have fun,
17 The Live Systems Team
+0
-9
templates/grub/menu.lst less more
0 default 0
1 color cyan/blue white/blue
2 splashimage /boot/grub/splash.xpm.gz
3
4 LINUX_LIVE
5
6 LINUX_INSTALL
7
8 MEMTEST
templates/grub/splash.xpm.gz less more
Binary diff not shown
+0
-12
templates/grub2/grub.cfg less more
0 set default=0
1
2 insmod tga
3 background_image ($root)/boot/grub/splash.tga
4 set color_normal=cyan/blue
5 set color_highlight=white/blue
6
7 LINUX_LIVE
8
9 LINUX_INSTALL
10
11 MEMTEST
templates/grub2/splash.tga less more
Binary diff not shown