summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xfunctions/defaults.sh91
-rw-r--r--manpages/de/lb_config.de.160
-rw-r--r--manpages/en/lb_config.140
-rw-r--r--manpages/po/de/lb_config.1.po727
-rw-r--r--manpages/pot/lb_config.1.pot727
-rwxr-xr-xscripts/build/lb_config115
6 files changed, 1195 insertions, 565 deletions
diff --git a/functions/defaults.sh b/functions/defaults.sh
index 0415e6e3b..93f724f01 100755
--- a/functions/defaults.sh
+++ b/functions/defaults.sh
@@ -295,14 +295,17 @@ Set_defaults ()
case "${LB_MODE}" in
debian)
LB_PARENT_MIRROR_BOOTSTRAP="${LB_PARENT_MIRROR_BOOTSTRAP:-http://ftp.de.debian.org/debian/}"
+ LB_MIRROR_BOOTSTRAP="${LB_MIRROR_BOOTSTRAP:-${LB_PARENT_MIRROR_BOOTSTRAP}}"
;;
emdebian)
LB_PARENT_MIRROR_BOOTSTRAP="${LB_PARENT_MIRROR_BOOTSTRAP:-http://buildd.emdebian.org/grip/}"
+ LB_MIRROR_BOOTSTRAP="${LB_MIRROR_BOOTSTRAP:-${LB_PARENT_MIRROR_BOOTSTRAP}}"
;;
progress)
LB_PARENT_MIRROR_BOOTSTRAP="${LB_PARENT_MIRROR_BOOTSTRAP:-http://cdn.debian.net/debian/}"
+ LB_MIRROR_BOOTSTRAP="${LB_MIRROR_BOOTSTRAP:-http://archive.progress-linux.org/progress/}"
;;
ubuntu)
@@ -315,23 +318,29 @@ Set_defaults ()
LB_PARENT_MIRROR_BOOTSTRAP="${LB_PARENT_MIRROR_BOOTSTRAP:-http://ports.ubuntu.com/}"
;;
esac
+
+ LB_MIRROR_BOOTSTRAP="${LB_MIRROR_BOOTSTRAP:-${LB_PARENT_MIRROR_BOOTSTRAP}}"
;;
esac
LB_PARENT_MIRROR_CHROOT="${LB_PARENT_MIRROR_CHROOT:-${LB_PARENT_MIRROR_BOOTSTRAP}}"
+ LB_MIRROR_CHROOT="${LB_MIRROR_CHROOT:-${LB_MIRROR_BOOTSTRAP}}"
# Setting security mirror to fetch packages from
case "${LB_MODE}" in
debian)
LB_PARENT_MIRROR_CHROOT_SECURITY="${LB_PARENT_MIRROR_CHROOT_SECURITY:-http://security.debian.org/}"
+ LB_MIRROR_CHROOT_SECURITY="${LB_MIRROR_CHROOT_SECURITY:-${LB_PARENT_MIRROR_CHROOT_SECURITY}}"
;;
emdebian)
LB_PARENT_MIRROR_CHROOT_SECURITY="${LB_PARENT_MIRROR_CHROOT_SECURITY:-none}"
+ LB_MIRROR_CHROOT_SECURITY="${LB_MIRROR_CHROOT_SECURITY:-${LB_PARENT_MIRROR_CHROOT_SECURITY}}"
;;
progress)
LB_PARENT_MIRROR_CHROOT_SECURITY="${LB_PARENT_MIRROR_CHROOT_SECURITY:-http://cdn.debian.net/debian-security/}"
+ LB_MIRROR_CHROOT_SECURITY="${LB_MIRROR_CHROOT_SECURITY:-${LB_MIRROR_CHROOT}}"
;;
ubuntu)
@@ -344,13 +353,21 @@ Set_defaults ()
LB_PARENT_MIRROR_CHROOT_SECURITY="${LB_PARENT_MIRROR_CHROOT_SECURITY:-http://ports.ubuntu.com/}"
;;
esac
+
+ LB_MIRROR_CHROOT_SECURITY="${LB_MIRROR_CHROOT_SECURITY:-${LB_PARENT_MIRROR_CHROOT_SECURITY}}"
;;
esac
# Setting volatile mirror to fetch packages from
case "${LB_MODE}" in
- debian|progress)
+ debian)
+ LB_PARENT_MIRROR_CHROOT_VOLATILE="${LB_PARENT_MIRROR_CHROOT_VOLATILE:-${LB_PARENT_MIRROR_CHROOT}}"
+ LB_MIRROR_CHROOT_VOLATILE="${LB_MIRROR_CHROOT_VOLATILE:-${LB_PARENT_MIRROR_CHROOT}}"
+ ;;
+
+ progress)
LB_PARENT_MIRROR_CHROOT_VOLATILE="${LB_PARENT_MIRROR_CHROOT_VOLATILE:-${LB_PARENT_MIRROR_CHROOT}}"
+ LB_MIRROR_CHROOT_VOLATILE="${LB_MIRROR_CHROOT_VOLATILE:-${LB_MIRROR_CHROOT}}"
;;
ubuntu)
@@ -363,10 +380,13 @@ Set_defaults ()
LB_PARENT_MIRROR_CHROOT_VOLATILE="${LB_PARENT_MIRROR_CHROOT_VOLATILE:-http://ports.ubuntu.com/}"
;;
esac
+
+ LB_MIRROR_CHROOT_VOLATILE="${LB_MIRROR_CHROOT_VOLATILE:-${LB_PARENT_MIRROR_CHROOT}}"
;;
*)
LB_PARENT_MIRROR_CHROOT_VOLATILE="${LB_PARENT_MIRROR_CHROOT_VOLATILE:-none}"
+ LB_MIRROR_CHROOT_VOLATILE="${LB_MIRROR_CHROOT_VOLATILE:-none}"
;;
esac
@@ -374,21 +394,34 @@ Set_defaults ()
case "${LB_MODE}" in
debian)
LB_PARENT_MIRROR_CHROOT_BACKPORTS="${LB_PARENT_MIRROR_CHROOT_BACKPORTS:-http://backports.debian.org/debian-backports/}"
+ LB_MIRROR_CHROOT_BACKPORTS="${LB_MIRROR_CHROOT_BACKPORTS:-${LB_PARENT_MIRROR_CHROOT_BACKPORTS}}"
+ ;;
+
+ progress)
+ LB_MIRROR_CHROOT_BACKPORTS="${LB_MIRROR_CHROOT_BACKPORTS:-${LB_MIRROR_CHROOT}}"
;;
*)
LB_PARENT_MIRROR_CHROOT_BACKPORTS="${LB_PARENT_MIRROR_CHROOT_BACKPORTS:-none}"
+ LB_MIRROR_CHROOT_BACKPORTS="${LB_MIRROR_CHROOT_BACKPORTS:-none}"
;;
esac
# Setting mirror which ends up in the image
case "${LB_MODE}" in
- debian|progress)
+ debian)
LB_PARENT_MIRROR_BINARY="${LB_PARENT_MIRROR_BINARY:-http://cdn.debian.net/debian/}"
+ LB_MIRROR_BINARY="${LB_MIRROR_BINARY:-${LB_PARENT_MIRROR_BINARY}}"
+ ;;
+
+ progress)
+ LB_PARENT_MIRROR_BINARY="${LB_PARENT_MIRROR_BINARY:-http://cdn.debian.net/debian/}"
+ LB_MIRROR_BINARY="${LB_MIRROR_BINARY:-${LB_MIRROR_CHROOT}}"
;;
emdebian)
LB_PARENT_MIRROR_BINARY="${LB_PARENT_MIRROR_BINARY:-http://buildd.emdebian.org/grip/}"
+ LB_MIRROR_BINARY="${LB_MIRROR_BINARY:-${LB_PARENT_MIRROR_BINARY}}"
;;
ubuntu)
@@ -401,6 +434,8 @@ Set_defaults ()
LB_PARENT_MIRROR_BINARY="${LB_PARENT_MIRROR_BINARY:-http://ports.ubuntu.com/}"
;;
esac
+
+ LB_MIRROR_BINARY="${LB_MIRROR_BINARY:-${LB_PARENT_MIRROR_BINARY}}"
;;
esac
@@ -408,14 +443,17 @@ Set_defaults ()
case "${LB_MODE}" in
debian)
LB_PARENT_MIRROR_BINARY_SECURITY="${LB_PARENT_MIRROR_BINARY_SECURITY:-http://security.debian.org/}"
+ LB_MIRROR_BINARY_SECURITY="${LB_MIRROR_BINARY_SECURITY:-${LB_PARENT_MIRROR_BINARY_SECURITY}}"
;;
emdebian)
LB_PARENT_MIRROR_BINARY_SECURITY="${LB_PARENT_MIRROR_BINARY_SECURITY:-none}"
+ LB_MIRROR_BINARY_SECURITY="${LB_MIRROR_BINARY_SECURITY:-${LB_PARENT_MIRROR_BINARY_SECURITY}}"
;;
progress)
LB_PARENT_MIRROR_BINARY_SECURITY="${LB_PARENT_MIRROR_BINARY_SECURITY:-http://cdn.debian.net/debian-security/}"
+ LB_MIRROR_BINARY_SECURITY="${LB_MIRROR_BINARY_SECURITY:-${LB_MIRROR_CHROOT}}"
;;
ubuntu)
@@ -428,13 +466,21 @@ Set_defaults ()
LB_PARENT_MIRROR_BINARY_SECURITY="${LB_PARENT_MIRROR_BINARY_SECURITY:-http://ports.ubuntu.com/}"
;;
esac
+
+ LB_MIRROR_BINARY_SECURITY="${LB_MIRROR_BINARY_SECURITY:-${LB_PARENT_MIRROR_BINARY_SECURITY}}"
;;
esac
# Setting volatile mirror which ends up in the image
case "${LB_MODE}" in
- debian|progress)
+ debian)
+ LB_PARENT_MIRROR_BINARY_VOLATILE="${LB_PARENT_MIRROR_BINARY_VOLATILE:-${LB_PARENT_MIRROR_BINARY}}"
+ LB_MIRROR_BINARY_VOLATILE="${LB_MIRROR_BINARY_VOLATILE:-${LB_PARENT_MIRROR_BINARY}}"
+ ;;
+
+ progress)
LB_PARENT_MIRROR_BINARY_VOLATILE="${LB_PARENT_MIRROR_BINARY_VOLATILE:-${LB_PARENT_MIRROR_BINARY}}"
+ LB_MIRROR_BINARY_VOLATILE="${LB_MIRROR_BINARY_VOLATILE:-none}"
;;
ubuntu)
@@ -458,14 +504,31 @@ Set_defaults ()
case "${LB_MODE}" in
debian)
LB_PARENT_MIRROR_BINARY_BACKPORTS="${LB_PARENT_MIRROR_BINARY_BACKPORTS:-http://backports.debian.org/debian-backports/}"
+ LB_MIRROR_BINARY_BACKPORTS="${LB_MIRROR_BINARY_BACKPORTS:-${LB_PARENT_MIRROR_BINARY_BACKPORTS}}"
+ ;;
+
+ progress)
+ LB_PARENT_MIRROR_BINARY_BACKPORTS="${LB_PARENT_MIRROR_BINARY_BACKPORTS:-none}"
+ LB_MIRROR_BINARY_BACKPORTS="${LB_MIRROR_BINARY_BACKPORTS:-${LB_MIRROR_CHROOT}}"
;;
*)
LB_PARENT_MIRROR_BINARY_BACKPORTS="${LB_PARENT_MIRROR_BINARY_BACKPORTS:-none}"
+ LB_MIRROR_BINARY_BACKPORTS="${LB_MIRROR_BINARY_BACKPORTS:-${LB_PARENT_MIRROR_BINARY_BACKPORTS}}"
;;
esac
- LB_PARENT_MIRROR_DEBIAN_INSTALLER="${LB_PARENT_MIRROR_DEBIAN_INSTALLER:-${LB_PARENT_MIRROR_BOOTSTRAP}}"
+ case "${LB_MODE}" in
+ progress)
+ LB_PARENT_MIRROR_DEBIAN_INSTALLER="${LB_PARENT_MIRROR_DEBIAN_INSTALLER:-${LB_PARENT_MIRROR_BOOTSTRAP}}"
+ LB_MIRROR_DEBIAN_INSTALLER="${LB_MIRROR_DEBIAN_INSTALLER:-${LB_MIRROR_CHROOT}}"
+ ;;
+
+ *)
+ LB_PARENT_MIRROR_DEBIAN_INSTALLER="${LB_PARENT_MIRROR_DEBIAN_INSTALLER:-${LB_PARENT_MIRROR_BOOTSTRAP}}"
+ LB_MIRROR_DEBIAN_INSTALLER="${LB_MIRROR_DEBIAN_INSTALLER:-${LB_PARENT_MIRROR_DEBIAN_INSTALLER}}"
+ ;;
+ esac
if [ -z "${LB_REPOSITORIES}" ]
then
@@ -508,17 +571,13 @@ Set_defaults ()
# Setting keyring packages
case "${LB_MODE}" in
- debian)
- LB_KEYRING_PACKAGES="${LB_KEYRING_PACKAGES:-debian-archive-keyring}"
+ ubuntu)
+ LB_KEYRING_PACKAGES="${LB_KEYRING_PACKAGES:-ubuntu-keyring}"
;;
- emdebian)
+ *)
LB_KEYRING_PACKAGES="${LB_KEYRING_PACKAGES:-debian-archive-keyring}"
;;
-
- ubuntu)
- LB_KEYRING_PACKAGES="${LB_KEYRING_PACKAGES:-ubuntu-keyring}"
- ;;
esac
# Setting language string
@@ -710,19 +769,9 @@ Set_defaults ()
LB_TASKS="$(echo ${LB_TASKS} | sed -e 's| ||g')"
# Setting security updates option
- if [ "${LB_PARENT_MIRROR_CHROOT_SECURITY}" = "none" ] || [ "${LB_PARENT_MIRROR_BINARY_SECURITY}" = "none" ]
- then
- LB_SECURITY="false"
- fi
-
LB_SECURITY="${LB_SECURITY:-true}"
# Setting volatile updates option
- if [ "${LB_PARENT_MIRROR_CHROOT_VOLATILE}" = "none" ] || [ "${LB_PARENT_MIRROR_BINARY_VOLATILE}" = "none" ]
- then
- LB_VOLATILE="false"
- fi
-
LB_VOLATILE="${LB_VOLATILE:-true}"
## config/binary
diff --git a/manpages/de/lb_config.de.1 b/manpages/de/lb_config.de.1
index cf3ff78d0..812f52f63 100644
--- a/manpages/de/lb_config.de.1
+++ b/manpages/de/lb_config.de.1
@@ -162,6 +162,26 @@
.br
[\fB\-\-parent\-mirror\-debian\-installer\fP \fIURL\fP]
.br
+ [\fB\-\-mirror\-bootstrap\fP \fIURL\fP]
+.br
+ [\fB\-\-mirror\-chroot\fP \fIURL\fP]
+.br
+ [\fB\-\-mirror\-chroot\-security\fP \fIURL\fP]
+.br
+ [\fB\-\-mirror\-chroot\-volatile\fP \fIURL\fP]
+.br
+ [\fB\-\-mirror\-chroot\-backports\fP \fIURL\fP]
+.br
+ [\fB\-\-mirror\-binary\fP \fIURL\fP]
+.br
+ [\fB\-\-mirror\-binary\-security\fP \fIURL\fP]
+.br
+ [\fB\-\-mirror\-binary\-volatile\fP \fIURL\fP]
+.br
+ [\fB\-\-mirror\-binary\-backports\fP \fIURL\fP]
+.br
+ [\fB\-\-mirror\-debian\-installer\fP \fIURL\fP]
+.br
[\fB\-\-mode\fP debian|emdebian|ubuntu]
.br
[\fB\-\-net\-root\-filesystem\fP nfs|cfs]
@@ -598,6 +618,46 @@ configured in the final image. By default,
sets the location of the mirror that will be used to fetch the debian
installer images. By default, this points to the same mirror used to build
the live system, i.e. the value of \-\-parent\-mirror\-bootstrap.
+.IP "\-m|\fB\-\-mirror\-bootstrap\fP \fIURL\fP" 4
+sets the location of the debian package mirror that should be used to
+bootstrap the derivative from. This defaults to
+http://ftp.de.debian.org/debian/ which may not be a good default if you live
+outside of Europe.
+.IP "\fB\-\-mirror\-chroot\fP \fIURL\fP" 4
+sets the location of the debian package mirror that will be used to fetch
+the packages of the derivative in order to build the live system. By
+default, this is set to the value of \-\-mirror\-bootstrap.
+.IP "\fB\-\-mirror\-chroot\-security\fP \fIURL\fP" 4
+sets the location of the debian security package mirror that will be used to
+fetch the packages of the derivative in order to build the live system. By
+default, this points to http://security.debian.org/debian/.
+.IP "\fB\-\-mirror\-chroot\-volatile\fP \fIURL\fP" 4
+sets the location of the debian volatile package mirror that will be used to
+fetch packages of the derivative in order to build the live system. By
+default, this is set to the value of \-\-mirror\-chroot.
+.IP "\fB\-\-mirror\-chroot\-backports\fP \fIURL\fP" 4
+sets the location of the debian backports package mirror that will be used
+to fetch packages of the derivative in order to build the live system. By
+default, this points to http://backports.debian.org/debian\-backports/.
+.IP "\fB\-\-mirror\-binary\fP \fIURL\fP" 4
+sets the location of the derivative 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.
+.IP "\fB\-\-mirror\-binary\-security\fP \fIURL\fP" 4
+sets the location of the derivatives security package mirror that should end
+up configured in the final image.
+.IP "\fB\-\-mirror\-binary\-volatile\fP \fIURL\fP" 4
+sets the location of the derivatives volatile package mirror that should end
+up configured in the final image.
+.IP "\fB\-\-mirror\-binary\-backports\fP \fIURL\fP" 4
+sets the location of the derivatives backports package mirror that should
+end up configured in the final image.
+.IP "\fB\-\-mirror\-debian\-installer\fP \fIURL\fP" 4
+sets the location of the mirror that will be used to fetch the debian
+installer images of the derivative. By default, this points to the same
+mirror used to build the live system, i.e. the value of \-\-mirror\-bootstrap.
.IP "\fB\-\-mode\fP debian|emdebian|ubuntu" 4
defines a global mode to load project specific defaults. By default this is
set to debian.
diff --git a/manpages/en/lb_config.1 b/manpages/en/lb_config.1
index e178b47f1..bc2de938d 100644
--- a/manpages/en/lb_config.1
+++ b/manpages/en/lb_config.1
@@ -157,6 +157,26 @@
.br
[\fB\-\-parent\-mirror\-debian\-installer\fR \fIURL\fR]
.br
+ [\fB\-\-mirror\-bootstrap\fR \fIURL\fR]
+.br
+ [\fB\-\-mirror\-chroot\fR \fIURL\fR]
+.br
+ [\fB\-\-mirror\-chroot\-security\fR \fIURL\fR]
+.br
+ [\fB\-\-mirror\-chroot\-volatile\fR \fIURL\fR]
+.br
+ [\fB\-\-mirror\-chroot\-backports\fR \fIURL\fR]
+.br
+ [\fB\-\-mirror\-binary\fR \fIURL\fR]
+.br
+ [\fB\-\-mirror\-binary\-security\fR \fIURL\fR]
+.br
+ [\fB\-\-mirror\-binary\-volatile\fR \fIURL\fR]
+.br
+ [\fB\-\-mirror\-binary\-backports\fR \fIURL\fR]
+.br
+ [\fB\-\-mirror\-debian\-installer\fR \fIURL\fR]
+.br
[\fB\-\-mode\fR debian|emdebian|ubuntu]
.br
[\fB\-\-net\-root\-filesystem\fR nfs|cfs]
@@ -383,6 +403,26 @@ sets the location of the debian volatile package mirror that should end up confi
sets the location of the debian backports package mirror that should end up configured in the final image. By default, 'http://backports.debian.org/debian-backports/' is used.
.IP "\fB\-\-parent\-mirror\-debian\-installer\fR \fIURL\fR" 4
sets the location of the mirror that will be used to fetch the debian installer images. By default, this points to the same mirror used to build the live system, i.e. the value of \-\-parent\-mirror\-bootstrap.
+.IP "\-m|\fB\-\-mirror\-bootstrap\fR \fIURL\fR" 4
+sets the location of the debian package mirror that should be used to bootstrap the derivative from. This defaults to http://ftp.de.debian.org/debian/ which may not be a good default if you live outside of Europe.
+.IP "\fB\-\-mirror\-chroot\fR \fIURL\fR" 4
+sets the location of the debian package mirror that will be used to fetch the packages of the derivative in order to build the live system. By default, this is set to the value of \-\-mirror\-bootstrap.
+.IP "\fB\-\-mirror\-chroot\-security\fR \fIURL\fR" 4
+sets the location of the debian security package mirror that will be used to fetch the packages of the derivative in order to build the live system. By default, this points to http://security.debian.org/debian/.
+.IP "\fB\-\-mirror\-chroot\-volatile\fR \fIURL\fR" 4
+sets the location of the debian volatile package mirror that will be used to fetch packages of the derivative in order to build the live system. By default, this is set to the value of \-\-mirror\-chroot.
+.IP "\fB\-\-mirror\-chroot\-backports\fR \fIURL\fR" 4
+sets the location of the debian backports package mirror that will be used to fetch packages of the derivative in order to build the live system. By default, this points to http://backports.debian.org/debian-backports/.
+.IP "\fB\-\-mirror\-binary\fR \fIURL\fR" 4
+sets the location of the derivative 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.
+.IP "\fB\-\-mirror\-binary\-security\fR \fIURL\fR" 4
+sets the location of the derivatives security package mirror that should end up configured in the final image.
+.IP "\fB\-\-mirror\-binary\-volatile\fR \fIURL\fR" 4
+sets the location of the derivatives volatile package mirror that should end up configured in the final image.
+.IP "\fB\-\-mirror\-binary\-backports\fR \fIURL\fR" 4
+sets the location of the derivatives backports package mirror that should end up configured in the final image.
+.IP "\fB\-\-mirror\-debian\-installer\fR \fIURL\fR" 4
+sets the location of the mirror that will be used to fetch the debian installer images of the derivative. By default, this points to the same mirror used to build the live system, i.e. the value of \-\-mirror\-bootstrap.
.IP "\fB\-\-mode\fR debian|emdebian|ubuntu" 4
defines a global mode to load project specific defaults. By default this is set to debian.
.IP "\fB\-\-net\-root\-filesystem\fR nfs|cfs" 4
diff --git a/manpages/po/de/lb_config.1.po b/manpages/po/de/lb_config.1.po
index 33472a197..62b6f5dd2 100644
--- a/manpages/po/de/lb_config.1.po
+++ b/manpages/po/de/lb_config.1.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-02-14 13:10+0100\n"
+"POT-Creation-Date: 2011-02-14 13:48+0100\n"
"PO-Revision-Date: 2011-01-02 01:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@@ -245,7 +245,7 @@ msgstr ""
#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:227 en/lb_local.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
@@ -281,7 +281,7 @@ msgstr ""
#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:236
+#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
@@ -318,7 +318,7 @@ msgstr ""
#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:466
+#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
@@ -356,7 +356,7 @@ msgstr ""
#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:473
+#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
@@ -393,7 +393,7 @@ msgstr ""
#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:475
+#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
@@ -429,7 +429,7 @@ msgstr ""
#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:477
+#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
@@ -465,7 +465,7 @@ msgstr ""
#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:478
+#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
@@ -502,7 +502,7 @@ msgstr ""
#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:480
+#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
@@ -541,7 +541,7 @@ msgstr ""
#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:481
+#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
@@ -578,7 +578,7 @@ msgstr ""
#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:483
+#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
@@ -618,7 +618,7 @@ msgstr ""
#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:484
+#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
@@ -655,7 +655,7 @@ msgstr ""
#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:485
+#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
@@ -1055,172 +1055,222 @@ msgstr ""
#. type: Plain text
#: en/lb_config.1:161
-msgid " [B<--mode> debian|emdebian|ubuntu]"
+msgid " [B<--mirror-bootstrap> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:163
-msgid " [B<--net-root-filesystem> nfs|cfs]"
+msgid " [B<--mirror-chroot> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:165
-msgid " [B<--net-root-mountoptions> I<OPTIONS>]"
+msgid " [B<--mirror-chroot-security> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:167
-msgid " [B<--net-root-path> I<PATH>]"
+msgid " [B<--mirror-chroot-volatile> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:169
-msgid " [B<--net-root-server> I<IP>|I<HOSTNAME>]"
+msgid " [B<--mirror-chroot-backports> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:171
-msgid " [B<--net-cow-filesystem> nfs|cfs]"
+msgid " [B<--mirror-binary> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:173
-msgid " [B<--net-cow-mountoptions> I<OPTIONS>]"
+msgid " [B<--mirror-binary-security> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:175
-msgid " [B<--net-cow-path> I<PATH>]"
+msgid " [B<--mirror-binary-volatile> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:177
-msgid " [B<--net-cow-server> I<IP>|I<HOSTNAME>]"
+msgid " [B<--mirror-binary-backports> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:179
-msgid " [B<--net-tarball> true|false]"
+msgid " [B<--mirror-debian-installer> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:181
-msgid " [-p|B<--package-lists> I<LIST>|I<\"LISTS\">]"
+msgid " [B<--mode> debian|emdebian|ubuntu]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:183
-msgid " [B<--packages> I<PACKAGE>|I<\"PACKAGES\">]"
+msgid " [B<--net-root-filesystem> nfs|cfs]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:185
-msgid " [B<--quiet>]"
+msgid " [B<--net-root-mountoptions> I<OPTIONS>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:187
-msgid " [-r|B<--repositories >I<REPOSITORY>|I<\"REPOSITORIES\">]"
+msgid " [B<--net-root-path> I<PATH>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:189
-msgid " [B<--root-command> sudo]"
+msgid " [B<--net-root-server> I<IP>|I<HOSTNAME>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:191
-msgid " [B<--use-fakeroot> true|false]"
+msgid " [B<--net-cow-filesystem> nfs|cfs]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:193
-msgid " [B<--archive-areas> I<ARCHIVE_AREA>|I<\"ARCHIVE_AREAS\">]"
+msgid " [B<--net-cow-mountoptions> I<OPTIONS>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:195
-msgid " [B<--security> true|false]"
+msgid " [B<--net-cow-path> I<PATH>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:197
-msgid " [B<--source> true|false]"
+msgid " [B<--net-cow-server> I<IP>|I<HOSTNAME>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:199
-msgid " [-s|B<--source-images> iso|net|tar|usb-hdd]"
+msgid " [B<--net-tarball> true|false]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:201
-msgid " [B<--syslinux-splash> I<FILE>]"
+msgid " [-p|B<--package-lists> I<LIST>|I<\"LISTS\">]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:203
-msgid " [B<--syslinux-timeout> I<SECONDS>]"
+msgid " [B<--packages> I<PACKAGE>|I<\"PACKAGES\">]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:205
-msgid " [B<--syslinux-menu> true|false]"
+msgid " [B<--quiet>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:207
-msgid " [B<--tasksel> aptitude|tasksel]"
+msgid " [-r|B<--repositories >I<REPOSITORY>|I<\"REPOSITORIES\">]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:209
-msgid " [B<--tasks> I<TASK>|\"I<TASKS>\"]"
+msgid " [B<--root-command> sudo]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:211
-msgid " [B<--templates> I<PATH>]"
+msgid " [B<--use-fakeroot> true|false]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:213
-msgid " [B<--virtual-root-size >I<MB>]"
+msgid " [B<--archive-areas> I<ARCHIVE_AREA>|I<\"ARCHIVE_AREAS\">]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:215
-msgid " [B<--volatile> true|false]"
+msgid " [B<--security> true|false]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:217
-msgid " [B<--backports> true|false]"
+msgid " [B<--source> true|false]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:219
-msgid " [B<--exposed-root> true|false]"
+msgid " [-s|B<--source-images> iso|net|tar|usb-hdd]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:221
-msgid " [B<--username> I<NAME>]"
+msgid " [B<--syslinux-splash> I<FILE>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:223
+msgid " [B<--syslinux-timeout> I<SECONDS>]"
+msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:225
+msgid " [B<--syslinux-menu> true|false]"
+msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:227
+msgid " [B<--tasksel> aptitude|tasksel]"
+msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:229
+msgid " [B<--tasks> I<TASK>|\"I<TASKS>\"]"
+msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:231
+msgid " [B<--templates> I<PATH>]"
+msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:233
+msgid " [B<--virtual-root-size >I<MB>]"
+msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:235
+msgid " [B<--volatile> true|false]"
+msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:237
+msgid " [B<--backports> true|false]"
+msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:239
+msgid " [B<--exposed-root> true|false]"
+msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:241
+msgid " [B<--username> I<NAME>]"
+msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:243
msgid " [B<--verbose>]"
msgstr ""
#. FIXME
#. type: Plain text
-#: en/lb_config.1:226
+#: en/lb_config.1:246
msgid " [B<--win32-loader true|false]>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:229
+#: en/lb_config.1:249
msgid ""
"B<lb config> is a high-level command (porcelain) of I<live-build>(7), the "
"Debian Live tool suite."
@@ -1228,7 +1278,7 @@ msgstr ""
#. FIXME
#. type: Plain text
-#: en/lb_config.1:232
+#: en/lb_config.1:252
msgid ""
"B<lb config> populates the configuration directory for live-build. By "
"default, this directory is named 'config' and is created in the current "
@@ -1237,7 +1287,7 @@ msgstr ""
#. FIXME
#. type: Plain text
-#: en/lb_config.1:235
+#: en/lb_config.1:255
msgid ""
"Note: Currently B<lb config> tries to be smart and sets defaults for some "
"options depending on the setting of other options (e.g. which linux packages "
@@ -1253,7 +1303,7 @@ msgid ""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:238
+#: en/lb_config.1:258
msgid ""
"In addition to its specific options B<lb config> understands all generic "
"live-build options. See I<live-build>(7) for a complete list of all generic "
@@ -1262,26 +1312,26 @@ msgstr ""
#. FIXME
#. type: IP
-#: en/lb_config.1:240
+#: en/lb_config.1:260
#, no-wrap
msgid "B<--apt> apt|aptitude"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:242
+#: en/lb_config.1:262
msgid ""
"defines if apt-get or aptitude is used to install packages when building the "
"image. The default is apt."
msgstr ""
#. type: IP
-#: en/lb_config.1:242
+#: en/lb_config.1:262
#, no-wrap
msgid "B<--apt-ftp-proxy> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:244
+#: en/lb_config.1:264
msgid ""
"sets the ftp proxy to be used by apt. By default, this is empty but if the "
"host has the environment variable ftp_proxy set, apt-ftp-proxy gets "
@@ -1289,13 +1339,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:244
+#: en/lb_config.1:264
#, no-wrap
msgid "B<--apt-http-proxy> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:246
+#: en/lb_config.1:266
msgid ""
"sets the http proxy to be used by apt. By default, this is empty but if the "
"host has the environment variable http_proxy set, apt-http-proxy gets "
@@ -1303,26 +1353,26 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:246
+#: en/lb_config.1:266
#, no-wrap
msgid "B<--apt-indices> true|false|none"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:248
+#: en/lb_config.1:268
msgid ""
"defines if the resulting images should have apt indices or not and defaults "
"to true. If set to none, no indices are included at all."
msgstr ""
#. type: IP
-#: en/lb_config.1:248
+#: en/lb_config.1:268
#, no-wrap
msgid "B<--apt-options> I<OPTION>|\"I<OPTIONS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:250
+#: en/lb_config.1:270
msgid ""
"defines the default options that will be appended to every apt call that is "
"made inside chroot during the building of the image. By default, this is set "
@@ -1330,13 +1380,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:250
+#: en/lb_config.1:270
#, no-wrap
msgid "B<--aptitude-options> I<OPTION>|\"I<OPTIONS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:252
+#: en/lb_config.1:272
msgid ""
"defines the default options that will be appended to every aptitude call "
"that is made inside chroot during building of the image. By default, this is "
@@ -1344,13 +1394,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:252
+#: en/lb_config.1:272
#, no-wrap
msgid "B<--apt-pipeline> I<DEPTH>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:254
+#: en/lb_config.1:274
msgid ""
"sets the depth of the apt/aptitude pipeline. In cases where the remote "
"server is not RFC conforming or buggy (such as Squid 2.0.2) this option can "
@@ -1362,38 +1412,38 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:254
+#: en/lb_config.1:274
#, no-wrap
msgid "B<--apt-recommends> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:256
+#: en/lb_config.1:276
msgid ""
"defines if apt should install recommended packages automatically. By "
"default, this is true except in emdebian mode."
msgstr ""
#. type: IP
-#: en/lb_config.1:256
+#: en/lb_config.1:276
#, no-wrap
msgid "B<--apt-secure> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:258
+#: en/lb_config.1:278
msgid ""
"defines if apt should check repository signatures. This is true by default."
msgstr ""
#. type: IP
-#: en/lb_config.1:258
+#: en/lb_config.1:278
#, no-wrap
msgid "-a|B<--architectures> I<ARCHITECTURE>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:260
+#: en/lb_config.1:280
msgid ""
"defines the architecture of the to be build image. By default, this is set "
"to the host architecture. Note that you cannot crossbuild for another "
@@ -1404,13 +1454,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:260
+#: en/lb_config.1:280
#, no-wrap
msgid "-b|B<--binary-images> iso|iso-hybrid|net|tar|usb-hdd"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:262
+#: en/lb_config.1:282
msgid ""
"defines the image type to build. By default, for images using syslinux this "
"is set to iso-hybrid to build CD/DVD images that may also be used like usb-"
@@ -1418,13 +1468,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:262
+#: en/lb_config.1:282
#, no-wrap
msgid "B<--binary-filesystem> fat16|fat32|ext2"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:264
+#: en/lb_config.1:284
msgid ""
"defines the filesystem to be used in the image type. This only has an effect "
"if the selected binary image type does allow to choose a filesystem. For "
@@ -1437,24 +1487,24 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:264
+#: en/lb_config.1:284
#, no-wrap
msgid "B<--bootappend-install> I<PARAMETER>|\"I<PARAMETERS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:266
+#: en/lb_config.1:286
msgid "sets boot parameters specific to debian-installer, if included."
msgstr ""
#. type: IP
-#: en/lb_config.1:266
+#: en/lb_config.1:286
#, no-wrap
msgid "B<--bootappend-live> I<PARAMETER>|\"I<PARAMETERS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:268
+#: en/lb_config.1:288
msgid ""
"sets boot parameters specific to debian-live. A complete list of boot "
"parameters can be found, for etch, in the manpage of casper, for all other "
@@ -1463,13 +1513,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:268
+#: en/lb_config.1:288
#, no-wrap
msgid "B<--bootloader> grub|syslinux|yaboot"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:270
+#: en/lb_config.1:290
msgid ""
"defines which bootloader is beeing used in the generated image. This has "
"only an effect if the selected binary image type does allow to choose the "
@@ -1482,13 +1532,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:270
+#: en/lb_config.1:290
#, no-wrap
msgid "B<--bootstrap> cdebootstrap|cdebootstrap-static|debootstrap|copy"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:272
+#: en/lb_config.1:292
msgid ""
"defines which program is used to bootstrap the debian chroot, default is "
"debootstrap. Note that if you set the bootstrap program to copy, then your "
@@ -1498,13 +1548,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:272
+#: en/lb_config.1:292
#, no-wrap
msgid "B<--bootstrap-config> I<FILE>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:274
+#: en/lb_config.1:294
msgid ""
"sets a custom configuration file for the boostrap programm of choice and is "
"empty by default. Refere to the documentation of debootstrap or cdebootstrap "
@@ -1513,13 +1563,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:274
+#: en/lb_config.1:294
#, no-wrap
msgid "-f|B<--bootstrap-flavour> minimal|standard"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:276
+#: en/lb_config.1:296
msgid ""
"defines if the bootstrap program should bootstrap the standard system (all "
"packages of priority required and important, which is the default) or a "
@@ -1527,39 +1577,39 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:276
+#: en/lb_config.1:296
#, no-wrap
msgid "B<--bootstrap-keyring> I<PACKAGE>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:278
+#: en/lb_config.1:298
msgid ""
"sets the archive keyring package to be used. Default is debian-archive-"
"keyring."
msgstr ""
#. type: IP
-#: en/lb_config.1:278
+#: en/lb_config.1:298
#, no-wrap
msgid "B<--cache> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:280
+#: en/lb_config.1:300
msgid ""
"defines globally if any cache should be used at all. Different caches can be "
"controled through the their own options."
msgstr ""
#. type: IP
-#: en/lb_config.1:280
+#: en/lb_config.1:300
#, no-wrap
msgid "B<--cache-indices> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:282
+#: en/lb_config.1:302
msgid ""
"defines if downloaded package indices and lists should be cached which is "
"false by default. Enabling it would allow to rebuild an image completely "
@@ -1567,13 +1617,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:282
+#: en/lb_config.1:302
#, no-wrap
msgid "B<--cache-packages> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:284
+#: en/lb_config.1:304
msgid ""
"defines if downloaded packages files should be cached which is true by "
"default. Disabling it does save space consumtion in your build directory, "
@@ -1584,13 +1634,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:284
+#: en/lb_config.1:304
#, no-wrap
msgid "B<--cache-stages> true|false|I<STAGE>|\"I<STAGES>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:286
+#: en/lb_config.1:306
msgid ""
"sets which stages should be cached. By default set to bootstrap. As an "
"exception to the normal stage names, also rootfs can be used here which does "
@@ -1600,13 +1650,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:286
+#: en/lb_config.1:306
#, no-wrap
msgid "B<--checksums> md5|sha1|sha256|none"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:288
+#: en/lb_config.1:308
msgid ""
"defines if the binary image should contain a file called md5sums.txt, "
"sha1sums.txt and/or sha256sums.txt. These lists all files on the image "
@@ -1618,26 +1668,26 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:288
+#: en/lb_config.1:308
#, no-wrap
msgid "B<--compression> bzip2|gzip|lzip|none"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:290
+#: en/lb_config.1:310
msgid ""
"defines the compression program to be used to compress tarballs. Defaults to "
"gzip."
msgstr ""
#. type: IP
-#: en/lb_config.1:290
+#: en/lb_config.1:310
#, no-wrap
msgid "B<--build-with-chroot> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:292
+#: en/lb_config.1:312
msgid ""
"defines whetever live-build should use the tools from within the chroot to "
"build the binary image or not by using and including the host systems tools. "
@@ -1652,13 +1702,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:292
+#: en/lb_config.1:312
#, no-wrap
msgid "B<--chroot-filesystem> ext2|ext3|squashfs|plain|jffs2"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:294
+#: en/lb_config.1:314
msgid ""
"defines which filesystem type should be used for the root filesystem image. "
"If you use plain, then no filesystem image is created and the root "
@@ -1669,39 +1719,39 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:294
+#: en/lb_config.1:314
#, no-wrap
msgid "B<--clean>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:296
+#: en/lb_config.1:316
msgid ""
"minimizes config directory by automatically removing unused and thus empty "
"subdirectories."
msgstr ""
#. type: IP
-#: en/lb_config.1:296
+#: en/lb_config.1:316
#, no-wrap
msgid "-c|B<--conffile> I<FILE>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:298
+#: en/lb_config.1:318
msgid ""
"using a user specified alternative configuration file in addition to the "
"normally used one in the config directory."
msgstr ""
#. type: IP
-#: en/lb_config.1:298
+#: en/lb_config.1:318
#, no-wrap
msgid "B<--debconf-frontend> dialog|editor|noninteractive|readline"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:300
+#: en/lb_config.1:320
msgid ""
"defines what value the debconf frontend should be set to inside the chroot. "
"Note that setting it to anything by noninteractive, which is the default, "
@@ -1709,13 +1759,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:300
+#: en/lb_config.1:320
#, no-wrap
msgid "B<--debconf-nowarnings> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:302
+#: en/lb_config.1:322
msgid ""
"defines if warnings of debconf should be displayed or not. Warnings from "
"debconf are generally very rare and by default, we skipp them, if any, in "
@@ -1723,13 +1773,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:302
+#: en/lb_config.1:322
#, no-wrap
msgid "B<--debconf-priority> low|medium|high|critical"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:304
+#: en/lb_config.1:324
msgid ""
"defines what value the debconf priority shoul dbe set to inside the chroot. "
"By default, it is set to critical, which means that almost no questions are "
@@ -1738,13 +1788,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:304
+#: en/lb_config.1:324
#, no-wrap
msgid "B<--debian-installer> true|cdrom|netinst|netboot|businesscard|live|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:306
+#: en/lb_config.1:326
msgid ""
"defines which type, if any, of the debian-installer should be included in "
"the resulting binary image. By default, no installer is included. All "
@@ -1756,13 +1806,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:306
+#: en/lb_config.1:326
#, no-wrap
msgid "B<--debian-installer-distribution> daily|I<CODENAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:308
+#: en/lb_config.1:328
msgid ""
"defines the distribution where the debian-installer files should be taken "
"out from. Normally, this should be set to the same distribution as the live "
@@ -1771,26 +1821,26 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:308
+#: en/lb_config.1:328
#, no-wrap
msgid "B<--debian-installer-preseedfile> I<FILE>|I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:310
+#: en/lb_config.1:330
msgid ""
"sets the filename or URL for an optionally used and included preseeding file "
"for debian-installer."
msgstr ""
#. type: IP
-#: en/lb_config.1:310
+#: en/lb_config.1:330
#, no-wrap
msgid "B<--debian-installer-gui> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:312
+#: en/lb_config.1:332
msgid ""
"defines if the debian-installer graphical GTK interface should be true or "
"not. In Debian mode and for most versions of Ubuntu, this option is true, "
@@ -1798,60 +1848,60 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:312 en/live-build.7:36
+#: en/lb_config.1:332 en/live-build.7:36
#, no-wrap
msgid "B<--debug>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:314
+#: en/lb_config.1:334
msgid "turn on debugging informational messages."
msgstr ""
#. type: IP
-#: en/lb_config.1:314
+#: en/lb_config.1:334
#, no-wrap
msgid "-d|B<--distribution> I<CODENAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:316
+#: en/lb_config.1:336
msgid "defines the distribution of the resulting live system."
msgstr ""
#. type: IP
-#: en/lb_config.1:316
+#: en/lb_config.1:336
#, no-wrap
msgid "-d|B<--parent-distribution> I<CODENAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:318
+#: en/lb_config.1:338
msgid ""
"defines the parent distribution for derivatives of the resulting live system."
msgstr ""
#. type: IP
-#: en/lb_config.1:318
+#: en/lb_config.1:338
#, no-wrap
msgid "-d|B<--parent-debian-installer-distribution> I<CODENAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:320
+#: en/lb_config.1:340
msgid ""
"defines the parent debian-installer distribution for derivatives of the "
"resulting live system."
msgstr ""
#. type: IP
-#: en/lb_config.1:320
+#: en/lb_config.1:340
#, no-wrap
msgid "B<--dump>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:322
+#: en/lb_config.1:342
msgid ""
"prepares a report of the currently present live system configuration and the "
"version of live-build used. This is useful to provide if you submit bug "
@@ -1860,26 +1910,26 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:322
+#: en/lb_config.1:342
#, no-wrap
msgid "B<--fdisk> fdisk|fdisk.dist"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:324
+#: en/lb_config.1:344
msgid ""
"sets the filename of the fdisk binary from the host system that should be "
"used. This is autodetected and does generally not need any customization."
msgstr ""
#. type: IP
-#: en/lb_config.1:324 en/live-build.7:38
+#: en/lb_config.1:344 en/live-build.7:38
#, no-wrap
msgid "B<--force>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:326
+#: en/lb_config.1:346
msgid ""
"forces re-execution of already run stages. Use only if you know what you are "
"doing. It is generally safer to use B<lb clean> to clean up before re-"
@@ -1887,26 +1937,26 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:326
+#: en/lb_config.1:346
#, no-wrap
msgid "B<--grub-splash> I<FILE>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:328
+#: en/lb_config.1:348
msgid ""
"defines the name of an optional to be included splash screen graphic for the "
"grub bootloader."
msgstr ""
#. type: IP
-#: en/lb_config.1:328
+#: en/lb_config.1:348
#, no-wrap
msgid "B<--gzip-options> I<OPTION>|\"I<OPTIONS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:330
+#: en/lb_config.1:350
msgid ""
"defines the default options that will be appended to (almost) every gzip "
"call during the building of the image. By default, this is set to --best to "
@@ -1915,13 +1965,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:330
+#: en/lb_config.1:350
#, no-wrap
msgid "B<--hooks> I<FILE>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:332
+#: en/lb_config.1:352
msgid ""
"defines which hooks available in /usr/share/live/build/examples/hooks should "
"be activated. Normally, there are no hooks executed. Make sure you know and "
@@ -1929,24 +1979,24 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:332
+#: en/lb_config.1:352
#, no-wrap
msgid "B<--hostname> I<NAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:334
+#: en/lb_config.1:354
msgid "sets the hostname of the live system."
msgstr ""
#. type: IP
-#: en/lb_config.1:334
+#: en/lb_config.1:354
#, no-wrap
msgid "B<--ignore-system-defaults>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:336
+#: en/lb_config.1:356
msgid ""
"B<lb config> by default reads system defaults from /etc/live/build.conf and /"
"etc/live/build.d when generating a new live system config directory. This is "
@@ -1955,13 +2005,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:336
+#: en/lb_config.1:356
#, no-wrap
msgid "B<--includes> I<PATH|none>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:338
+#: en/lb_config.1:358
msgid ""
"sets the path to the includes that live-build is going to use, e.g. "
"additional minimal documentation that you want to have on all live systems. "
@@ -1970,13 +2020,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:338
+#: en/lb_config.1:358
#, no-wrap
msgid "B<--initramfs> auto|none|live-boot|casper"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:340
+#: en/lb_config.1:360
msgid ""
"sets the name of package that contains the live system specific initramfs "
"modification. By default, auto is used, which means that at build time of "
@@ -1987,13 +2037,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:340
+#: en/lb_config.1:360
#, no-wrap
msgid "B<--interactive> shell"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:342
+#: en/lb_config.1:362
msgid ""
"defines if after the chroot stage and before the beginning of the binary "
"stage, a interactive shell login should be spawned in the chroot in order to "
@@ -2007,24 +2057,24 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:342
+#: en/lb_config.1:362
#, no-wrap
msgid "B<--isohybrid-options> I<OPTION>|\"I<OPTIONS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:344
+#: en/lb_config.1:364
msgid "defines options to pass to isohybrid."
msgstr ""
#. type: IP
-#: en/lb_config.1:344
+#: en/lb_config.1:364
#, no-wrap
msgid "B<--iso-application> I<NAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:346
+#: en/lb_config.1:366
msgid ""
"sets the APPLICATION field in the header of a resulting CD/DVD image and "
"defaults to \"Debian Live\" in debian mode, and to \"Emdebian Live\" in "
@@ -2032,13 +2082,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:346
+#: en/lb_config.1:366
#, no-wrap
msgid "B<--iso-preparer> I<NAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:348
+#: en/lb_config.1:368
msgid ""
"sets the PREPARER field in the header of a resulting CD/DVD image. By "
"default this is set to \"live-build I<VERSION>; http://packages.qa.debian."
@@ -2047,13 +2097,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:348
+#: en/lb_config.1:368
#, no-wrap
msgid "B<--iso-publisher> I<NAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:350
+#: en/lb_config.1:370
msgid ""
"sets the PUBLISHED field in the header of a resulting CD/DVD image. By "
"default, this is set to 'Debian Live project; http:/live.debian.net/; debian-"
@@ -2062,13 +2112,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:350
+#: en/lb_config.1:370
#, no-wrap
msgid "B<--iso-volume> I<NAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:352
+#: en/lb_config.1:372
msgid ""
"sets the VOLUME field in the header of a resulting CD/DVD and defaults to "
"'(I<MODE>) (I<DISTRIBUTION>) (I<DATE>)' whereas MODE is expanded to the name "
@@ -2077,13 +2127,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:352
+#: en/lb_config.1:372
#, no-wrap
msgid "B<--jffs2-eraseblock> I<SIZE>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:354
+#: en/lb_config.1:374
msgid ""
"sets the eraseblock size for a JFFS2 (Second Journalling Flash File System) "
"filesystem. The default is 64 KiB. If you use an erase block size different "
@@ -2093,26 +2143,26 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:354
+#: en/lb_config.1:374
#, no-wrap
msgid "B<--keyring-packages> I<PACKAGE|\"PACKAGES>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:356
+#: en/lb_config.1:376
msgid ""
"sets the keyring package or additional keyring packages. By default this is "
"set to debian-archive-keyring."
msgstr ""
#. type: IP
-#: en/lb_config.1:356
+#: en/lb_config.1:376
#, no-wrap
msgid "-l|B<--language> I<LANGUAGE>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:358
+#: en/lb_config.1:378
msgid ""
"sets the language of a live system by installing l10n related packages. It "
"doesn't enable generation of the correct locales through setting the right "
@@ -2120,26 +2170,26 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:358
+#: en/lb_config.1:378
#, no-wrap
msgid "-k|B<--linux-flavours> I<FLAVOUR>|\"I<FLAVOURS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:360
+#: en/lb_config.1:380
msgid ""
"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."
msgstr ""
#. type: IP
-#: en/lb_config.1:360
+#: en/lb_config.1:380
#, no-wrap
msgid "B<--linux-packages> \"I<PACKAGES>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:362
+#: en/lb_config.1:382
msgid ""
"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 "
@@ -2153,26 +2203,26 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:362
+#: en/lb_config.1:382
#, no-wrap
msgid "B<--losetup> losetup|losetup.orig"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:364
+#: en/lb_config.1:384
msgid ""
"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."
msgstr ""
#. type: IP
-#: en/lb_config.1:364
+#: en/lb_config.1:384
#, no-wrap
msgid "B<--memtest> memtest86+|memtest86|none"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:366
+#: en/lb_config.1:386
msgid ""
"defines if memtest, memtest86+ or no memory tester at all should be included "
"as secondary bootloader configuration. This is only available on amd64 and "
@@ -2180,13 +2230,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:366
+#: en/lb_config.1:386
#, no-wrap
msgid "-m|B<--parent-mirror-bootstrap> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:368
+#: en/lb_config.1:388
msgid ""
"sets the location of the debian package mirror that should be used to "
"bootstrap from. This defaults to http://ftp.de.debian.org/debian/ which may "
@@ -2194,13 +2244,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:368
+#: en/lb_config.1:388
#, no-wrap
msgid "B<--parent-mirror-chroot> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:370
+#: en/lb_config.1:390
msgid ""
"sets the location of the debian package mirror that will be used to fetch "
"the packages in order to build the live system. By default, this is set to "
@@ -2208,13 +2258,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:370
+#: en/lb_config.1:390
#, no-wrap
msgid "B<--parent-mirror-chroot-security> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:372
+#: en/lb_config.1:392
msgid ""
"sets the location of the debian security package mirror that will be used to "
"fetch the packages in order to build the live system. By default, this "
@@ -2222,13 +2272,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:372
+#: en/lb_config.1:392
#, no-wrap
msgid "B<--parent-mirror-chroot-volatile> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:374
+#: en/lb_config.1:394
msgid ""
"sets the location of the debian volatile package mirror that will be used to "
"fetch packages in order to build the live system. By default, this is set to "
@@ -2236,13 +2286,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:374
+#: en/lb_config.1:394
#, no-wrap
msgid "B<--parent-mirror-chroot-backports> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:376
+#: en/lb_config.1:396
msgid ""
"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 "
@@ -2250,13 +2300,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:376
+#: en/lb_config.1:396
#, no-wrap
msgid "B<--parent-mirror-binary> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:378
+#: en/lb_config.1:398
msgid ""
"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 "
@@ -2266,13 +2316,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:378
+#: en/lb_config.1:398
#, no-wrap
msgid "B<--parent-mirror-binary-security> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:380
+#: en/lb_config.1:400
msgid ""
"sets the location of the debian security package mirror that should end up "
"configured in the final image. By default, 'http://cdn.debian.net/debian-"
@@ -2280,13 +2330,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:380
+#: en/lb_config.1:400
#, no-wrap
msgid "B<--parent-mirror-binary-volatile> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:382
+#: en/lb_config.1:402
msgid ""
"sets the location of the debian volatile package mirror that should end up "
"configured in the final image. By default, the value of --parent-mirror-"
@@ -2294,13 +2344,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:382
+#: en/lb_config.1:402
#, no-wrap
msgid "B<--parent-mirror-binary-backports> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:384
+#: en/lb_config.1:404
msgid ""
"sets the location of the debian backports package mirror that should end up "
"configured in the final image. By default, 'http://backports.debian.org/"
@@ -2308,13 +2358,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:384
+#: en/lb_config.1:404
#, no-wrap
msgid "B<--parent-mirror-debian-installer> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:386
+#: en/lb_config.1:406
msgid ""
"sets the location of the mirror that will be used to fetch the debian "
"installer images. By default, this points to the same mirror used to build "
@@ -2322,52 +2372,191 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:386
+#: en/lb_config.1:406
+#, no-wrap
+msgid "-m|B<--mirror-bootstrap> I<URL>"
+msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:408
+msgid ""
+"sets the location of the debian package mirror that should be used to "
+"bootstrap the derivative from. This defaults to http://ftp.de.debian.org/"
+"debian/ which may not be a good default if you live outside of Europe."
+msgstr ""
+
+#. type: IP
+#: en/lb_config.1:408
+#, no-wrap
+msgid "B<--mirror-chroot> I<URL>"
+msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:410
+msgid ""
+"sets the location of the debian package mirror that will be used to fetch "
+"the packages of the derivative in order to build the live system. By "
+"default, this is set to the value of --mirror-bootstrap."
+msgstr ""
+
+#. type: IP
+#: en/lb_config.1:410
+#, no-wrap
+msgid "B<--mirror-chroot-security> I<URL>"
+msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:412
+msgid ""
+"sets the location of the debian security package mirror that will be used to "
+"fetch the packages of the derivative in order to build the live system. By "
+"default, this points to http://security.debian.org/debian/."
+msgstr ""
+
+#. type: IP
+#: en/lb_config.1:412
+#, no-wrap
+msgid "B<--mirror-chroot-volatile> I<URL>"
+msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:414
+msgid ""
+"sets the location of the debian volatile package mirror that will be used to "
+"fetch packages of the derivative in order to build the live system. By "
+"default, this is set to the value of --mirror-chroot."
+msgstr ""
+
+#. type: IP
+#: en/lb_config.1:414
+#, no-wrap
+msgid "B<--mirror-chroot-backports> I<URL>"
+msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:416
+msgid ""
+"sets the location of the debian backports package mirror that will be used "
+"to fetch packages of the derivative in order to build the live system. By "
+"default, this points to http://backports.debian.org/debian-backports/."
+msgstr ""
+
+#. type: IP
+#: en/lb_config.1:416
+#, no-wrap
+msgid "B<--mirror-binary> I<URL>"
+msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:418
+msgid ""
+"sets the location of the derivative 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."
+msgstr ""
+
+#. type: IP
+#: en/lb_config.1:418
+#, no-wrap
+msgid "B<--mirror-binary-security> I<URL>"
+msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:420
+msgid ""
+"sets the location of the derivatives security package mirror that should end "
+"up configured in the final image."
+msgstr ""
+
+#. type: IP
+#: en/lb_config.1:420
+#, no-wrap
+msgid "B<--mirror-binary-volatile> I<URL>"
+msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:422
+msgid ""
+"sets the location of the derivatives volatile package mirror that should end "
+"up configured in the final image."
+msgstr ""
+
+#. type: IP
+#: en/lb_config.1:422
+#, no-wrap
+msgid "B<--mirror-binary-backports> I<URL>"
+msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:424
+msgid ""
+"sets the location of the derivatives backports package mirror that should "
+"end up configured in the final image."
+msgstr ""
+
+#. type: IP
+#: en/lb_config.1:424
+#, no-wrap
+msgid "B<--mirror-debian-installer> I<URL>"
+msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:426
+msgid ""
+"sets the location of the mirror that will be used to fetch the debian "
+"installer images of the derivative. By default, this points to the same "
+"mirror used to build the live system, i.e. the value of --mirror-bootstrap."
+msgstr ""
+
+#. type: IP
+#: en/lb_config.1:426
#, no-wrap
msgid "B<--mode> debian|emdebian|ubuntu"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:388
+#: en/lb_config.1:428
msgid ""
"defines a global mode to load project specific defaults. By default this is "
"set to debian."
msgstr ""
#. type: IP
-#: en/lb_config.1:388
+#: en/lb_config.1:428
#, no-wrap
msgid "B<--net-root-filesystem> nfs|cfs"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:390
+#: en/lb_config.1:430
msgid ""
"defines the filesystem that will be configured in the bootloader "
"configuration for your netboot image. This defaults to nfs."
msgstr ""
#. type: IP
-#: en/lb_config.1:390
+#: en/lb_config.1:430
#, no-wrap
msgid "B<--net-root-mountoptions> I<OPTIONS>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:392
+#: en/lb_config.1:432
msgid ""
"sets additional options for mounting the root filesystem in netboot images "
"and is by default empty."
msgstr ""
#. type: IP
-#: en/lb_config.1:392
+#: en/lb_config.1:432
#, no-wrap
msgid "B<--net-root-path> I<PATH>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:394
+#: en/lb_config.1:434
msgid ""
"sets the file path that will be configured in the bootloader configuration "
"for your netboot image. This defaults to /srv/debian-live in debian mode and "
@@ -2376,13 +2565,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:394
+#: en/lb_config.1:434
#, no-wrap
msgid "B<--net-root-server> I<IP>|I<HOSTNAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:396
+#: en/lb_config.1:436
msgid ""
"sets the IP or hostname that will be configured in the bootloader "
"configuration for the root filesystem of your netboot image. This defaults "
@@ -2390,38 +2579,38 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:396
+#: en/lb_config.1:436
#, no-wrap
msgid "B<--net-cow-filesystem> nfs|cfs"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:398
+#: en/lb_config.1:438
msgid ""
"defines the filesystem type for the copy-on-write layer and defaults to nfs."
msgstr ""
#. type: IP
-#: en/lb_config.1:398
+#: en/lb_config.1:438
#, no-wrap
msgid "B<--net-cow-mountoptions> I<OPTIONS>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:400
+#: en/lb_config.1:440
msgid ""
"sets additional options for mounting the copy-on-write layer in netboot "
"images and is by default empty."
msgstr ""
#. type: IP
-#: en/lb_config.1:400
+#: en/lb_config.1:440
#, no-wrap
msgid "B<--net-cow-path> I<PATH>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:402
+#: en/lb_config.1:442
msgid ""
"defines the path to client writable filesystem. Anywhere that "
"I<client_mac_address> is specified in the path live-boot will substitute the "
@@ -2429,28 +2618,28 @@ msgid ""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:405
+#: en/lb_config.1:445
msgid "Example:"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:407
+#: en/lb_config.1:447
msgid "/export/hosts/client_mac_address"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:409
+#: en/lb_config.1:449
msgid "/export/hosts/00-16-D3-33-92-E8"
msgstr ""
#. type: IP
-#: en/lb_config.1:409
+#: en/lb_config.1:449
#, no-wrap
msgid "B<--net-cow-server> I<IP>|I<HOSTNAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:411
+#: en/lb_config.1:451
msgid ""
"sets the IP or hostname that will be configured in the bootloader "
"configuration for the copy-on-write filesystem of your netboot image and is "
@@ -2458,13 +2647,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:411
+#: en/lb_config.1:451
#, no-wrap
msgid "B<--net-tarball> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:413
+#: en/lb_config.1:453
msgid ""
"defines if a compressed tarball should be created. Disabling this options "
"leads to no tarball at all, the plain binary directory is considered the "
@@ -2472,13 +2661,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:413
+#: en/lb_config.1:453
#, no-wrap
msgid "-p|B<--package-lists> I<LIST>|\"I<LISTS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:415
+#: en/lb_config.1:455
msgid ""
"defines which lists available in /usr/share/live/build/lists should be used. "
"By default, this is set to standard. Note that in case you have local "
@@ -2488,13 +2677,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:415
+#: en/lb_config.1:455
#, no-wrap
msgid "B<--packages> I<PACKAGE>|\"I<PACKAGES>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:417
+#: en/lb_config.1:457
msgid ""
"defines one or more packages to be installed in the live system. This is a "
"quick and convenient place to add a few packages when building an image "
@@ -2503,37 +2692,37 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:417 en/live-build.7:40
+#: en/lb_config.1:457 en/live-build.7:40
#, no-wrap
msgid "B<--quiet>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:419
+#: en/lb_config.1:459
msgid "reduces the verbosity of messages output by B<lb build>."
msgstr ""
#. type: IP
-#: en/lb_config.1:419
+#: en/lb_config.1:459
#, no-wrap
msgid "-r|B<--repositories> I<REPOSITORY>|\"I<REPOSITORIES>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:421
+#: en/lb_config.1:461
msgid ""
"enables one of available third-party repository configurations in /usr/share/"
"live/build/repositories."
msgstr ""
#. type: IP
-#: en/lb_config.1:421
+#: en/lb_config.1:461
#, no-wrap
msgid "B<--root-command> sudo"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:423
+#: en/lb_config.1:463
msgid ""
"controls if live-build should use sudo internally to build the live image. "
"Note that this is not well tested and that you should, when relying on sudo, "
@@ -2541,13 +2730,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:423
+#: en/lb_config.1:463
#, no-wrap
msgid "B<--use-fakeroot> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:425
+#: en/lb_config.1:465
msgid ""
"controls if live-build should utilize fakeroot and fakechroot to try and "
"avoid requiring root privillages where possible. By default, this option is "
@@ -2555,13 +2744,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:425
+#: en/lb_config.1:465
#, no-wrap
msgid "B<--archive-areas> I<ARCHIVE_AREA>|\"I<ARCHIVE_AREAS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:427
+#: en/lb_config.1:467
msgid ""
"defines which package archive areas of a debian packages archive should be "
"used for configured debian package mirrors. By default, this is set to main. "
@@ -2571,26 +2760,26 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:427
+#: en/lb_config.1:467
#, no-wrap
msgid "B<--security> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:429
+#: en/lb_config.1:469
msgid ""
"defines if the security repositories specified in the security mirror "
"options should be used or not."
msgstr ""
#. type: IP
-#: en/lb_config.1:429
+#: en/lb_config.1:469
#, no-wrap
msgid "B<--source> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:431
+#: en/lb_config.1:471
msgid ""
"defines if a corresponding source image to the binary image should be build. "
"By default this is false because most people do not require this and would "
@@ -2600,37 +2789,37 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:431
+#: en/lb_config.1:471
#, no-wrap
msgid "-s|B<--source-images> iso|net|tar|usb-hdd"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:433
+#: en/lb_config.1:473
msgid "defines the image type for the source image. Default is tar."
msgstr ""
#. type: IP
-#: en/lb_config.1:433
+#: en/lb_config.1:473
#, no-wrap
msgid "B<--syslinux-splash> I<FILE>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:435
+#: en/lb_config.1:475
msgid ""
"defines the file of the syslinux splash graphic that should be used instead "
"of the default one."
msgstr ""
#. type: IP
-#: en/lb_config.1:435
+#: en/lb_config.1:475
#, no-wrap
msgid "B<--syslinux-timeout> I<SECONDS>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:437
+#: en/lb_config.1:477
msgid ""
"defines the timeout the syslinux bootloader should wait for input from the "
"user at the bootprompt prior booting the default kernel. This defaults to 0 "
@@ -2638,38 +2827,38 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:437
+#: en/lb_config.1:477
#, no-wrap
msgid "B<--syslinux-menu> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:439
+#: en/lb_config.1:479
msgid ""
"defines if syslinux should be make use of the vgamenu capabilities or not."
msgstr ""
#. type: IP
-#: en/lb_config.1:439
+#: en/lb_config.1:479
#, no-wrap
msgid "B<--tasksel> aptitude|tasksel"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:441
+#: en/lb_config.1:481
msgid ""
"selects which program is used to install tasks. By default, this is set to "
"tasksel."
msgstr ""
#. type: IP
-#: en/lb_config.1:441
+#: en/lb_config.1:481
#, no-wrap
msgid "B<--tasks> I<TASK>|\"I<TASKS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:443
+#: en/lb_config.1:483
msgid ""
"defines one or more package tasks to be installed in the live system. This "
"is a quick and convenient way to get a reasonable default selection of "
@@ -2679,26 +2868,26 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:443
+#: en/lb_config.1:483
#, no-wrap
msgid "B<--templates> I<PATH>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:445
+#: en/lb_config.1:485
msgid ""
"sets the path to the templates that live-build is going to use, e.g. for "
"bootloaders. By default, this is set to /usr/share/live/build/templates/."
msgstr ""
#. type: IP
-#: en/lb_config.1:445
+#: en/lb_config.1:485
#, no-wrap
msgid "B<--virtual-root-size> MB"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:447
+#: en/lb_config.1:487
msgid ""
"defines what size the virtual-hdd image should be. Note that although the "
"default is set to 10000 (= 10GB), it will not need 10GB space on your "
@@ -2706,39 +2895,39 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:447
+#: en/lb_config.1:487
#, no-wrap
msgid "B<--volatile> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:449
+#: en/lb_config.1:489
msgid ""
"defines if debian volatile package archives should be included in the image "
"or not."
msgstr ""
#. type: IP
-#: en/lb_config.1:449
+#: en/lb_config.1:489
#, no-wrap
msgid "B<--backports> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:451
+#: en/lb_config.1:491
msgid ""
"defines if debian backports package archives should be included in the image "
"or not."
msgstr ""
#. type: IP
-#: en/lb_config.1:451
+#: en/lb_config.1:491
#, no-wrap
msgid "B<--exposed-root> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:453
+#: en/lb_config.1:493
msgid ""
"defines whether to expose the root filesystem as read only and not covered "
"by the union filesystem. This has useful implications for certain speciality "
@@ -2746,48 +2935,48 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:453
+#: en/lb_config.1:493
#, no-wrap
msgid "B<--username> I<NAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:455
+#: en/lb_config.1:495
msgid "sets the name of the account of the default user in the live system."
msgstr ""
#. type: IP
-#: en/lb_config.1:455 en/live-build.7:42
+#: en/lb_config.1:495 en/live-build.7:42
#, no-wrap
msgid "B<--verbose>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:457
+#: en/lb_config.1:497
msgid "increases the verbosity of messages output by B<lb build>."
msgstr ""
#. type: IP
-#: en/lb_config.1:457
+#: en/lb_config.1:497
#, no-wrap
msgid "B<--win32-loader true|false>"
msgstr ""
#. FIXME
#. type: Plain text
-#: en/lb_config.1:460
+#: en/lb_config.1:500
msgid "defines if win32-loader should be included in the binary image or not."
msgstr ""
#. type: SH
-#: en/lb_config.1:461
+#: en/lb_config.1:501
#, no-wrap
msgid "ENVIRONMENT"
msgstr ""
#. FIXME
#. type: Plain text
-#: en/lb_config.1:464
+#: en/lb_config.1:504
msgid ""
"Currently, command line switches can also be specified through the "
"corresponding environment variable. However, this generally should not be "
@@ -2801,20 +2990,20 @@ msgstr ""
#. FIXME
#. type: IP
-#: en/lb_config.1:468
+#: en/lb_config.1:508
#, no-wrap
msgid "B<auto/config>"
msgstr ""
#. type: IP
-#: en/lb_config.1:469
+#: en/lb_config.1:509
#, no-wrap
msgid "B</etc/live/build.conf, /etc/live/build.d>"
msgstr ""
#. FIXME
#. type: Plain text
-#: en/lb_config.1:472
+#: en/lb_config.1:512
msgid ""
"An optional, global configuration file for B<lb config> variables. It is "
"useful to specify a few system wide defaults, like "
diff --git a/manpages/pot/lb_config.1.pot b/manpages/pot/lb_config.1.pot
index b12c32633..ee4f6a043 100644
--- a/manpages/pot/lb_config.1.pot
+++ b/manpages/pot/lb_config.1.pot
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
-"POT-Creation-Date: 2011-02-14 13:10+0100\n"
+"POT-Creation-Date: 2011-02-14 13:48+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -245,7 +245,7 @@ msgstr ""
#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_tasks.1:9
-#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:227 en/lb_local.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:247 en/lb_local.1:9
#: en/lb_source.1:9 en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
@@ -281,7 +281,7 @@ msgstr ""
#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 en/lb_chroot_tasks.1:14
-#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:236
+#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:256
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
@@ -318,7 +318,7 @@ msgstr ""
#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 en/lb_chroot_tasks.1:17
-#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:466
+#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:506
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
@@ -356,7 +356,7 @@ msgstr ""
#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 en/lb_chroot_tasks.1:21
-#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:473
+#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:513
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
@@ -393,7 +393,7 @@ msgstr ""
#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 en/lb_chroot_tasks.1:23
-#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:475
+#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:515
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
@@ -429,7 +429,7 @@ msgstr ""
#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 en/lb_chroot_tasks.1:25
-#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:477
+#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:517
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
@@ -465,7 +465,7 @@ msgstr ""
#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 en/lb_chroot_tasks.1:26
-#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:478
+#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:518
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
@@ -502,7 +502,7 @@ msgstr ""
#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 en/lb_chroot_tasks.1:28
-#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:480
+#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:520
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
@@ -541,7 +541,7 @@ msgstr ""
#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 en/lb_chroot_tasks.1:29
-#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:481
+#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:521
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
@@ -578,7 +578,7 @@ msgstr ""
#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 en/lb_chroot_tasks.1:31
-#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:483
+#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:523
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
@@ -618,7 +618,7 @@ msgstr ""
#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 en/lb_chroot_tasks.1:32
-#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:484
+#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:524
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
@@ -655,7 +655,7 @@ msgstr ""
#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 en/lb_chroot_tasks.1:33
-#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:485
+#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:525
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
@@ -1055,172 +1055,222 @@ msgstr ""
#. type: Plain text
#: en/lb_config.1:161
-msgid " [B<--mode> debian|emdebian|ubuntu]"
+msgid " [B<--mirror-bootstrap> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:163
-msgid " [B<--net-root-filesystem> nfs|cfs]"
+msgid " [B<--mirror-chroot> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:165
-msgid " [B<--net-root-mountoptions> I<OPTIONS>]"
+msgid " [B<--mirror-chroot-security> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:167
-msgid " [B<--net-root-path> I<PATH>]"
+msgid " [B<--mirror-chroot-volatile> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:169
-msgid " [B<--net-root-server> I<IP>|I<HOSTNAME>]"
+msgid " [B<--mirror-chroot-backports> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:171
-msgid " [B<--net-cow-filesystem> nfs|cfs]"
+msgid " [B<--mirror-binary> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:173
-msgid " [B<--net-cow-mountoptions> I<OPTIONS>]"
+msgid " [B<--mirror-binary-security> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:175
-msgid " [B<--net-cow-path> I<PATH>]"
+msgid " [B<--mirror-binary-volatile> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:177
-msgid " [B<--net-cow-server> I<IP>|I<HOSTNAME>]"
+msgid " [B<--mirror-binary-backports> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:179
-msgid " [B<--net-tarball> true|false]"
+msgid " [B<--mirror-debian-installer> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:181
-msgid " [-p|B<--package-lists> I<LIST>|I<\"LISTS\">]"
+msgid " [B<--mode> debian|emdebian|ubuntu]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:183
-msgid " [B<--packages> I<PACKAGE>|I<\"PACKAGES\">]"
+msgid " [B<--net-root-filesystem> nfs|cfs]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:185
-msgid " [B<--quiet>]"
+msgid " [B<--net-root-mountoptions> I<OPTIONS>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:187
-msgid " [-r|B<--repositories >I<REPOSITORY>|I<\"REPOSITORIES\">]"
+msgid " [B<--net-root-path> I<PATH>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:189
-msgid " [B<--root-command> sudo]"
+msgid " [B<--net-root-server> I<IP>|I<HOSTNAME>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:191
-msgid " [B<--use-fakeroot> true|false]"
+msgid " [B<--net-cow-filesystem> nfs|cfs]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:193
-msgid " [B<--archive-areas> I<ARCHIVE_AREA>|I<\"ARCHIVE_AREAS\">]"
+msgid " [B<--net-cow-mountoptions> I<OPTIONS>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:195
-msgid " [B<--security> true|false]"
+msgid " [B<--net-cow-path> I<PATH>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:197
-msgid " [B<--source> true|false]"
+msgid " [B<--net-cow-server> I<IP>|I<HOSTNAME>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:199
-msgid " [-s|B<--source-images> iso|net|tar|usb-hdd]"
+msgid " [B<--net-tarball> true|false]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:201
-msgid " [B<--syslinux-splash> I<FILE>]"
+msgid " [-p|B<--package-lists> I<LIST>|I<\"LISTS\">]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:203
-msgid " [B<--syslinux-timeout> I<SECONDS>]"
+msgid " [B<--packages> I<PACKAGE>|I<\"PACKAGES\">]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:205
-msgid " [B<--syslinux-menu> true|false]"
+msgid " [B<--quiet>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:207
-msgid " [B<--tasksel> aptitude|tasksel]"
+msgid " [-r|B<--repositories >I<REPOSITORY>|I<\"REPOSITORIES\">]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:209
-msgid " [B<--tasks> I<TASK>|\"I<TASKS>\"]"
+msgid " [B<--root-command> sudo]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:211
-msgid " [B<--templates> I<PATH>]"
+msgid " [B<--use-fakeroot> true|false]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:213
-msgid " [B<--virtual-root-size >I<MB>]"
+msgid " [B<--archive-areas> I<ARCHIVE_AREA>|I<\"ARCHIVE_AREAS\">]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:215
-msgid " [B<--volatile> true|false]"
+msgid " [B<--security> true|false]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:217
-msgid " [B<--backports> true|false]"
+msgid " [B<--source> true|false]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:219
-msgid " [B<--exposed-root> true|false]"
+msgid " [-s|B<--source-images> iso|net|tar|usb-hdd]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:221
-msgid " [B<--username> I<NAME>]"
+msgid " [B<--syslinux-splash> I<FILE>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:223
+msgid " [B<--syslinux-timeout> I<SECONDS>]"
+msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:225
+msgid " [B<--syslinux-menu> true|false]"
+msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:227
+msgid " [B<--tasksel> aptitude|tasksel]"
+msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:229
+msgid " [B<--tasks> I<TASK>|\"I<TASKS>\"]"
+msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:231
+msgid " [B<--templates> I<PATH>]"
+msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:233
+msgid " [B<--virtual-root-size >I<MB>]"
+msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:235
+msgid " [B<--volatile> true|false]"
+msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:237
+msgid " [B<--backports> true|false]"
+msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:239
+msgid " [B<--exposed-root> true|false]"
+msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:241
+msgid " [B<--username> I<NAME>]"
+msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:243
msgid " [B<--verbose>]"
msgstr ""
#. FIXME
#. type: Plain text
-#: en/lb_config.1:226
+#: en/lb_config.1:246
msgid " [B<--win32-loader true|false]>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:229
+#: en/lb_config.1:249
msgid ""
"B<lb config> is a high-level command (porcelain) of I<live-build>(7), the "
"Debian Live tool suite."
@@ -1228,7 +1278,7 @@ msgstr ""
#. FIXME
#. type: Plain text
-#: en/lb_config.1:232
+#: en/lb_config.1:252
msgid ""
"B<lb config> populates the configuration directory for live-build. By "
"default, this directory is named 'config' and is created in the current "
@@ -1237,7 +1287,7 @@ msgstr ""
#. FIXME
#. type: Plain text
-#: en/lb_config.1:235
+#: en/lb_config.1:255
msgid ""
"Note: Currently B<lb config> tries to be smart and sets defaults for some "
"options depending on the setting of other options (e.g. which linux packages "
@@ -1253,7 +1303,7 @@ msgid ""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:238
+#: en/lb_config.1:258
msgid ""
"In addition to its specific options B<lb config> understands all generic "
"live-build options. See I<live-build>(7) for a complete list of all generic "
@@ -1262,26 +1312,26 @@ msgstr ""
#. FIXME
#. type: IP
-#: en/lb_config.1:240
+#: en/lb_config.1:260
#, no-wrap
msgid "B<--apt> apt|aptitude"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:242
+#: en/lb_config.1:262
msgid ""
"defines if apt-get or aptitude is used to install packages when building the "
"image. The default is apt."
msgstr ""
#. type: IP
-#: en/lb_config.1:242
+#: en/lb_config.1:262
#, no-wrap
msgid "B<--apt-ftp-proxy> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:244
+#: en/lb_config.1:264
msgid ""
"sets the ftp proxy to be used by apt. By default, this is empty but if the "
"host has the environment variable ftp_proxy set, apt-ftp-proxy gets "
@@ -1289,13 +1339,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:244
+#: en/lb_config.1:264
#, no-wrap
msgid "B<--apt-http-proxy> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:246
+#: en/lb_config.1:266
msgid ""
"sets the http proxy to be used by apt. By default, this is empty but if the "
"host has the environment variable http_proxy set, apt-http-proxy gets "
@@ -1303,26 +1353,26 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:246
+#: en/lb_config.1:266
#, no-wrap
msgid "B<--apt-indices> true|false|none"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:248
+#: en/lb_config.1:268
msgid ""
"defines if the resulting images should have apt indices or not and defaults "
"to true. If set to none, no indices are included at all."
msgstr ""
#. type: IP
-#: en/lb_config.1:248
+#: en/lb_config.1:268
#, no-wrap
msgid "B<--apt-options> I<OPTION>|\"I<OPTIONS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:250
+#: en/lb_config.1:270
msgid ""
"defines the default options that will be appended to every apt call that is "
"made inside chroot during the building of the image. By default, this is set "
@@ -1330,13 +1380,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:250
+#: en/lb_config.1:270
#, no-wrap
msgid "B<--aptitude-options> I<OPTION>|\"I<OPTIONS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:252
+#: en/lb_config.1:272
msgid ""
"defines the default options that will be appended to every aptitude call "
"that is made inside chroot during building of the image. By default, this is "
@@ -1344,13 +1394,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:252
+#: en/lb_config.1:272
#, no-wrap
msgid "B<--apt-pipeline> I<DEPTH>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:254
+#: en/lb_config.1:274
msgid ""
"sets the depth of the apt/aptitude pipeline. In cases where the remote "
"server is not RFC conforming or buggy (such as Squid 2.0.2) this option can "
@@ -1362,38 +1412,38 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:254
+#: en/lb_config.1:274
#, no-wrap
msgid "B<--apt-recommends> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:256
+#: en/lb_config.1:276
msgid ""
"defines if apt should install recommended packages automatically. By "
"default, this is true except in emdebian mode."
msgstr ""
#. type: IP
-#: en/lb_config.1:256
+#: en/lb_config.1:276
#, no-wrap
msgid "B<--apt-secure> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:258
+#: en/lb_config.1:278
msgid ""
"defines if apt should check repository signatures. This is true by default."
msgstr ""
#. type: IP
-#: en/lb_config.1:258
+#: en/lb_config.1:278
#, no-wrap
msgid "-a|B<--architectures> I<ARCHITECTURE>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:260
+#: en/lb_config.1:280
msgid ""
"defines the architecture of the to be build image. By default, this is set "
"to the host architecture. Note that you cannot crossbuild for another "
@@ -1404,13 +1454,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:260
+#: en/lb_config.1:280
#, no-wrap
msgid "-b|B<--binary-images> iso|iso-hybrid|net|tar|usb-hdd"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:262
+#: en/lb_config.1:282
msgid ""
"defines the image type to build. By default, for images using syslinux this "
"is set to iso-hybrid to build CD/DVD images that may also be used like usb-"
@@ -1418,13 +1468,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:262
+#: en/lb_config.1:282
#, no-wrap
msgid "B<--binary-filesystem> fat16|fat32|ext2"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:264
+#: en/lb_config.1:284
msgid ""
"defines the filesystem to be used in the image type. This only has an effect "
"if the selected binary image type does allow to choose a filesystem. For "
@@ -1437,24 +1487,24 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:264
+#: en/lb_config.1:284
#, no-wrap
msgid "B<--bootappend-install> I<PARAMETER>|\"I<PARAMETERS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:266
+#: en/lb_config.1:286
msgid "sets boot parameters specific to debian-installer, if included."
msgstr ""
#. type: IP
-#: en/lb_config.1:266
+#: en/lb_config.1:286
#, no-wrap
msgid "B<--bootappend-live> I<PARAMETER>|\"I<PARAMETERS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:268
+#: en/lb_config.1:288
msgid ""
"sets boot parameters specific to debian-live. A complete list of boot "
"parameters can be found, for etch, in the manpage of casper, for all other "
@@ -1463,13 +1513,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:268
+#: en/lb_config.1:288
#, no-wrap
msgid "B<--bootloader> grub|syslinux|yaboot"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:270
+#: en/lb_config.1:290
msgid ""
"defines which bootloader is beeing used in the generated image. This has "
"only an effect if the selected binary image type does allow to choose the "
@@ -1482,13 +1532,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:270
+#: en/lb_config.1:290
#, no-wrap
msgid "B<--bootstrap> cdebootstrap|cdebootstrap-static|debootstrap|copy"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:272
+#: en/lb_config.1:292
msgid ""
"defines which program is used to bootstrap the debian chroot, default is "
"debootstrap. Note that if you set the bootstrap program to copy, then your "
@@ -1498,13 +1548,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:272
+#: en/lb_config.1:292
#, no-wrap
msgid "B<--bootstrap-config> I<FILE>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:274
+#: en/lb_config.1:294
msgid ""
"sets a custom configuration file for the boostrap programm of choice and is "
"empty by default. Refere to the documentation of debootstrap or cdebootstrap "
@@ -1513,13 +1563,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:274
+#: en/lb_config.1:294
#, no-wrap
msgid "-f|B<--bootstrap-flavour> minimal|standard"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:276
+#: en/lb_config.1:296
msgid ""
"defines if the bootstrap program should bootstrap the standard system (all "
"packages of priority required and important, which is the default) or a "
@@ -1527,39 +1577,39 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:276
+#: en/lb_config.1:296
#, no-wrap
msgid "B<--bootstrap-keyring> I<PACKAGE>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:278
+#: en/lb_config.1:298
msgid ""
"sets the archive keyring package to be used. Default is debian-archive-"
"keyring."
msgstr ""
#. type: IP
-#: en/lb_config.1:278
+#: en/lb_config.1:298
#, no-wrap
msgid "B<--cache> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:280
+#: en/lb_config.1:300
msgid ""
"defines globally if any cache should be used at all. Different caches can be "
"controled through the their own options."
msgstr ""
#. type: IP
-#: en/lb_config.1:280
+#: en/lb_config.1:300
#, no-wrap
msgid "B<--cache-indices> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:282
+#: en/lb_config.1:302
msgid ""
"defines if downloaded package indices and lists should be cached which is "
"false by default. Enabling it would allow to rebuild an image completely "
@@ -1567,13 +1617,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:282
+#: en/lb_config.1:302
#, no-wrap
msgid "B<--cache-packages> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:284
+#: en/lb_config.1:304
msgid ""
"defines if downloaded packages files should be cached which is true by "
"default. Disabling it does save space consumtion in your build directory, "
@@ -1584,13 +1634,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:284
+#: en/lb_config.1:304
#, no-wrap
msgid "B<--cache-stages> true|false|I<STAGE>|\"I<STAGES>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:286
+#: en/lb_config.1:306
msgid ""
"sets which stages should be cached. By default set to bootstrap. As an "
"exception to the normal stage names, also rootfs can be used here which does "
@@ -1600,13 +1650,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:286
+#: en/lb_config.1:306
#, no-wrap
msgid "B<--checksums> md5|sha1|sha256|none"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:288
+#: en/lb_config.1:308
msgid ""
"defines if the binary image should contain a file called md5sums.txt, "
"sha1sums.txt and/or sha256sums.txt. These lists all files on the image "
@@ -1618,26 +1668,26 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:288
+#: en/lb_config.1:308
#, no-wrap
msgid "B<--compression> bzip2|gzip|lzip|none"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:290
+#: en/lb_config.1:310
msgid ""
"defines the compression program to be used to compress tarballs. Defaults to "
"gzip."
msgstr ""
#. type: IP
-#: en/lb_config.1:290
+#: en/lb_config.1:310
#, no-wrap
msgid "B<--build-with-chroot> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:292
+#: en/lb_config.1:312
msgid ""
"defines whetever live-build should use the tools from within the chroot to "
"build the binary image or not by using and including the host systems tools. "
@@ -1652,13 +1702,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:292
+#: en/lb_config.1:312
#, no-wrap
msgid "B<--chroot-filesystem> ext2|ext3|squashfs|plain|jffs2"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:294
+#: en/lb_config.1:314
msgid ""
"defines which filesystem type should be used for the root filesystem image. "
"If you use plain, then no filesystem image is created and the root "
@@ -1669,39 +1719,39 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:294
+#: en/lb_config.1:314
#, no-wrap
msgid "B<--clean>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:296
+#: en/lb_config.1:316
msgid ""
"minimizes config directory by automatically removing unused and thus empty "
"subdirectories."
msgstr ""
#. type: IP
-#: en/lb_config.1:296
+#: en/lb_config.1:316
#, no-wrap
msgid "-c|B<--conffile> I<FILE>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:298
+#: en/lb_config.1:318
msgid ""
"using a user specified alternative configuration file in addition to the "
"normally used one in the config directory."
msgstr ""
#. type: IP
-#: en/lb_config.1:298
+#: en/lb_config.1:318
#, no-wrap
msgid "B<--debconf-frontend> dialog|editor|noninteractive|readline"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:300
+#: en/lb_config.1:320
msgid ""
"defines what value the debconf frontend should be set to inside the chroot. "
"Note that setting it to anything by noninteractive, which is the default, "
@@ -1709,13 +1759,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:300
+#: en/lb_config.1:320
#, no-wrap
msgid "B<--debconf-nowarnings> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:302
+#: en/lb_config.1:322
msgid ""
"defines if warnings of debconf should be displayed or not. Warnings from "
"debconf are generally very rare and by default, we skipp them, if any, in "
@@ -1723,13 +1773,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:302
+#: en/lb_config.1:322
#, no-wrap
msgid "B<--debconf-priority> low|medium|high|critical"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:304
+#: en/lb_config.1:324
msgid ""
"defines what value the debconf priority shoul dbe set to inside the chroot. "
"By default, it is set to critical, which means that almost no questions are "
@@ -1738,13 +1788,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:304
+#: en/lb_config.1:324
#, no-wrap
msgid "B<--debian-installer> true|cdrom|netinst|netboot|businesscard|live|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:306
+#: en/lb_config.1:326
msgid ""
"defines which type, if any, of the debian-installer should be included in "
"the resulting binary image. By default, no installer is included. All "
@@ -1756,13 +1806,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:306
+#: en/lb_config.1:326
#, no-wrap
msgid "B<--debian-installer-distribution> daily|I<CODENAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:308
+#: en/lb_config.1:328
msgid ""
"defines the distribution where the debian-installer files should be taken "
"out from. Normally, this should be set to the same distribution as the live "
@@ -1771,26 +1821,26 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:308
+#: en/lb_config.1:328
#, no-wrap
msgid "B<--debian-installer-preseedfile> I<FILE>|I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:310
+#: en/lb_config.1:330
msgid ""
"sets the filename or URL for an optionally used and included preseeding file "
"for debian-installer."
msgstr ""
#. type: IP
-#: en/lb_config.1:310
+#: en/lb_config.1:330
#, no-wrap
msgid "B<--debian-installer-gui> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:312
+#: en/lb_config.1:332
msgid ""
"defines if the debian-installer graphical GTK interface should be true or "
"not. In Debian mode and for most versions of Ubuntu, this option is true, "
@@ -1798,60 +1848,60 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:312 en/live-build.7:36
+#: en/lb_config.1:332 en/live-build.7:36
#, no-wrap
msgid "B<--debug>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:314
+#: en/lb_config.1:334
msgid "turn on debugging informational messages."
msgstr ""
#. type: IP
-#: en/lb_config.1:314
+#: en/lb_config.1:334
#, no-wrap
msgid "-d|B<--distribution> I<CODENAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:316
+#: en/lb_config.1:336
msgid "defines the distribution of the resulting live system."
msgstr ""
#. type: IP
-#: en/lb_config.1:316
+#: en/lb_config.1:336
#, no-wrap
msgid "-d|B<--parent-distribution> I<CODENAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:318
+#: en/lb_config.1:338
msgid ""
"defines the parent distribution for derivatives of the resulting live system."
msgstr ""
#. type: IP
-#: en/lb_config.1:318
+#: en/lb_config.1:338
#, no-wrap
msgid "-d|B<--parent-debian-installer-distribution> I<CODENAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:320
+#: en/lb_config.1:340
msgid ""
"defines the parent debian-installer distribution for derivatives of the "
"resulting live system."
msgstr ""
#. type: IP
-#: en/lb_config.1:320
+#: en/lb_config.1:340
#, no-wrap
msgid "B<--dump>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:322
+#: en/lb_config.1:342
msgid ""
"prepares a report of the currently present live system configuration and the "
"version of live-build used. This is useful to provide if you submit bug "
@@ -1860,26 +1910,26 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:322
+#: en/lb_config.1:342
#, no-wrap
msgid "B<--fdisk> fdisk|fdisk.dist"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:324
+#: en/lb_config.1:344
msgid ""
"sets the filename of the fdisk binary from the host system that should be "
"used. This is autodetected and does generally not need any customization."
msgstr ""
#. type: IP
-#: en/lb_config.1:324 en/live-build.7:38
+#: en/lb_config.1:344 en/live-build.7:38
#, no-wrap
msgid "B<--force>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:326
+#: en/lb_config.1:346
msgid ""
"forces re-execution of already run stages. Use only if you know what you are "
"doing. It is generally safer to use B<lb clean> to clean up before re-"
@@ -1887,26 +1937,26 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:326
+#: en/lb_config.1:346
#, no-wrap
msgid "B<--grub-splash> I<FILE>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:328
+#: en/lb_config.1:348
msgid ""
"defines the name of an optional to be included splash screen graphic for the "
"grub bootloader."
msgstr ""
#. type: IP
-#: en/lb_config.1:328
+#: en/lb_config.1:348
#, no-wrap
msgid "B<--gzip-options> I<OPTION>|\"I<OPTIONS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:330
+#: en/lb_config.1:350
msgid ""
"defines the default options that will be appended to (almost) every gzip "
"call during the building of the image. By default, this is set to --best to "
@@ -1915,13 +1965,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:330
+#: en/lb_config.1:350
#, no-wrap
msgid "B<--hooks> I<FILE>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:332
+#: en/lb_config.1:352
msgid ""
"defines which hooks available in /usr/share/live/build/examples/hooks should "
"be activated. Normally, there are no hooks executed. Make sure you know and "
@@ -1929,24 +1979,24 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:332
+#: en/lb_config.1:352
#, no-wrap
msgid "B<--hostname> I<NAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:334
+#: en/lb_config.1:354
msgid "sets the hostname of the live system."
msgstr ""
#. type: IP
-#: en/lb_config.1:334
+#: en/lb_config.1:354
#, no-wrap
msgid "B<--ignore-system-defaults>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:336
+#: en/lb_config.1:356
msgid ""
"B<lb config> by default reads system defaults from /etc/live/build.conf and /"
"etc/live/build.d when generating a new live system config directory. This is "
@@ -1955,13 +2005,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:336
+#: en/lb_config.1:356
#, no-wrap
msgid "B<--includes> I<PATH|none>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:338
+#: en/lb_config.1:358
msgid ""
"sets the path to the includes that live-build is going to use, e.g. "
"additional minimal documentation that you want to have on all live systems. "
@@ -1970,13 +2020,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:338
+#: en/lb_config.1:358
#, no-wrap
msgid "B<--initramfs> auto|none|live-boot|casper"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:340
+#: en/lb_config.1:360
msgid ""
"sets the name of package that contains the live system specific initramfs "
"modification. By default, auto is used, which means that at build time of "
@@ -1987,13 +2037,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:340
+#: en/lb_config.1:360
#, no-wrap
msgid "B<--interactive> shell"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:342
+#: en/lb_config.1:362
msgid ""
"defines if after the chroot stage and before the beginning of the binary "
"stage, a interactive shell login should be spawned in the chroot in order to "
@@ -2007,24 +2057,24 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:342
+#: en/lb_config.1:362
#, no-wrap
msgid "B<--isohybrid-options> I<OPTION>|\"I<OPTIONS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:344
+#: en/lb_config.1:364
msgid "defines options to pass to isohybrid."
msgstr ""
#. type: IP
-#: en/lb_config.1:344
+#: en/lb_config.1:364
#, no-wrap
msgid "B<--iso-application> I<NAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:346
+#: en/lb_config.1:366
msgid ""
"sets the APPLICATION field in the header of a resulting CD/DVD image and "
"defaults to \"Debian Live\" in debian mode, and to \"Emdebian Live\" in "
@@ -2032,13 +2082,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:346
+#: en/lb_config.1:366
#, no-wrap
msgid "B<--iso-preparer> I<NAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:348
+#: en/lb_config.1:368
msgid ""
"sets the PREPARER field in the header of a resulting CD/DVD image. By "
"default this is set to \"live-build I<VERSION>; http://packages.qa.debian."
@@ -2047,13 +2097,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:348
+#: en/lb_config.1:368
#, no-wrap
msgid "B<--iso-publisher> I<NAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:350
+#: en/lb_config.1:370
msgid ""
"sets the PUBLISHED field in the header of a resulting CD/DVD image. By "
"default, this is set to 'Debian Live project; http:/live.debian.net/; debian-"
@@ -2062,13 +2112,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:350
+#: en/lb_config.1:370
#, no-wrap
msgid "B<--iso-volume> I<NAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:352
+#: en/lb_config.1:372
msgid ""
"sets the VOLUME field in the header of a resulting CD/DVD and defaults to "
"'(I<MODE>) (I<DISTRIBUTION>) (I<DATE>)' whereas MODE is expanded to the name "
@@ -2077,13 +2127,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:352
+#: en/lb_config.1:372
#, no-wrap
msgid "B<--jffs2-eraseblock> I<SIZE>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:354
+#: en/lb_config.1:374
msgid ""
"sets the eraseblock size for a JFFS2 (Second Journalling Flash File System) "
"filesystem. The default is 64 KiB. If you use an erase block size different "
@@ -2093,26 +2143,26 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:354
+#: en/lb_config.1:374
#, no-wrap
msgid "B<--keyring-packages> I<PACKAGE|\"PACKAGES>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:356
+#: en/lb_config.1:376
msgid ""
"sets the keyring package or additional keyring packages. By default this is "
"set to debian-archive-keyring."
msgstr ""
#. type: IP
-#: en/lb_config.1:356
+#: en/lb_config.1:376
#, no-wrap
msgid "-l|B<--language> I<LANGUAGE>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:358
+#: en/lb_config.1:378
msgid ""
"sets the language of a live system by installing l10n related packages. It "
"doesn't enable generation of the correct locales through setting the right "
@@ -2120,26 +2170,26 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:358
+#: en/lb_config.1:378
#, no-wrap
msgid "-k|B<--linux-flavours> I<FLAVOUR>|\"I<FLAVOURS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:360
+#: en/lb_config.1:380
msgid ""
"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."
msgstr ""
#. type: IP
-#: en/lb_config.1:360
+#: en/lb_config.1:380
#, no-wrap
msgid "B<--linux-packages> \"I<PACKAGES>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:362
+#: en/lb_config.1:382
msgid ""
"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 "
@@ -2153,26 +2203,26 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:362
+#: en/lb_config.1:382
#, no-wrap
msgid "B<--losetup> losetup|losetup.orig"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:364
+#: en/lb_config.1:384
msgid ""
"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."
msgstr ""
#. type: IP
-#: en/lb_config.1:364
+#: en/lb_config.1:384
#, no-wrap
msgid "B<--memtest> memtest86+|memtest86|none"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:366
+#: en/lb_config.1:386
msgid ""
"defines if memtest, memtest86+ or no memory tester at all should be included "
"as secondary bootloader configuration. This is only available on amd64 and "
@@ -2180,13 +2230,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:366
+#: en/lb_config.1:386
#, no-wrap
msgid "-m|B<--parent-mirror-bootstrap> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:368
+#: en/lb_config.1:388
msgid ""
"sets the location of the debian package mirror that should be used to "
"bootstrap from. This defaults to http://ftp.de.debian.org/debian/ which may "
@@ -2194,13 +2244,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:368
+#: en/lb_config.1:388
#, no-wrap
msgid "B<--parent-mirror-chroot> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:370
+#: en/lb_config.1:390
msgid ""
"sets the location of the debian package mirror that will be used to fetch "
"the packages in order to build the live system. By default, this is set to "
@@ -2208,13 +2258,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:370
+#: en/lb_config.1:390
#, no-wrap
msgid "B<--parent-mirror-chroot-security> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:372
+#: en/lb_config.1:392
msgid ""
"sets the location of the debian security package mirror that will be used to "
"fetch the packages in order to build the live system. By default, this "
@@ -2222,13 +2272,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:372
+#: en/lb_config.1:392
#, no-wrap
msgid "B<--parent-mirror-chroot-volatile> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:374
+#: en/lb_config.1:394
msgid ""
"sets the location of the debian volatile package mirror that will be used to "
"fetch packages in order to build the live system. By default, this is set to "
@@ -2236,13 +2286,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:374
+#: en/lb_config.1:394
#, no-wrap
msgid "B<--parent-mirror-chroot-backports> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:376
+#: en/lb_config.1:396
msgid ""
"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 "
@@ -2250,13 +2300,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:376
+#: en/lb_config.1:396
#, no-wrap
msgid "B<--parent-mirror-binary> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:378
+#: en/lb_config.1:398
msgid ""
"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 "
@@ -2266,13 +2316,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:378
+#: en/lb_config.1:398
#, no-wrap
msgid "B<--parent-mirror-binary-security> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:380
+#: en/lb_config.1:400
msgid ""
"sets the location of the debian security package mirror that should end up "
"configured in the final image. By default, 'http://cdn.debian.net/debian-"
@@ -2280,13 +2330,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:380
+#: en/lb_config.1:400
#, no-wrap
msgid "B<--parent-mirror-binary-volatile> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:382
+#: en/lb_config.1:402
msgid ""
"sets the location of the debian volatile package mirror that should end up "
"configured in the final image. By default, the value of --parent-mirror-"
@@ -2294,13 +2344,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:382
+#: en/lb_config.1:402
#, no-wrap
msgid "B<--parent-mirror-binary-backports> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:384
+#: en/lb_config.1:404
msgid ""
"sets the location of the debian backports package mirror that should end up "
"configured in the final image. By default, 'http://backports.debian.org/"
@@ -2308,13 +2358,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:384
+#: en/lb_config.1:404
#, no-wrap
msgid "B<--parent-mirror-debian-installer> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:386
+#: en/lb_config.1:406
msgid ""
"sets the location of the mirror that will be used to fetch the debian "
"installer images. By default, this points to the same mirror used to build "
@@ -2322,52 +2372,191 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:386
+#: en/lb_config.1:406
+#, no-wrap
+msgid "-m|B<--mirror-bootstrap> I<URL>"
+msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:408
+msgid ""
+"sets the location of the debian package mirror that should be used to "
+"bootstrap the derivative from. This defaults to http://ftp.de.debian.org/"
+"debian/ which may not be a good default if you live outside of Europe."
+msgstr ""
+
+#. type: IP
+#: en/lb_config.1:408
+#, no-wrap
+msgid "B<--mirror-chroot> I<URL>"
+msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:410
+msgid ""
+"sets the location of the debian package mirror that will be used to fetch "
+"the packages of the derivative in order to build the live system. By "
+"default, this is set to the value of --mirror-bootstrap."
+msgstr ""
+
+#. type: IP
+#: en/lb_config.1:410
+#, no-wrap
+msgid "B<--mirror-chroot-security> I<URL>"
+msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:412
+msgid ""
+"sets the location of the debian security package mirror that will be used to "
+"fetch the packages of the derivative in order to build the live system. By "
+"default, this points to http://security.debian.org/debian/."
+msgstr ""
+
+#. type: IP
+#: en/lb_config.1:412
+#, no-wrap
+msgid "B<--mirror-chroot-volatile> I<URL>"
+msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:414
+msgid ""
+"sets the location of the debian volatile package mirror that will be used to "
+"fetch packages of the derivative in order to build the live system. By "
+"default, this is set to the value of --mirror-chroot."
+msgstr ""
+
+#. type: IP
+#: en/lb_config.1:414
+#, no-wrap
+msgid "B<--mirror-chroot-backports> I<URL>"
+msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:416
+msgid ""
+"sets the location of the debian backports package mirror that will be used "
+"to fetch packages of the derivative in order to build the live system. By "
+"default, this points to http://backports.debian.org/debian-backports/."
+msgstr ""
+
+#. type: IP
+#: en/lb_config.1:416
+#, no-wrap
+msgid "B<--mirror-binary> I<URL>"
+msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:418
+msgid ""
+"sets the location of the derivative 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."
+msgstr ""
+
+#. type: IP
+#: en/lb_config.1:418
+#, no-wrap
+msgid "B<--mirror-binary-security> I<URL>"
+msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:420
+msgid ""
+"sets the location of the derivatives security package mirror that should end "
+"up configured in the final image."
+msgstr ""
+
+#. type: IP
+#: en/lb_config.1:420
+#, no-wrap
+msgid "B<--mirror-binary-volatile> I<URL>"
+msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:422
+msgid ""
+"sets the location of the derivatives volatile package mirror that should end "
+"up configured in the final image."
+msgstr ""
+
+#. type: IP
+#: en/lb_config.1:422
+#, no-wrap
+msgid "B<--mirror-binary-backports> I<URL>"
+msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:424
+msgid ""
+"sets the location of the derivatives backports package mirror that should "
+"end up configured in the final image."
+msgstr ""
+
+#. type: IP
+#: en/lb_config.1:424
+#, no-wrap
+msgid "B<--mirror-debian-installer> I<URL>"
+msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:426
+msgid ""
+"sets the location of the mirror that will be used to fetch the debian "
+"installer images of the derivative. By default, this points to the same "
+"mirror used to build the live system, i.e. the value of --mirror-bootstrap."
+msgstr ""
+
+#. type: IP
+#: en/lb_config.1:426
#, no-wrap
msgid "B<--mode> debian|emdebian|ubuntu"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:388
+#: en/lb_config.1:428
msgid ""
"defines a global mode to load project specific defaults. By default this is "
"set to debian."
msgstr ""
#. type: IP
-#: en/lb_config.1:388
+#: en/lb_config.1:428
#, no-wrap
msgid "B<--net-root-filesystem> nfs|cfs"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:390
+#: en/lb_config.1:430
msgid ""
"defines the filesystem that will be configured in the bootloader "
"configuration for your netboot image. This defaults to nfs."
msgstr ""
#. type: IP
-#: en/lb_config.1:390
+#: en/lb_config.1:430
#, no-wrap
msgid "B<--net-root-mountoptions> I<OPTIONS>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:392
+#: en/lb_config.1:432
msgid ""
"sets additional options for mounting the root filesystem in netboot images "
"and is by default empty."
msgstr ""
#. type: IP
-#: en/lb_config.1:392
+#: en/lb_config.1:432
#, no-wrap
msgid "B<--net-root-path> I<PATH>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:394
+#: en/lb_config.1:434
msgid ""
"sets the file path that will be configured in the bootloader configuration "
"for your netboot image. This defaults to /srv/debian-live in debian mode and "
@@ -2376,13 +2565,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:394
+#: en/lb_config.1:434
#, no-wrap
msgid "B<--net-root-server> I<IP>|I<HOSTNAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:396
+#: en/lb_config.1:436
msgid ""
"sets the IP or hostname that will be configured in the bootloader "
"configuration for the root filesystem of your netboot image. This defaults "
@@ -2390,38 +2579,38 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:396
+#: en/lb_config.1:436
#, no-wrap
msgid "B<--net-cow-filesystem> nfs|cfs"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:398
+#: en/lb_config.1:438
msgid ""
"defines the filesystem type for the copy-on-write layer and defaults to nfs."
msgstr ""
#. type: IP
-#: en/lb_config.1:398
+#: en/lb_config.1:438
#, no-wrap
msgid "B<--net-cow-mountoptions> I<OPTIONS>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:400
+#: en/lb_config.1:440
msgid ""
"sets additional options for mounting the copy-on-write layer in netboot "
"images and is by default empty."
msgstr ""
#. type: IP
-#: en/lb_config.1:400
+#: en/lb_config.1:440
#, no-wrap
msgid "B<--net-cow-path> I<PATH>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:402
+#: en/lb_config.1:442
msgid ""
"defines the path to client writable filesystem. Anywhere that "
"I<client_mac_address> is specified in the path live-boot will substitute the "
@@ -2429,28 +2618,28 @@ msgid ""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:405
+#: en/lb_config.1:445
msgid "Example:"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:407
+#: en/lb_config.1:447
msgid "/export/hosts/client_mac_address"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:409
+#: en/lb_config.1:449
msgid "/export/hosts/00-16-D3-33-92-E8"
msgstr ""
#. type: IP
-#: en/lb_config.1:409
+#: en/lb_config.1:449
#, no-wrap
msgid "B<--net-cow-server> I<IP>|I<HOSTNAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:411
+#: en/lb_config.1:451
msgid ""
"sets the IP or hostname that will be configured in the bootloader "
"configuration for the copy-on-write filesystem of your netboot image and is "
@@ -2458,13 +2647,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:411
+#: en/lb_config.1:451
#, no-wrap
msgid "B<--net-tarball> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:413
+#: en/lb_config.1:453
msgid ""
"defines if a compressed tarball should be created. Disabling this options "
"leads to no tarball at all, the plain binary directory is considered the "
@@ -2472,13 +2661,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:413
+#: en/lb_config.1:453
#, no-wrap
msgid "-p|B<--package-lists> I<LIST>|\"I<LISTS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:415
+#: en/lb_config.1:455
msgid ""
"defines which lists available in /usr/share/live/build/lists should be used. "
"By default, this is set to standard. Note that in case you have local "
@@ -2488,13 +2677,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:415
+#: en/lb_config.1:455
#, no-wrap
msgid "B<--packages> I<PACKAGE>|\"I<PACKAGES>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:417
+#: en/lb_config.1:457
msgid ""
"defines one or more packages to be installed in the live system. This is a "
"quick and convenient place to add a few packages when building an image "
@@ -2503,37 +2692,37 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:417 en/live-build.7:40
+#: en/lb_config.1:457 en/live-build.7:40
#, no-wrap
msgid "B<--quiet>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:419
+#: en/lb_config.1:459
msgid "reduces the verbosity of messages output by B<lb build>."
msgstr ""
#. type: IP
-#: en/lb_config.1:419
+#: en/lb_config.1:459
#, no-wrap
msgid "-r|B<--repositories> I<REPOSITORY>|\"I<REPOSITORIES>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:421
+#: en/lb_config.1:461
msgid ""
"enables one of available third-party repository configurations in /usr/share/"
"live/build/repositories."
msgstr ""
#. type: IP
-#: en/lb_config.1:421
+#: en/lb_config.1:461
#, no-wrap
msgid "B<--root-command> sudo"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:423
+#: en/lb_config.1:463
msgid ""
"controls if live-build should use sudo internally to build the live image. "
"Note that this is not well tested and that you should, when relying on sudo, "
@@ -2541,13 +2730,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:423
+#: en/lb_config.1:463
#, no-wrap
msgid "B<--use-fakeroot> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:425
+#: en/lb_config.1:465
msgid ""
"controls if live-build should utilize fakeroot and fakechroot to try and "
"avoid requiring root privillages where possible. By default, this option is "
@@ -2555,13 +2744,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:425
+#: en/lb_config.1:465
#, no-wrap
msgid "B<--archive-areas> I<ARCHIVE_AREA>|\"I<ARCHIVE_AREAS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:427
+#: en/lb_config.1:467
msgid ""
"defines which package archive areas of a debian packages archive should be "
"used for configured debian package mirrors. By default, this is set to main. "
@@ -2571,26 +2760,26 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:427
+#: en/lb_config.1:467
#, no-wrap
msgid "B<--security> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:429
+#: en/lb_config.1:469
msgid ""
"defines if the security repositories specified in the security mirror "
"options should be used or not."
msgstr ""
#. type: IP
-#: en/lb_config.1:429
+#: en/lb_config.1:469
#, no-wrap
msgid "B<--source> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:431
+#: en/lb_config.1:471
msgid ""
"defines if a corresponding source image to the binary image should be build. "
"By default this is false because most people do not require this and would "
@@ -2600,37 +2789,37 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:431
+#: en/lb_config.1:471
#, no-wrap
msgid "-s|B<--source-images> iso|net|tar|usb-hdd"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:433
+#: en/lb_config.1:473
msgid "defines the image type for the source image. Default is tar."
msgstr ""
#. type: IP
-#: en/lb_config.1:433
+#: en/lb_config.1:473
#, no-wrap
msgid "B<--syslinux-splash> I<FILE>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:435
+#: en/lb_config.1:475
msgid ""
"defines the file of the syslinux splash graphic that should be used instead "
"of the default one."
msgstr ""
#. type: IP
-#: en/lb_config.1:435
+#: en/lb_config.1:475
#, no-wrap
msgid "B<--syslinux-timeout> I<SECONDS>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:437
+#: en/lb_config.1:477
msgid ""
"defines the timeout the syslinux bootloader should wait for input from the "
"user at the bootprompt prior booting the default kernel. This defaults to 0 "
@@ -2638,38 +2827,38 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:437
+#: en/lb_config.1:477
#, no-wrap
msgid "B<--syslinux-menu> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:439
+#: en/lb_config.1:479
msgid ""
"defines if syslinux should be make use of the vgamenu capabilities or not."
msgstr ""
#. type: IP
-#: en/lb_config.1:439
+#: en/lb_config.1:479
#, no-wrap
msgid "B<--tasksel> aptitude|tasksel"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:441
+#: en/lb_config.1:481
msgid ""
"selects which program is used to install tasks. By default, this is set to "
"tasksel."
msgstr ""
#. type: IP
-#: en/lb_config.1:441
+#: en/lb_config.1:481
#, no-wrap
msgid "B<--tasks> I<TASK>|\"I<TASKS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:443
+#: en/lb_config.1:483
msgid ""
"defines one or more package tasks to be installed in the live system. This "
"is a quick and convenient way to get a reasonable default selection of "
@@ -2679,26 +2868,26 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:443
+#: en/lb_config.1:483
#, no-wrap
msgid "B<--templates> I<PATH>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:445
+#: en/lb_config.1:485
msgid ""
"sets the path to the templates that live-build is going to use, e.g. for "
"bootloaders. By default, this is set to /usr/share/live/build/templates/."
msgstr ""
#. type: IP
-#: en/lb_config.1:445
+#: en/lb_config.1:485
#, no-wrap
msgid "B<--virtual-root-size> MB"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:447
+#: en/lb_config.1:487
msgid ""
"defines what size the virtual-hdd image should be. Note that although the "
"default is set to 10000 (= 10GB), it will not need 10GB space on your "
@@ -2706,39 +2895,39 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:447
+#: en/lb_config.1:487
#, no-wrap
msgid "B<--volatile> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:449
+#: en/lb_config.1:489
msgid ""
"defines if debian volatile package archives should be included in the image "
"or not."
msgstr ""
#. type: IP
-#: en/lb_config.1:449
+#: en/lb_config.1:489
#, no-wrap
msgid "B<--backports> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:451
+#: en/lb_config.1:491
msgid ""
"defines if debian backports package archives should be included in the image "
"or not."
msgstr ""
#. type: IP
-#: en/lb_config.1:451
+#: en/lb_config.1:491
#, no-wrap
msgid "B<--exposed-root> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:453
+#: en/lb_config.1:493
msgid ""
"defines whether to expose the root filesystem as read only and not covered "
"by the union filesystem. This has useful implications for certain speciality "
@@ -2746,48 +2935,48 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:453
+#: en/lb_config.1:493
#, no-wrap
msgid "B<--username> I<NAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:455
+#: en/lb_config.1:495
msgid "sets the name of the account of the default user in the live system."
msgstr ""
#. type: IP
-#: en/lb_config.1:455 en/live-build.7:42
+#: en/lb_config.1:495 en/live-build.7:42
#, no-wrap
msgid "B<--verbose>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:457
+#: en/lb_config.1:497
msgid "increases the verbosity of messages output by B<lb build>."
msgstr ""
#. type: IP
-#: en/lb_config.1:457
+#: en/lb_config.1:497
#, no-wrap
msgid "B<--win32-loader true|false>"
msgstr ""
#. FIXME
#. type: Plain text
-#: en/lb_config.1:460
+#: en/lb_config.1:500
msgid "defines if win32-loader should be included in the binary image or not."
msgstr ""
#. type: SH
-#: en/lb_config.1:461
+#: en/lb_config.1:501
#, no-wrap
msgid "ENVIRONMENT"
msgstr ""
#. FIXME
#. type: Plain text
-#: en/lb_config.1:464
+#: en/lb_config.1:504
msgid ""
"Currently, command line switches can also be specified through the "
"corresponding environment variable. However, this generally should not be "
@@ -2801,20 +2990,20 @@ msgstr ""
#. FIXME
#. type: IP
-#: en/lb_config.1:468
+#: en/lb_config.1:508
#, no-wrap
msgid "B<auto/config>"
msgstr ""
#. type: IP
-#: en/lb_config.1:469
+#: en/lb_config.1:509
#, no-wrap
msgid "B</etc/live/build.conf, /etc/live/build.d>"
msgstr ""
#. FIXME
#. type: Plain text
-#: en/lb_config.1:472
+#: en/lb_config.1:512
msgid ""
"An optional, global configuration file for B<lb config> variables. It is "
"useful to specify a few system wide defaults, like "
diff --git a/scripts/build/lb_config b/scripts/build/lb_config
index 2eb8f0a04..edb040df2 100755
--- a/scripts/build/lb_config
+++ b/scripts/build/lb_config
@@ -103,6 +103,16 @@ USAGE="${PROGRAM} [--apt apt|aptitude]\n\
\t [--parent-mirror-binary-volatile URL]\n\
\t [--parent-mirror-binary-backports URL]\n\
\t [--parent-mirror-debian-installer URL]\n\
+\t [--mirror-bootstrap URL]\n\
+\t [--mirror-chroot URL]\n\
+\t [--mirror-chroot-security URL]\n\
+\t [--mirror-chroot-volatile URL]\n\
+\t [--mirror-chroot-backports URL]\n\
+\t [--mirror-binary URL]\n\
+\t [--mirror-binary-security URL]\n\
+\t [--mirror-binary-volatile URL]\n\
+\t [--mirror-binary-backports URL]\n\
+\t [--mirror-debian-installer URL]\n\
\t [--mode debian|emdebian|ubuntu]\n\
\t [--net-root-filesystem nfs|cfs]\n\
\t [--net-root-mountoptions OPTIONS]\n\
@@ -143,7 +153,10 @@ Local_arguments ()
initramfs:,initsystem:,fdisk:,losetup:,mode:,repositories:,root-command:,use-fakeroot:,tasksel:,includes:,
templates:,architectures:,bootstrap-config:,bootstrap-flavour:,bootstrap-keyring:,clean,
distribution:,parent-distribution:,parent-debian-installer-distribution:,parent-mirror-bootstrap:,parent-mirror-chroot:,parent-mirror-chroot-security:,parent-mirror-chroot-volatile:,parent-mirror-chroot-backports:,parent-mirror-binary:,
- parent-mirror-binary-security:,parent-mirror-binary-volatile:,parent-mirror-binary-backports:,parent-mirror-debian-installer:,archive-areas:,chroot-filesystem:,exposed-root:,virtual-root-size:,
+ parent-mirror-binary-security:,parent-mirror-binary-volatile:,parent-mirror-binary-backports:,parent-mirror-debian-installer:,
+ mirror-bootstrap:,mirror-chroot:,mirror-chroot-security:,mirror-chroot-volatile:,mirror-chroot-backports:,mirror-binary:,
+ mirror-binary-security:,mirror-binary-volatile:,mirror-binary-backports:,mirror-debian-installer:,
+ archive-areas:,chroot-filesystem:,exposed-root:,virtual-root-size:,
gzip-options:,hooks:,interactive:,keyring-packages:,language:,linux-flavours:,linux-packages:,
packages:,package-lists:,tasks:,security:,volatile:,backports:,binary-filesystem:,binary-images:,
apt-indices:,bootappend-install:,bootappend-live:,bootloader:,checksums:,compression:,build-with-chroot:,
@@ -395,11 +408,6 @@ Local_arguments ()
shift 2
;;
- --parent-debian-installer-distribution)
- LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION="${2}"
- shift 2
- ;;
-
-m|--parent-mirror-bootstrap)
LB_PARENT_MIRROR_BOOTSTRAP="${2}"
shift 2
@@ -450,6 +458,56 @@ Local_arguments ()
shift 2
;;
+ --mirror-bootstrap)
+ LB_MIRROR_BOOTSTRAP="${2}"
+ shift 2
+ ;;
+
+ --mirror-chroot)
+ LB_MIRROR_CHROOT="${2}"
+ shift 2
+ ;;
+
+ --mirror-chroot-security)
+ LB_MIRROR_CHROOT_SECURITY="${2}"
+ shift 2
+ ;;
+
+ --mirror-chroot-volatile)
+ LB_MIRROR_CHROOT_VOLATILE="${2}"
+ shift 2
+ ;;
+
+ --mirror-chroot-backports)
+ LB_MIRROR_CHROOT_BACKPORTS="${2}"
+ shift 2
+ ;;
+
+ --mirror-binary)
+ LB_MIRROR_BINARY="${2}"
+ shift 2
+ ;;
+
+ --mirror-binary-security)
+ LB_MIRROR_BINARY_SECURITY="${2}"
+ shift 2
+ ;;
+
+ --mirror-binary-volatile)
+ LB_MIRROR_BINARY_VOLATILE="${2}"
+ shift 2
+ ;;
+
+ --mirror-binary-backports)
+ LB_MIRROR_BINARY_BACKPORTS="${2}"
+ shift 2
+ ;;
+
+ --mirror-debian-installer)
+ LB_MIRROR_DEBIAN_INSTALLER="${2}"
+ shift 2
+ ;;
+
--archive-areas)
LB_ARCHIVE_AREAS="${2}"
shift 2
@@ -587,6 +645,11 @@ Local_arguments ()
shift 2
;;
+ --parent-debian-installer-distribution)
+ LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION="${2}"
+ shift 2
+ ;;
+
--debian-installer-preseedfile)
LB_DEBIAN_INSTALLER_PRESEEDFILE="${2}"
shift 2
@@ -1033,6 +1096,46 @@ LB_PARENT_MIRROR_BINARY_BACKPORTS="${LB_PARENT_MIRROR_BINARY_BACKPORTS}"
# (Default: ${LB_PARENT_MIRROR_BOOTSTRAP})
LB_PARENT_MIRROR_DEBIAN_INSTALLER="${LB_PARENT_MIRROR_DEBIAN_INSTALLER}"
+# \$LB_MIRROR_BOOTSTRAP: set mirror to bootstrap from
+# (Default: ${LB_MIRROR_BOOTSTRAP})
+LB_MIRROR_BOOTSTRAP="${LB_MIRROR_BOOTSTRAP}"
+
+# \$LB_MIRROR_CHROOT: set mirror to fetch packages from
+# (Default: ${LB_MIRROR_CHROOT})
+LB_MIRROR_CHROOT="${LB_MIRROR_CHROOT}"
+
+# \$LB_MIRROR_CHROOT_SECURITY: set security mirror to fetch packages from
+# (Default: ${LB_MIRROR_CHROOT_SECURITY})
+LB_MIRROR_CHROOT_SECURITY="${LB_MIRROR_CHROOT_SECURITY}"
+
+# \$LB_MIRROR_CHROOT_VOLATILE: set volatile mirror to fetch packages from
+# (Default: ${LB_MIRROR_CHROOT_VOLATILE})
+LB_MIRROR_CHROOT_VOLATILE="${LB_MIRROR_CHROOT_VOLATILE}"
+
+# \$LB_MIRROR_CHROOT_BACKPORTS: set backports mirror to fetch packages from
+# (Default: ${LB_MIRROR_CHROOT_BACKPORTS})
+LB_MIRROR_CHROOT_BACKPORTS="${LB_MIRROR_CHROOT_BACKPORTS}"
+
+# \$LB_MIRROR_BINARY: set mirror which ends up in the image
+# (Default: ${LB_MIRROR_BINARY})
+LB_MIRROR_BINARY="${LB_MIRROR_BINARY}"
+
+# \$LB_MIRROR_BINARY_SECURITY: set security mirror which ends up in the image
+# (Default: ${LB_MIRROR_BINARY_SECURITY})
+LB_MIRROR_BINARY_SECURITY="${LB_MIRROR_BINARY_SECURITY}"
+
+# \$LB_MIRROR_BINARY_VOLATILE: set volatile mirror which ends up in the image
+# (Default: ${LB_MIRROR_BINARY_VOLATILE})
+LB_MIRROR_BINARY_VOLATILE="${LB_MIRROR_BINARY_VOLATILE}"
+
+# \$LB_MIRROR_BINARY_BACKPORTS: set backports mirror which ends up in the image
+# (Default: ${LB_MIRROR_BINARY_BACKPORTS})
+LB_MIRROR_BINARY_BACKPORTS="${LB_MIRROR_BINARY_BACKPORTS}"
+
+# \$LB_MIRROR_DEBIAN_INSTALLER: set debian-installer mirror
+# (Default: ${LB_MIRROR_BOOTSTRAP})
+LB_MIRROR_DEBIAN_INSTALLER="${LB_MIRROR_DEBIAN_INSTALLER}"
+
# \$LB_ARCHIVE_AREAS: select archive areas to use
# (Default: ${LB_ARCHIVE_AREAS})
LB_ARCHIVE_AREAS="${LB_ARCHIVE_AREAS}"