summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2011-01-07 21:56:33 +0100
committerDaniel Baumann <daniel@debian.org>2011-03-09 19:20:41 +0100
commit6d87f0dde3a22c9c49a727025913484e35819dbf (patch)
tree36de314485f69c21100ce5cec8c3216b1ae69e42
parent8f4fb88a7161d924be52587d24087a4f10d60a75 (diff)
downloadvyos-live-build-6d87f0dde3a22c9c49a727025913484e35819dbf.tar.gz
vyos-live-build-6d87f0dde3a22c9c49a727025913484e35819dbf.zip
Adding derivatives handling for progress.
-rwxr-xr-xfunctions/defaults.sh22
-rw-r--r--manpages/de/lb_config.de.15
-rw-r--r--manpages/en/lb_config.14
-rw-r--r--manpages/po/de/lb_config.1.po613
-rw-r--r--manpages/pot/lb_config.1.pot613
-rw-r--r--repositories/progress-linux_artax7
-rw-r--r--repositories/progress-linux_artax-backports15
-rw-r--r--repositories/progress-linux_artax-backports.gpg53
-rw-r--r--repositories/progress-linux_artax.gpg53
-rw-r--r--repositories/progress-linux_baureo7
-rw-r--r--repositories/progress-linux_baureo.gpg53
-rwxr-xr-xscripts/build/lb_binary_debian-installer12
-rwxr-xr-xscripts/build/lb_binary_disk6
-rwxr-xr-xscripts/build/lb_binary_local-packagelists6
-rwxr-xr-xscripts/build/lb_bootstrap_cdebootstrap4
-rwxr-xr-xscripts/build/lb_bootstrap_debootstrap4
-rwxr-xr-xscripts/build/lb_chroot_hacks2
-rwxr-xr-xscripts/build/lb_chroot_sources54
-rwxr-xr-xscripts/build/lb_config12
19 files changed, 902 insertions, 643 deletions
diff --git a/functions/defaults.sh b/functions/defaults.sh
index 9e4f8415a..d8698d5d3 100755
--- a/functions/defaults.sh
+++ b/functions/defaults.sh
@@ -20,15 +20,24 @@ Set_defaults ()
# Setting distribution name
case "${LB_MODE}" in
progress)
+ _DERIVATIVE="true"
+
LB_DISTRIBUTION="${LB_DISTRIBUTION:-artax}"
+ LB_PARENT_DISTRIBUTION="${LB_PARENT_DISTRIBUTION:-squeeze}"
;;
ubuntu)
+ _DERIVATIVE="false"
+
LB_DISTRIBUTION="${LB_DISTRIBUTION:-karmic}"
+ LB_PARENT_DISTRIBUTION="${LB_DISTRIBUTION}"
;;
*)
+ _DERIVATIVE="false"
+
LB_DISTRIBUTION="${LB_DISTRIBUTION:-squeeze}"
+ LB_PARENT_DISTRIBUTION="${LB_DISTRIBUTION}"
;;
esac
@@ -431,6 +440,15 @@ Set_defaults ()
LB_MIRROR_DEBIAN_INSTALLER="${LB_MIRROR_DEBIAN_INSTALLER:-${LB_MIRROR_BOOTSTRAP}}"
+ if [ -z "${LB_REPOSITORIES}" ]
+ then
+ case "${LB_MODE}" in
+ progress)
+ LB_REPOSITORIES="progress-linux_${LB_DISTRIBUTION}"
+ ;;
+ esac
+ fi
+
# Setting archive areas value
case "${LB_MODE}" in
ubuntu)
@@ -761,7 +779,7 @@ Set_defaults ()
esac
# Setting debian-installer distribution
- LB_DEBIAN_INSTALLER_DISTRIBUTION="${LB_DEBIAN_INSTALLER_DISTRIBUTION:-${LB_DISTRIBUTION}}"
+ LB_DEBIAN_INSTALLER_DISTRIBUTION="${LB_DEBIAN_INSTALLER_DISTRIBUTION:-${LB_PARENT_DISTRIBUTION}}"
# Setting debian-installer-gui
case "${LB_MODE}" in
@@ -891,7 +909,7 @@ Set_defaults ()
# Setting win32-loader option
case "${LB_MODE}" in
progress|ubuntu)
- ::
+
;;
*)
diff --git a/manpages/de/lb_config.de.1 b/manpages/de/lb_config.de.1
index c27f1eb15..153ea20fe 100644
--- a/manpages/de/lb_config.de.1
+++ b/manpages/de/lb_config.de.1
@@ -90,6 +90,8 @@
.br
[\-d|\fB\-\-distribution\fP \fICODENAME\fP]
.br
+ [\fB\-\-parent\-distribution\fP \fICODENAME\fP]
+.br
[\fB\-\-dump\fP]
.br
[\fB\-\-fdisk\fP fdisk|fdisk.dist]
@@ -435,6 +437,9 @@ whereas otherwise false, by default.
turn on debugging informational messages.
.IP "\-d|\fB\-\-distribution\fP \fICODENAME\fP" 4
defines the distribution of the resulting live system.
+.IP "\-d|\fB\-\-parent\-distribution\fP \fICODENAME\fP" 4
+defines the parent distribution for derivatives of the resulting live
+system.
.IP \fB\-\-dump\fP 4
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
diff --git a/manpages/en/lb_config.1 b/manpages/en/lb_config.1
index 215ae089d..d6a95bca5 100644
--- a/manpages/en/lb_config.1
+++ b/manpages/en/lb_config.1
@@ -85,6 +85,8 @@
.br
[\-d|\fB\-\-distribution\fR \fICODENAME\fR]
.br
+ [\fB\-\-parent\-distribution\fR \fICODENAME\fR]
+.br
[\fB\-\-dump\fR]
.br
[\fB\-\-fdisk\fR fdisk|fdisk.dist]
@@ -307,6 +309,8 @@ defines if the debian\-installer graphical GTK interface should be true or not.
turn on debugging informational messages.
.IP "\-d|\fB\-\-distribution\fR \fICODENAME\fR" 4
defines the distribution of the resulting live system.
+.IP "\-d|\fB\-\-parent\-distribution\fR \fICODENAME\fR" 4
+defines the parent distribution for derivatives of the resulting live system.
.IP "\fB\-\-dump\fR" 4
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 reports, we do get all informations required for us to locate and replicate an error.
.IP "\fB\-\-fdisk\fR fdisk|fdisk.dist" 4
diff --git a/manpages/po/de/lb_config.1.po b/manpages/po/de/lb_config.1.po
index 8e77d1f73..415136dec 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-01-07 21:06+0100\n"
+"POT-Creation-Date: 2011-01-07 21:27+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:221 en/lb_local.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:223 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:230
+#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:232
#: 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:456
+#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:460
#: 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:463
+#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:467
#: 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:465
+#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:469
#: 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:467
+#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:471
#: 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:468
+#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:472
#: 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:470
+#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:474
#: 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:471
+#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:475
#: 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:473
+#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:477
#: 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:474
+#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:478
#: 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:475
+#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:479
#: 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
@@ -875,337 +875,342 @@ msgstr ""
#. type: Plain text
#: en/lb_config.1:89
-msgid " [B<--dump>]"
+msgid " [B<--parent-distribution> I<CODENAME>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:91
-msgid " [B<--fdisk> fdisk|fdisk.dist]"
+msgid " [B<--dump>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:93
-msgid " [B<--force>]"
+msgid " [B<--fdisk> fdisk|fdisk.dist]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:95
-msgid " [B<--grub-splash> I<FILE>]"
+msgid " [B<--force>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:97
-msgid " [B<--gzip-options> I<OPTION>|\"I<OPTIONS>\"]"
+msgid " [B<--grub-splash> I<FILE>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:99
-msgid " [B<--hooks> I<FILE>]"
+msgid " [B<--gzip-options> I<OPTION>|\"I<OPTIONS>\"]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:101
-msgid " [B<--hostname> I<NAME>]"
+msgid " [B<--hooks> I<FILE>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:103
-msgid " [B<--ignore-system-defaults>]"
+msgid " [B<--hostname> I<NAME>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:105
-msgid " [B<--includes> I<PATH>]"
+msgid " [B<--ignore-system-defaults>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:107
-msgid " [B<--initramfs> auto|none|live-boot|casper]"
+msgid " [B<--includes> I<PATH>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:109
-msgid " [B<--interactive> shell]"
+msgid " [B<--initramfs> auto|none|live-boot|casper]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:111
-msgid " [B<--isohybrid-options> I<OPTION>|\"I<OPTIONS>\"]"
+msgid " [B<--interactive> shell]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:113
-msgid " [B<--iso-application> I<NAME>]"
+msgid " [B<--isohybrid-options> I<OPTION>|\"I<OPTIONS>\"]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:115
-msgid " [B<--iso-preparer> I<NAME>]"
+msgid " [B<--iso-application> I<NAME>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:117
-msgid " [B<--iso-publisher> I<NAME>]"
+msgid " [B<--iso-preparer> I<NAME>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:119
-msgid " [B<--iso-volume> I<NAME>]"
+msgid " [B<--iso-publisher> I<NAME>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:121
-msgid " [B<--jffs2-eraseblock> I<SIZE>]"
+msgid " [B<--iso-volume> I<NAME>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:123
-msgid " [B<--keyring-packages> I<PACKAGE|\"PACKAGES\">]"
+msgid " [B<--jffs2-eraseblock> I<SIZE>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:125
-msgid " [-l|B<--language> I<LANGUAGE>]"
+msgid " [B<--keyring-packages> I<PACKAGE|\"PACKAGES\">]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:127
-msgid " [-k|B<--linux-flavours> I<FLAVOUR>|I<\"FLAVOURS\">]"
+msgid " [-l|B<--language> I<LANGUAGE>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:129
-msgid " [B<--linux-packages> I<\"PACKAGES\">]"
+msgid " [-k|B<--linux-flavours> I<FLAVOUR>|I<\"FLAVOURS\">]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:131
-msgid " [B<--losetup> losetup|losetup.orig]"
+msgid " [B<--linux-packages> I<\"PACKAGES\">]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:133
-msgid " [B<--memtest> memtest86+|memtest86|none]"
+msgid " [B<--losetup> losetup|losetup.orig]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:135
-msgid " [-m|B<--mirror-bootstrap> I<URL>]"
+msgid " [B<--memtest> memtest86+|memtest86|none]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:137
-msgid " [B<--mirror-chroot> I<URL>]"
+msgid " [-m|B<--mirror-bootstrap> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:139
-msgid " [B<--mirror-chroot-security> I<URL>]"
+msgid " [B<--mirror-chroot> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:141
-msgid " [B<--mirror-chroot-volatile> I<URL>]"
+msgid " [B<--mirror-chroot-security> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:143
-msgid " [B<--mirror-chroot-backports> I<URL>]"
+msgid " [B<--mirror-chroot-volatile> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:145
-msgid " [B<--mirror-binary> I<URL>]"
+msgid " [B<--mirror-chroot-backports> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:147
-msgid " [B<--mirror-binary-security> I<URL>]"
+msgid " [B<--mirror-binary> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:149
-msgid " [B<--mirror-binary-volatile> I<URL>]"
+msgid " [B<--mirror-binary-security> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:151
-msgid " [B<--mirror-binary-backports> I<URL>]"
+msgid " [B<--mirror-binary-volatile> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:153
-msgid " [B<--mirror-debian-installer> I<URL>]"
+msgid " [B<--mirror-binary-backports> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:155
-msgid " [B<--mode> debian|emdebian|ubuntu]"
+msgid " [B<--mirror-debian-installer> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:157
-msgid " [B<--net-root-filesystem> nfs|cfs]"
+msgid " [B<--mode> debian|emdebian|ubuntu]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:159
-msgid " [B<--net-root-mountoptions> I<OPTIONS>]"
+msgid " [B<--net-root-filesystem> nfs|cfs]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:161
-msgid " [B<--net-root-path> I<PATH>]"
+msgid " [B<--net-root-mountoptions> I<OPTIONS>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:163
-msgid " [B<--net-root-server> I<IP>|I<HOSTNAME>]"
+msgid " [B<--net-root-path> I<PATH>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:165
-msgid " [B<--net-cow-filesystem> nfs|cfs]"
+msgid " [B<--net-root-server> I<IP>|I<HOSTNAME>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:167
-msgid " [B<--net-cow-mountoptions> I<OPTIONS>]"
+msgid " [B<--net-cow-filesystem> nfs|cfs]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:169
-msgid " [B<--net-cow-path> I<PATH>]"
+msgid " [B<--net-cow-mountoptions> I<OPTIONS>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:171
-msgid " [B<--net-cow-server> I<IP>|I<HOSTNAME>]"
+msgid " [B<--net-cow-path> I<PATH>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:173
-msgid " [B<--net-tarball> true|false]"
+msgid " [B<--net-cow-server> I<IP>|I<HOSTNAME>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:175
-msgid " [-p|B<--package-lists> I<LIST>|I<\"LISTS\">]"
+msgid " [B<--net-tarball> true|false]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:177
-msgid " [B<--packages> I<PACKAGE>|I<\"PACKAGES\">]"
+msgid " [-p|B<--package-lists> I<LIST>|I<\"LISTS\">]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:179
-msgid " [B<--quiet>]"
+msgid " [B<--packages> I<PACKAGE>|I<\"PACKAGES\">]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:181
-msgid " [-r|B<--repositories >I<REPOSITORY>|I<\"REPOSITORIES\">]"
+msgid " [B<--quiet>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:183
-msgid " [B<--root-command> sudo]"
+msgid " [-r|B<--repositories >I<REPOSITORY>|I<\"REPOSITORIES\">]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:185
-msgid " [B<--use-fakeroot> true|false]"
+msgid " [B<--root-command> sudo]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:187
-msgid " [B<--archive-areas> I<ARCHIVE_AREA>|I<\"ARCHIVE_AREAS\">]"
+msgid " [B<--use-fakeroot> true|false]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:189
-msgid " [B<--security> true|false]"
+msgid " [B<--archive-areas> I<ARCHIVE_AREA>|I<\"ARCHIVE_AREAS\">]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:191
-msgid " [B<--source> true|false]"
+msgid " [B<--security> true|false]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:193
-msgid " [-s|B<--source-images> iso|net|tar|usb-hdd]"
+msgid " [B<--source> true|false]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:195
-msgid " [B<--syslinux-splash> I<FILE>]"
+msgid " [-s|B<--source-images> iso|net|tar|usb-hdd]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:197
-msgid " [B<--syslinux-timeout> I<SECONDS>]"
+msgid " [B<--syslinux-splash> I<FILE>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:199
-msgid " [B<--syslinux-menu> true|false]"
+msgid " [B<--syslinux-timeout> I<SECONDS>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:201
-msgid " [B<--tasksel> aptitude|tasksel]"
+msgid " [B<--syslinux-menu> true|false]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:203
-msgid " [B<--tasks> I<TASK>|\"I<TASKS>\"]"
+msgid " [B<--tasksel> aptitude|tasksel]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:205
-msgid " [B<--templates> I<PATH>]"
+msgid " [B<--tasks> I<TASK>|\"I<TASKS>\"]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:207
-msgid " [B<--virtual-root-size >I<MB>]"
+msgid " [B<--templates> I<PATH>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:209
-msgid " [B<--volatile> true|false]"
+msgid " [B<--virtual-root-size >I<MB>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:211
-msgid " [B<--backports> true|false]"
+msgid " [B<--volatile> true|false]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:213
-msgid " [B<--exposed-root> true|false]"
+msgid " [B<--backports> true|false]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:215
-msgid " [B<--username> I<NAME>]"
+msgid " [B<--exposed-root> true|false]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:217
+msgid " [B<--username> I<NAME>]"
+msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:219
msgid " [B<--verbose>]"
msgstr ""
#. FIXME
#. type: Plain text
-#: en/lb_config.1:220
+#: en/lb_config.1:222
msgid " [B<--win32-loader true|false]>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:223
+#: en/lb_config.1:225
msgid ""
"B<lb config> is a high-level command (porcelain) of I<live-build>(7), the "
"Debian Live tool suite."
@@ -1213,7 +1218,7 @@ msgstr ""
#. FIXME
#. type: Plain text
-#: en/lb_config.1:226
+#: en/lb_config.1:228
msgid ""
"B<lb config> populates the configuration directory for live-build. By "
"default, this directory is named 'config' and is created in the current "
@@ -1222,7 +1227,7 @@ msgstr ""
#. FIXME
#. type: Plain text
-#: en/lb_config.1:229
+#: en/lb_config.1:231
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 "
@@ -1238,7 +1243,7 @@ msgid ""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:232
+#: en/lb_config.1:234
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 "
@@ -1247,26 +1252,26 @@ msgstr ""
#. FIXME
#. type: IP
-#: en/lb_config.1:234
+#: en/lb_config.1:236
#, no-wrap
msgid "B<--apt> apt|aptitude"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:236
+#: en/lb_config.1:238
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:236
+#: en/lb_config.1:238
#, no-wrap
msgid "B<--apt-ftp-proxy> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:238
+#: en/lb_config.1:240
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 "
@@ -1274,13 +1279,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:238
+#: en/lb_config.1:240
#, no-wrap
msgid "B<--apt-http-proxy> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:240
+#: en/lb_config.1:242
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 "
@@ -1288,26 +1293,26 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:240
+#: en/lb_config.1:242
#, no-wrap
msgid "B<--apt-indices> true|false|none"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:242
+#: en/lb_config.1:244
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:242
+#: en/lb_config.1:244
#, no-wrap
msgid "B<--apt-options> I<OPTION>|\"I<OPTIONS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:244
+#: en/lb_config.1:246
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 "
@@ -1315,13 +1320,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:244
+#: en/lb_config.1:246
#, no-wrap
msgid "B<--aptitude-options> I<OPTION>|\"I<OPTIONS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:246
+#: en/lb_config.1:248
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 "
@@ -1329,13 +1334,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:246
+#: en/lb_config.1:248
#, no-wrap
msgid "B<--apt-pipeline> I<DEPTH>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:248
+#: en/lb_config.1:250
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 "
@@ -1347,38 +1352,38 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:248
+#: en/lb_config.1:250
#, no-wrap
msgid "B<--apt-recommends> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:250
+#: en/lb_config.1:252
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:250
+#: en/lb_config.1:252
#, no-wrap
msgid "B<--apt-secure> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:252
+#: en/lb_config.1:254
msgid ""
"defines if apt should check repository signatures. This is true by default."
msgstr ""
#. type: IP
-#: en/lb_config.1:252
+#: en/lb_config.1:254
#, no-wrap
msgid "-a|B<--architectures> I<ARCHITECTURE>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:254
+#: en/lb_config.1:256
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 "
@@ -1389,13 +1394,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:254
+#: en/lb_config.1:256
#, no-wrap
msgid "-b|B<--binary-images> iso|iso-hybrid|net|tar|usb-hdd"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:256
+#: en/lb_config.1:258
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-"
@@ -1403,13 +1408,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:256
+#: en/lb_config.1:258
#, no-wrap
msgid "B<--binary-filesystem> fat16|fat32|ext2"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:258
+#: en/lb_config.1:260
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 "
@@ -1422,24 +1427,24 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:258
+#: en/lb_config.1:260
#, no-wrap
msgid "B<--bootappend-install> I<PARAMETER>|\"I<PARAMETERS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:260
+#: en/lb_config.1:262
msgid "sets boot parameters specific to debian-installer, if included."
msgstr ""
#. type: IP
-#: en/lb_config.1:260
+#: en/lb_config.1:262
#, no-wrap
msgid "B<--bootappend-live> I<PARAMETER>|\"I<PARAMETERS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:262
+#: en/lb_config.1:264
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 "
@@ -1448,13 +1453,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:262
+#: en/lb_config.1:264
#, no-wrap
msgid "B<--bootloader> grub|syslinux|yaboot"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:264
+#: en/lb_config.1:266
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 "
@@ -1467,13 +1472,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:264
+#: en/lb_config.1:266
#, no-wrap
msgid "B<--bootstrap> cdebootstrap|cdebootstrap-static|debootstrap|copy"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:266
+#: en/lb_config.1:268
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 "
@@ -1483,13 +1488,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:266
+#: en/lb_config.1:268
#, no-wrap
msgid "B<--bootstrap-config> I<FILE>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:268
+#: en/lb_config.1:270
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 "
@@ -1498,13 +1503,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:268
+#: en/lb_config.1:270
#, no-wrap
msgid "-f|B<--bootstrap-flavour> minimal|standard"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:270
+#: en/lb_config.1:272
msgid ""
"defines if the bootstrap program should bootstrap the standard system (all "
"packages of priority required and important, which is the default) or a "
@@ -1512,39 +1517,39 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:270
+#: en/lb_config.1:272
#, no-wrap
msgid "B<--bootstrap-keyring> I<PACKAGE>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:272
+#: en/lb_config.1:274
msgid ""
"sets the archive keyring package to be used. Default is debian-archive-"
"keyring."
msgstr ""
#. type: IP
-#: en/lb_config.1:272
+#: en/lb_config.1:274
#, no-wrap
msgid "B<--cache> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:274
+#: en/lb_config.1:276
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:274
+#: en/lb_config.1:276
#, no-wrap
msgid "B<--cache-indices> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:276
+#: en/lb_config.1:278
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 "
@@ -1552,13 +1557,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:276
+#: en/lb_config.1:278
#, no-wrap
msgid "B<--cache-packages> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:278
+#: en/lb_config.1:280
msgid ""
"defines if downloaded packages files should be cached which is true by "
"default. Disabling it does save space consumtion in your build directory, "
@@ -1569,13 +1574,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:278
+#: en/lb_config.1:280
#, no-wrap
msgid "B<--cache-stages> true|false|I<STAGE>|\"I<STAGES>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:280
+#: en/lb_config.1:282
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 "
@@ -1585,13 +1590,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:280
+#: en/lb_config.1:282
#, no-wrap
msgid "B<--checksums> md5|sha1|sha256|none"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:282
+#: en/lb_config.1:284
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 "
@@ -1603,26 +1608,26 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:282
+#: en/lb_config.1:284
#, no-wrap
msgid "B<--compression> bzip2|gzip|lzip|none"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:284
+#: en/lb_config.1:286
msgid ""
"defines the compression program to be used to compress tarballs. Defaults to "
"gzip."
msgstr ""
#. type: IP
-#: en/lb_config.1:284
+#: en/lb_config.1:286
#, no-wrap
msgid "B<--build-with-chroot> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:286
+#: en/lb_config.1:288
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. "
@@ -1637,13 +1642,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:286
+#: en/lb_config.1:288
#, no-wrap
msgid "B<--chroot-filesystem> ext2|ext3|squashfs|plain|jffs2"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:288
+#: en/lb_config.1:290
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 "
@@ -1654,39 +1659,39 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:288
+#: en/lb_config.1:290
#, no-wrap
msgid "B<--clean>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:290
+#: en/lb_config.1:292
msgid ""
"minimizes config directory by automatically removing unused and thus empty "
"subdirectories."
msgstr ""
#. type: IP
-#: en/lb_config.1:290
+#: en/lb_config.1:292
#, no-wrap
msgid "-c|B<--conffile> I<FILE>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:292
+#: en/lb_config.1:294
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:292
+#: en/lb_config.1:294
#, no-wrap
msgid "B<--debconf-frontend> dialog|editor|noninteractive|readline"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:294
+#: en/lb_config.1:296
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, "
@@ -1694,13 +1699,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:294
+#: en/lb_config.1:296
#, no-wrap
msgid "B<--debconf-nowarnings> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:296
+#: en/lb_config.1:298
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 "
@@ -1708,13 +1713,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:296
+#: en/lb_config.1:298
#, no-wrap
msgid "B<--debconf-priority> low|medium|high|critical"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:298
+#: en/lb_config.1:300
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 "
@@ -1723,13 +1728,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:298
+#: en/lb_config.1:300
#, no-wrap
msgid "B<--debian-installer> true|cdrom|netinst|netboot|businesscard|live|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:300
+#: en/lb_config.1:302
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 "
@@ -1741,13 +1746,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:300
+#: en/lb_config.1:302
#, no-wrap
msgid "B<--debian-installer-distribution> daily|I<CODENAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:302
+#: en/lb_config.1:304
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 "
@@ -1756,26 +1761,26 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:302
+#: en/lb_config.1:304
#, no-wrap
msgid "B<--debian-installer-preseedfile> I<FILE>|I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:304
+#: en/lb_config.1:306
msgid ""
"sets the filename or URL for an optionally used and included preseeding file "
"for debian-installer."
msgstr ""
#. type: IP
-#: en/lb_config.1:304
+#: en/lb_config.1:306
#, no-wrap
msgid "B<--debian-installer-gui> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:306
+#: en/lb_config.1:308
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, "
@@ -1783,35 +1788,47 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:306 en/live-build.7:36
+#: en/lb_config.1:308 en/live-build.7:36
#, no-wrap
msgid "B<--debug>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:308
+#: en/lb_config.1:310
msgid "turn on debugging informational messages."
msgstr ""
#. type: IP
-#: en/lb_config.1:308
+#: en/lb_config.1:310
#, no-wrap
msgid "-d|B<--distribution> I<CODENAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:310
+#: en/lb_config.1:312
msgid "defines the distribution of the resulting live system."
msgstr ""
#. type: IP
-#: en/lb_config.1:310
+#: en/lb_config.1:312
+#, no-wrap
+msgid "-d|B<--parent-distribution> I<CODENAME>"
+msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:314
+msgid ""
+"defines the parent distribution for derivatives of the resulting live system."
+msgstr ""
+
+#. type: IP
+#: en/lb_config.1:314
#, no-wrap
msgid "B<--dump>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:312
+#: en/lb_config.1:316
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 "
@@ -1820,26 +1837,26 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:312
+#: en/lb_config.1:316
#, no-wrap
msgid "B<--fdisk> fdisk|fdisk.dist"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:314
+#: en/lb_config.1:318
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:314 en/live-build.7:38
+#: en/lb_config.1:318 en/live-build.7:38
#, no-wrap
msgid "B<--force>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:316
+#: en/lb_config.1:320
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-"
@@ -1847,26 +1864,26 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:316
+#: en/lb_config.1:320
#, no-wrap
msgid "B<--grub-splash> I<FILE>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:318
+#: en/lb_config.1:322
msgid ""
"defines the name of an optional to be included splash screen graphic for the "
"grub bootloader."
msgstr ""
#. type: IP
-#: en/lb_config.1:318
+#: en/lb_config.1:322
#, no-wrap
msgid "B<--gzip-options> I<OPTION>|\"I<OPTIONS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:320
+#: en/lb_config.1:324
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 "
@@ -1875,13 +1892,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:320
+#: en/lb_config.1:324
#, no-wrap
msgid "B<--hooks> I<FILE>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:322
+#: en/lb_config.1:326
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 "
@@ -1889,24 +1906,24 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:322
+#: en/lb_config.1:326
#, no-wrap
msgid "B<--hostname> I<NAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:324
+#: en/lb_config.1:328
msgid "sets the hostname of the live system."
msgstr ""
#. type: IP
-#: en/lb_config.1:324
+#: en/lb_config.1:328
#, no-wrap
msgid "B<--ignore-system-defaults>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:326
+#: en/lb_config.1:330
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 "
@@ -1915,13 +1932,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:326
+#: en/lb_config.1:330
#, no-wrap
msgid "B<--includes> I<PATH|none>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:328
+#: en/lb_config.1:332
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. "
@@ -1930,13 +1947,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:328
+#: en/lb_config.1:332
#, no-wrap
msgid "B<--initramfs> auto|none|live-boot|casper"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:330
+#: en/lb_config.1:334
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 "
@@ -1947,13 +1964,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:330
+#: en/lb_config.1:334
#, no-wrap
msgid "B<--interactive> shell"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:332
+#: en/lb_config.1:336
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 "
@@ -1967,24 +1984,24 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:332
+#: en/lb_config.1:336
#, no-wrap
msgid "B<--isohybrid-options> I<OPTION>|\"I<OPTIONS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:334
+#: en/lb_config.1:338
msgid "defines options to pass to isohybrid."
msgstr ""
#. type: IP
-#: en/lb_config.1:334
+#: en/lb_config.1:338
#, no-wrap
msgid "B<--iso-application> I<NAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:336
+#: en/lb_config.1:340
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 "
@@ -1992,13 +2009,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:336
+#: en/lb_config.1:340
#, no-wrap
msgid "B<--iso-preparer> I<NAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:338
+#: en/lb_config.1:342
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."
@@ -2007,13 +2024,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:338
+#: en/lb_config.1:342
#, no-wrap
msgid "B<--iso-publisher> I<NAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:340
+#: en/lb_config.1:344
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-"
@@ -2022,13 +2039,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:340
+#: en/lb_config.1:344
#, no-wrap
msgid "B<--iso-volume> I<NAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:342
+#: en/lb_config.1:346
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 "
@@ -2037,13 +2054,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:342
+#: en/lb_config.1:346
#, no-wrap
msgid "B<--jffs2-eraseblock> I<SIZE>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:344
+#: en/lb_config.1:348
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 "
@@ -2053,26 +2070,26 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:344
+#: en/lb_config.1:348
#, no-wrap
msgid "B<--keyring-packages> I<PACKAGE|\"PACKAGES>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:346
+#: en/lb_config.1:350
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:346
+#: en/lb_config.1:350
#, no-wrap
msgid "-l|B<--language> I<LANGUAGE>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:348
+#: en/lb_config.1:352
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 "
@@ -2080,26 +2097,26 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:348
+#: en/lb_config.1:352
#, no-wrap
msgid "-k|B<--linux-flavours> I<FLAVOUR>|\"I<FLAVOURS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:350
+#: en/lb_config.1:354
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:350
+#: en/lb_config.1:354
#, no-wrap
msgid "B<--linux-packages> \"I<PACKAGES>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:352
+#: en/lb_config.1:356
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 "
@@ -2113,26 +2130,26 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:352
+#: en/lb_config.1:356
#, no-wrap
msgid "B<--losetup> losetup|losetup.orig"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:354
+#: en/lb_config.1:358
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:354
+#: en/lb_config.1:358
#, no-wrap
msgid "B<--memtest> memtest86+|memtest86|none"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:356
+#: en/lb_config.1:360
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 "
@@ -2140,13 +2157,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:356
+#: en/lb_config.1:360
#, no-wrap
msgid "-m|B<--mirror-bootstrap> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:358
+#: en/lb_config.1:362
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 "
@@ -2154,13 +2171,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:358
+#: en/lb_config.1:362
#, no-wrap
msgid "B<--mirror-chroot> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:360
+#: en/lb_config.1:364
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 "
@@ -2168,13 +2185,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:360
+#: en/lb_config.1:364
#, no-wrap
msgid "B<--mirror-chroot-security> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:362
+#: en/lb_config.1:366
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 "
@@ -2182,13 +2199,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:362
+#: en/lb_config.1:366
#, no-wrap
msgid "B<--mirror-chroot-volatile> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:364
+#: en/lb_config.1:368
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 "
@@ -2196,13 +2213,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:364
+#: en/lb_config.1:368
#, no-wrap
msgid "B<--mirror-chroot-backports> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:366
+#: en/lb_config.1:370
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 "
@@ -2210,13 +2227,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:366
+#: en/lb_config.1:370
#, no-wrap
msgid "B<--mirror-binary> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:368
+#: en/lb_config.1:372
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 "
@@ -2226,13 +2243,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:368
+#: en/lb_config.1:372
#, no-wrap
msgid "B<--mirror-binary-security> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:370
+#: en/lb_config.1:374
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-"
@@ -2240,13 +2257,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:370
+#: en/lb_config.1:374
#, no-wrap
msgid "B<--mirror-binary-volatile> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:372
+#: en/lb_config.1:376
msgid ""
"sets the location of the debian volatile package mirror that should end up "
"configured in the final image. By default, the value of --mirror-binary is "
@@ -2254,13 +2271,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:372
+#: en/lb_config.1:376
#, no-wrap
msgid "B<--mirror-binary-backports> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:374
+#: en/lb_config.1:378
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/"
@@ -2268,13 +2285,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:374
+#: en/lb_config.1:378
#, no-wrap
msgid "B<--mirror-debian-installer> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:376
+#: en/lb_config.1:380
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 "
@@ -2282,52 +2299,52 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:376
+#: en/lb_config.1:380
#, no-wrap
msgid "B<--mode> debian|emdebian|ubuntu"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:378
+#: en/lb_config.1:382
msgid ""
"defines a global mode to load project specific defaults. By default this is "
"set to debian."
msgstr ""
#. type: IP
-#: en/lb_config.1:378
+#: en/lb_config.1:382
#, no-wrap
msgid "B<--net-root-filesystem> nfs|cfs"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:380
+#: en/lb_config.1:384
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:380
+#: en/lb_config.1:384
#, no-wrap
msgid "B<--net-root-mountoptions> I<OPTIONS>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:382
+#: en/lb_config.1:386
msgid ""
"sets additional options for mounting the root filesystem in netboot images "
"and is by default empty."
msgstr ""
#. type: IP
-#: en/lb_config.1:382
+#: en/lb_config.1:386
#, no-wrap
msgid "B<--net-root-path> I<PATH>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:384
+#: en/lb_config.1:388
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 "
@@ -2336,13 +2353,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:384
+#: en/lb_config.1:388
#, no-wrap
msgid "B<--net-root-server> I<IP>|I<HOSTNAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:386
+#: en/lb_config.1:390
msgid ""
"sets the IP or hostname that will be configured in the bootloader "
"configuration for the root filesystem of your netboot image. This defaults "
@@ -2350,38 +2367,38 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:386
+#: en/lb_config.1:390
#, no-wrap
msgid "B<--net-cow-filesystem> nfs|cfs"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:388
+#: en/lb_config.1:392
msgid ""
"defines the filesystem type for the copy-on-write layer and defaults to nfs."
msgstr ""
#. type: IP
-#: en/lb_config.1:388
+#: en/lb_config.1:392
#, no-wrap
msgid "B<--net-cow-mountoptions> I<OPTIONS>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:390
+#: en/lb_config.1:394
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:390
+#: en/lb_config.1:394
#, no-wrap
msgid "B<--net-cow-path> I<PATH>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:392
+#: en/lb_config.1:396
msgid ""
"defines the path to client writable filesystem. Anywhere that "
"I<client_mac_address> is specified in the path live-boot will substitute the "
@@ -2389,28 +2406,28 @@ msgid ""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:395
+#: en/lb_config.1:399
msgid "Example:"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:397
+#: en/lb_config.1:401
msgid "/export/hosts/client_mac_address"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:399
+#: en/lb_config.1:403
msgid "/export/hosts/00-16-D3-33-92-E8"
msgstr ""
#. type: IP
-#: en/lb_config.1:399
+#: en/lb_config.1:403
#, no-wrap
msgid "B<--net-cow-server> I<IP>|I<HOSTNAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:401
+#: en/lb_config.1:405
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 "
@@ -2418,13 +2435,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:401
+#: en/lb_config.1:405
#, no-wrap
msgid "B<--net-tarball> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:403
+#: en/lb_config.1:407
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 "
@@ -2432,13 +2449,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:403
+#: en/lb_config.1:407
#, no-wrap
msgid "-p|B<--package-lists> I<LIST>|\"I<LISTS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:405
+#: en/lb_config.1:409
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 "
@@ -2448,13 +2465,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:405
+#: en/lb_config.1:409
#, no-wrap
msgid "B<--packages> I<PACKAGE>|\"I<PACKAGES>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:407
+#: en/lb_config.1:411
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 "
@@ -2463,37 +2480,37 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:407 en/live-build.7:40
+#: en/lb_config.1:411 en/live-build.7:40
#, no-wrap
msgid "B<--quiet>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:409
+#: en/lb_config.1:413
msgid "reduces the verbosity of messages output by B<lb build>."
msgstr ""
#. type: IP
-#: en/lb_config.1:409
+#: en/lb_config.1:413
#, no-wrap
msgid "-r|B<--repositories> I<REPOSITORY>|\"I<REPOSITORIES>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:411
+#: en/lb_config.1:415
msgid ""
"enables one of available third-party repository configurations in /usr/share/"
"live/build/repositories."
msgstr ""
#. type: IP
-#: en/lb_config.1:411
+#: en/lb_config.1:415
#, no-wrap
msgid "B<--root-command> sudo"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:413
+#: en/lb_config.1:417
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, "
@@ -2501,13 +2518,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:413
+#: en/lb_config.1:417
#, no-wrap
msgid "B<--use-fakeroot> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:415
+#: en/lb_config.1:419
msgid ""
"controls if live-build should utilize fakeroot and fakechroot to try and "
"avoid requiring root privillages where possible. By default, this option is "
@@ -2515,13 +2532,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:415
+#: en/lb_config.1:419
#, no-wrap
msgid "B<--archive-areas> I<ARCHIVE_AREA>|\"I<ARCHIVE_AREAS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:417
+#: en/lb_config.1:421
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. "
@@ -2531,26 +2548,26 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:417
+#: en/lb_config.1:421
#, no-wrap
msgid "B<--security> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:419
+#: en/lb_config.1:423
msgid ""
"defines if the security repositories specified in the security mirror "
"options should be used or not."
msgstr ""
#. type: IP
-#: en/lb_config.1:419
+#: en/lb_config.1:423
#, no-wrap
msgid "B<--source> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:421
+#: en/lb_config.1:425
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 "
@@ -2560,37 +2577,37 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:421
+#: en/lb_config.1:425
#, no-wrap
msgid "-s|B<--source-images> iso|net|tar|usb-hdd"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:423
+#: en/lb_config.1:427
msgid "defines the image type for the source image. Default is tar."
msgstr ""
#. type: IP
-#: en/lb_config.1:423
+#: en/lb_config.1:427
#, no-wrap
msgid "B<--syslinux-splash> I<FILE>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:425
+#: en/lb_config.1:429
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:425
+#: en/lb_config.1:429
#, no-wrap
msgid "B<--syslinux-timeout> I<SECONDS>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:427
+#: en/lb_config.1:431
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 "
@@ -2598,38 +2615,38 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:427
+#: en/lb_config.1:431
#, no-wrap
msgid "B<--syslinux-menu> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:429
+#: en/lb_config.1:433
msgid ""
"defines if syslinux should be make use of the vgamenu capabilities or not."
msgstr ""
#. type: IP
-#: en/lb_config.1:429
+#: en/lb_config.1:433
#, no-wrap
msgid "B<--tasksel> aptitude|tasksel"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:431
+#: en/lb_config.1:435
msgid ""
"selects which program is used to install tasks. By default, this is set to "
"tasksel."
msgstr ""
#. type: IP
-#: en/lb_config.1:431
+#: en/lb_config.1:435
#, no-wrap
msgid "B<--tasks> I<TASK>|\"I<TASKS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:433
+#: en/lb_config.1:437
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 "
@@ -2639,26 +2656,26 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:433
+#: en/lb_config.1:437
#, no-wrap
msgid "B<--templates> I<PATH>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:435
+#: en/lb_config.1:439
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:435
+#: en/lb_config.1:439
#, no-wrap
msgid "B<--virtual-root-size> MB"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:437
+#: en/lb_config.1:441
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 "
@@ -2666,39 +2683,39 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:437
+#: en/lb_config.1:441
#, no-wrap
msgid "B<--volatile> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:439
+#: en/lb_config.1:443
msgid ""
"defines if debian volatile package archives should be included in the image "
"or not."
msgstr ""
#. type: IP
-#: en/lb_config.1:439
+#: en/lb_config.1:443
#, no-wrap
msgid "B<--backports> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:441
+#: en/lb_config.1:445
msgid ""
"defines if debian backports package archives should be included in the image "
"or not."
msgstr ""
#. type: IP
-#: en/lb_config.1:441
+#: en/lb_config.1:445
#, no-wrap
msgid "B<--exposed-root> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:443
+#: en/lb_config.1:447
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 "
@@ -2706,48 +2723,48 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:443
+#: en/lb_config.1:447
#, no-wrap
msgid "B<--username> I<NAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:445
+#: en/lb_config.1:449
msgid "sets the name of the account of the default user in the live system."
msgstr ""
#. type: IP
-#: en/lb_config.1:445 en/live-build.7:42
+#: en/lb_config.1:449 en/live-build.7:42
#, no-wrap
msgid "B<--verbose>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:447
+#: en/lb_config.1:451
msgid "increases the verbosity of messages output by B<lb build>."
msgstr ""
#. type: IP
-#: en/lb_config.1:447
+#: en/lb_config.1:451
#, no-wrap
msgid "B<--win32-loader true|false>"
msgstr ""
#. FIXME
#. type: Plain text
-#: en/lb_config.1:450
+#: en/lb_config.1:454
msgid "defines if win32-loader should be included in the binary image or not."
msgstr ""
#. type: SH
-#: en/lb_config.1:451
+#: en/lb_config.1:455
#, no-wrap
msgid "ENVIRONMENT"
msgstr ""
#. FIXME
#. type: Plain text
-#: en/lb_config.1:454
+#: en/lb_config.1:458
msgid ""
"Currently, command line switches can also be specified through the "
"corresponding environment variable. However, this generally should not be "
@@ -2761,20 +2778,20 @@ msgstr ""
#. FIXME
#. type: IP
-#: en/lb_config.1:458
+#: en/lb_config.1:462
#, no-wrap
msgid "B<auto/config>"
msgstr ""
#. type: IP
-#: en/lb_config.1:459
+#: en/lb_config.1:463
#, no-wrap
msgid "B</etc/live/build.conf, /etc/live/build.d>"
msgstr ""
#. FIXME
#. type: Plain text
-#: en/lb_config.1:462
+#: en/lb_config.1:466
msgid ""
"An optional, global configuration file for B<lb config> variables. It is "
"useful to specify a few system wide defaults, like LB_MIRROR_BOOTSTRAP. This "
diff --git a/manpages/pot/lb_config.1.pot b/manpages/pot/lb_config.1.pot
index d862a9e04..d2b77d26e 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-01-07 21:06+0100\n"
+"POT-Creation-Date: 2011-01-07 21:27+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:221 en/lb_local.1:9
+#: en/lb_chroot_upstart.1:9 en/lb_clean.1:9 en/lb_config.1:223 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:230
+#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:232
#: 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:456
+#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:460
#: 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:463
+#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:467
#: 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:465
+#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:469
#: 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:467
+#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:471
#: 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:468
+#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:472
#: 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:470
+#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:474
#: 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:471
+#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:475
#: 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:473
+#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:477
#: 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:474
+#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:478
#: 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:475
+#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:479
#: 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
@@ -875,337 +875,342 @@ msgstr ""
#. type: Plain text
#: en/lb_config.1:89
-msgid " [B<--dump>]"
+msgid " [B<--parent-distribution> I<CODENAME>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:91
-msgid " [B<--fdisk> fdisk|fdisk.dist]"
+msgid " [B<--dump>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:93
-msgid " [B<--force>]"
+msgid " [B<--fdisk> fdisk|fdisk.dist]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:95
-msgid " [B<--grub-splash> I<FILE>]"
+msgid " [B<--force>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:97
-msgid " [B<--gzip-options> I<OPTION>|\"I<OPTIONS>\"]"
+msgid " [B<--grub-splash> I<FILE>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:99
-msgid " [B<--hooks> I<FILE>]"
+msgid " [B<--gzip-options> I<OPTION>|\"I<OPTIONS>\"]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:101
-msgid " [B<--hostname> I<NAME>]"
+msgid " [B<--hooks> I<FILE>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:103
-msgid " [B<--ignore-system-defaults>]"
+msgid " [B<--hostname> I<NAME>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:105
-msgid " [B<--includes> I<PATH>]"
+msgid " [B<--ignore-system-defaults>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:107
-msgid " [B<--initramfs> auto|none|live-boot|casper]"
+msgid " [B<--includes> I<PATH>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:109
-msgid " [B<--interactive> shell]"
+msgid " [B<--initramfs> auto|none|live-boot|casper]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:111
-msgid " [B<--isohybrid-options> I<OPTION>|\"I<OPTIONS>\"]"
+msgid " [B<--interactive> shell]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:113
-msgid " [B<--iso-application> I<NAME>]"
+msgid " [B<--isohybrid-options> I<OPTION>|\"I<OPTIONS>\"]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:115
-msgid " [B<--iso-preparer> I<NAME>]"
+msgid " [B<--iso-application> I<NAME>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:117
-msgid " [B<--iso-publisher> I<NAME>]"
+msgid " [B<--iso-preparer> I<NAME>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:119
-msgid " [B<--iso-volume> I<NAME>]"
+msgid " [B<--iso-publisher> I<NAME>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:121
-msgid " [B<--jffs2-eraseblock> I<SIZE>]"
+msgid " [B<--iso-volume> I<NAME>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:123
-msgid " [B<--keyring-packages> I<PACKAGE|\"PACKAGES\">]"
+msgid " [B<--jffs2-eraseblock> I<SIZE>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:125
-msgid " [-l|B<--language> I<LANGUAGE>]"
+msgid " [B<--keyring-packages> I<PACKAGE|\"PACKAGES\">]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:127
-msgid " [-k|B<--linux-flavours> I<FLAVOUR>|I<\"FLAVOURS\">]"
+msgid " [-l|B<--language> I<LANGUAGE>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:129
-msgid " [B<--linux-packages> I<\"PACKAGES\">]"
+msgid " [-k|B<--linux-flavours> I<FLAVOUR>|I<\"FLAVOURS\">]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:131
-msgid " [B<--losetup> losetup|losetup.orig]"
+msgid " [B<--linux-packages> I<\"PACKAGES\">]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:133
-msgid " [B<--memtest> memtest86+|memtest86|none]"
+msgid " [B<--losetup> losetup|losetup.orig]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:135
-msgid " [-m|B<--mirror-bootstrap> I<URL>]"
+msgid " [B<--memtest> memtest86+|memtest86|none]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:137
-msgid " [B<--mirror-chroot> I<URL>]"
+msgid " [-m|B<--mirror-bootstrap> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:139
-msgid " [B<--mirror-chroot-security> I<URL>]"
+msgid " [B<--mirror-chroot> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:141
-msgid " [B<--mirror-chroot-volatile> I<URL>]"
+msgid " [B<--mirror-chroot-security> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:143
-msgid " [B<--mirror-chroot-backports> I<URL>]"
+msgid " [B<--mirror-chroot-volatile> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:145
-msgid " [B<--mirror-binary> I<URL>]"
+msgid " [B<--mirror-chroot-backports> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:147
-msgid " [B<--mirror-binary-security> I<URL>]"
+msgid " [B<--mirror-binary> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:149
-msgid " [B<--mirror-binary-volatile> I<URL>]"
+msgid " [B<--mirror-binary-security> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:151
-msgid " [B<--mirror-binary-backports> I<URL>]"
+msgid " [B<--mirror-binary-volatile> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:153
-msgid " [B<--mirror-debian-installer> I<URL>]"
+msgid " [B<--mirror-binary-backports> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:155
-msgid " [B<--mode> debian|emdebian|ubuntu]"
+msgid " [B<--mirror-debian-installer> I<URL>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:157
-msgid " [B<--net-root-filesystem> nfs|cfs]"
+msgid " [B<--mode> debian|emdebian|ubuntu]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:159
-msgid " [B<--net-root-mountoptions> I<OPTIONS>]"
+msgid " [B<--net-root-filesystem> nfs|cfs]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:161
-msgid " [B<--net-root-path> I<PATH>]"
+msgid " [B<--net-root-mountoptions> I<OPTIONS>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:163
-msgid " [B<--net-root-server> I<IP>|I<HOSTNAME>]"
+msgid " [B<--net-root-path> I<PATH>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:165
-msgid " [B<--net-cow-filesystem> nfs|cfs]"
+msgid " [B<--net-root-server> I<IP>|I<HOSTNAME>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:167
-msgid " [B<--net-cow-mountoptions> I<OPTIONS>]"
+msgid " [B<--net-cow-filesystem> nfs|cfs]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:169
-msgid " [B<--net-cow-path> I<PATH>]"
+msgid " [B<--net-cow-mountoptions> I<OPTIONS>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:171
-msgid " [B<--net-cow-server> I<IP>|I<HOSTNAME>]"
+msgid " [B<--net-cow-path> I<PATH>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:173
-msgid " [B<--net-tarball> true|false]"
+msgid " [B<--net-cow-server> I<IP>|I<HOSTNAME>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:175
-msgid " [-p|B<--package-lists> I<LIST>|I<\"LISTS\">]"
+msgid " [B<--net-tarball> true|false]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:177
-msgid " [B<--packages> I<PACKAGE>|I<\"PACKAGES\">]"
+msgid " [-p|B<--package-lists> I<LIST>|I<\"LISTS\">]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:179
-msgid " [B<--quiet>]"
+msgid " [B<--packages> I<PACKAGE>|I<\"PACKAGES\">]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:181
-msgid " [-r|B<--repositories >I<REPOSITORY>|I<\"REPOSITORIES\">]"
+msgid " [B<--quiet>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:183
-msgid " [B<--root-command> sudo]"
+msgid " [-r|B<--repositories >I<REPOSITORY>|I<\"REPOSITORIES\">]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:185
-msgid " [B<--use-fakeroot> true|false]"
+msgid " [B<--root-command> sudo]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:187
-msgid " [B<--archive-areas> I<ARCHIVE_AREA>|I<\"ARCHIVE_AREAS\">]"
+msgid " [B<--use-fakeroot> true|false]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:189
-msgid " [B<--security> true|false]"
+msgid " [B<--archive-areas> I<ARCHIVE_AREA>|I<\"ARCHIVE_AREAS\">]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:191
-msgid " [B<--source> true|false]"
+msgid " [B<--security> true|false]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:193
-msgid " [-s|B<--source-images> iso|net|tar|usb-hdd]"
+msgid " [B<--source> true|false]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:195
-msgid " [B<--syslinux-splash> I<FILE>]"
+msgid " [-s|B<--source-images> iso|net|tar|usb-hdd]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:197
-msgid " [B<--syslinux-timeout> I<SECONDS>]"
+msgid " [B<--syslinux-splash> I<FILE>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:199
-msgid " [B<--syslinux-menu> true|false]"
+msgid " [B<--syslinux-timeout> I<SECONDS>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:201
-msgid " [B<--tasksel> aptitude|tasksel]"
+msgid " [B<--syslinux-menu> true|false]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:203
-msgid " [B<--tasks> I<TASK>|\"I<TASKS>\"]"
+msgid " [B<--tasksel> aptitude|tasksel]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:205
-msgid " [B<--templates> I<PATH>]"
+msgid " [B<--tasks> I<TASK>|\"I<TASKS>\"]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:207
-msgid " [B<--virtual-root-size >I<MB>]"
+msgid " [B<--templates> I<PATH>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:209
-msgid " [B<--volatile> true|false]"
+msgid " [B<--virtual-root-size >I<MB>]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:211
-msgid " [B<--backports> true|false]"
+msgid " [B<--volatile> true|false]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:213
-msgid " [B<--exposed-root> true|false]"
+msgid " [B<--backports> true|false]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:215
-msgid " [B<--username> I<NAME>]"
+msgid " [B<--exposed-root> true|false]"
msgstr ""
#. type: Plain text
#: en/lb_config.1:217
+msgid " [B<--username> I<NAME>]"
+msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:219
msgid " [B<--verbose>]"
msgstr ""
#. FIXME
#. type: Plain text
-#: en/lb_config.1:220
+#: en/lb_config.1:222
msgid " [B<--win32-loader true|false]>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:223
+#: en/lb_config.1:225
msgid ""
"B<lb config> is a high-level command (porcelain) of I<live-build>(7), the "
"Debian Live tool suite."
@@ -1213,7 +1218,7 @@ msgstr ""
#. FIXME
#. type: Plain text
-#: en/lb_config.1:226
+#: en/lb_config.1:228
msgid ""
"B<lb config> populates the configuration directory for live-build. By "
"default, this directory is named 'config' and is created in the current "
@@ -1222,7 +1227,7 @@ msgstr ""
#. FIXME
#. type: Plain text
-#: en/lb_config.1:229
+#: en/lb_config.1:231
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 "
@@ -1238,7 +1243,7 @@ msgid ""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:232
+#: en/lb_config.1:234
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 "
@@ -1247,26 +1252,26 @@ msgstr ""
#. FIXME
#. type: IP
-#: en/lb_config.1:234
+#: en/lb_config.1:236
#, no-wrap
msgid "B<--apt> apt|aptitude"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:236
+#: en/lb_config.1:238
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:236
+#: en/lb_config.1:238
#, no-wrap
msgid "B<--apt-ftp-proxy> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:238
+#: en/lb_config.1:240
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 "
@@ -1274,13 +1279,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:238
+#: en/lb_config.1:240
#, no-wrap
msgid "B<--apt-http-proxy> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:240
+#: en/lb_config.1:242
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 "
@@ -1288,26 +1293,26 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:240
+#: en/lb_config.1:242
#, no-wrap
msgid "B<--apt-indices> true|false|none"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:242
+#: en/lb_config.1:244
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:242
+#: en/lb_config.1:244
#, no-wrap
msgid "B<--apt-options> I<OPTION>|\"I<OPTIONS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:244
+#: en/lb_config.1:246
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 "
@@ -1315,13 +1320,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:244
+#: en/lb_config.1:246
#, no-wrap
msgid "B<--aptitude-options> I<OPTION>|\"I<OPTIONS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:246
+#: en/lb_config.1:248
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 "
@@ -1329,13 +1334,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:246
+#: en/lb_config.1:248
#, no-wrap
msgid "B<--apt-pipeline> I<DEPTH>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:248
+#: en/lb_config.1:250
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 "
@@ -1347,38 +1352,38 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:248
+#: en/lb_config.1:250
#, no-wrap
msgid "B<--apt-recommends> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:250
+#: en/lb_config.1:252
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:250
+#: en/lb_config.1:252
#, no-wrap
msgid "B<--apt-secure> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:252
+#: en/lb_config.1:254
msgid ""
"defines if apt should check repository signatures. This is true by default."
msgstr ""
#. type: IP
-#: en/lb_config.1:252
+#: en/lb_config.1:254
#, no-wrap
msgid "-a|B<--architectures> I<ARCHITECTURE>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:254
+#: en/lb_config.1:256
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 "
@@ -1389,13 +1394,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:254
+#: en/lb_config.1:256
#, no-wrap
msgid "-b|B<--binary-images> iso|iso-hybrid|net|tar|usb-hdd"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:256
+#: en/lb_config.1:258
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-"
@@ -1403,13 +1408,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:256
+#: en/lb_config.1:258
#, no-wrap
msgid "B<--binary-filesystem> fat16|fat32|ext2"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:258
+#: en/lb_config.1:260
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 "
@@ -1422,24 +1427,24 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:258
+#: en/lb_config.1:260
#, no-wrap
msgid "B<--bootappend-install> I<PARAMETER>|\"I<PARAMETERS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:260
+#: en/lb_config.1:262
msgid "sets boot parameters specific to debian-installer, if included."
msgstr ""
#. type: IP
-#: en/lb_config.1:260
+#: en/lb_config.1:262
#, no-wrap
msgid "B<--bootappend-live> I<PARAMETER>|\"I<PARAMETERS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:262
+#: en/lb_config.1:264
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 "
@@ -1448,13 +1453,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:262
+#: en/lb_config.1:264
#, no-wrap
msgid "B<--bootloader> grub|syslinux|yaboot"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:264
+#: en/lb_config.1:266
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 "
@@ -1467,13 +1472,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:264
+#: en/lb_config.1:266
#, no-wrap
msgid "B<--bootstrap> cdebootstrap|cdebootstrap-static|debootstrap|copy"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:266
+#: en/lb_config.1:268
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 "
@@ -1483,13 +1488,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:266
+#: en/lb_config.1:268
#, no-wrap
msgid "B<--bootstrap-config> I<FILE>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:268
+#: en/lb_config.1:270
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 "
@@ -1498,13 +1503,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:268
+#: en/lb_config.1:270
#, no-wrap
msgid "-f|B<--bootstrap-flavour> minimal|standard"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:270
+#: en/lb_config.1:272
msgid ""
"defines if the bootstrap program should bootstrap the standard system (all "
"packages of priority required and important, which is the default) or a "
@@ -1512,39 +1517,39 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:270
+#: en/lb_config.1:272
#, no-wrap
msgid "B<--bootstrap-keyring> I<PACKAGE>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:272
+#: en/lb_config.1:274
msgid ""
"sets the archive keyring package to be used. Default is debian-archive-"
"keyring."
msgstr ""
#. type: IP
-#: en/lb_config.1:272
+#: en/lb_config.1:274
#, no-wrap
msgid "B<--cache> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:274
+#: en/lb_config.1:276
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:274
+#: en/lb_config.1:276
#, no-wrap
msgid "B<--cache-indices> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:276
+#: en/lb_config.1:278
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 "
@@ -1552,13 +1557,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:276
+#: en/lb_config.1:278
#, no-wrap
msgid "B<--cache-packages> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:278
+#: en/lb_config.1:280
msgid ""
"defines if downloaded packages files should be cached which is true by "
"default. Disabling it does save space consumtion in your build directory, "
@@ -1569,13 +1574,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:278
+#: en/lb_config.1:280
#, no-wrap
msgid "B<--cache-stages> true|false|I<STAGE>|\"I<STAGES>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:280
+#: en/lb_config.1:282
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 "
@@ -1585,13 +1590,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:280
+#: en/lb_config.1:282
#, no-wrap
msgid "B<--checksums> md5|sha1|sha256|none"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:282
+#: en/lb_config.1:284
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 "
@@ -1603,26 +1608,26 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:282
+#: en/lb_config.1:284
#, no-wrap
msgid "B<--compression> bzip2|gzip|lzip|none"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:284
+#: en/lb_config.1:286
msgid ""
"defines the compression program to be used to compress tarballs. Defaults to "
"gzip."
msgstr ""
#. type: IP
-#: en/lb_config.1:284
+#: en/lb_config.1:286
#, no-wrap
msgid "B<--build-with-chroot> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:286
+#: en/lb_config.1:288
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. "
@@ -1637,13 +1642,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:286
+#: en/lb_config.1:288
#, no-wrap
msgid "B<--chroot-filesystem> ext2|ext3|squashfs|plain|jffs2"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:288
+#: en/lb_config.1:290
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 "
@@ -1654,39 +1659,39 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:288
+#: en/lb_config.1:290
#, no-wrap
msgid "B<--clean>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:290
+#: en/lb_config.1:292
msgid ""
"minimizes config directory by automatically removing unused and thus empty "
"subdirectories."
msgstr ""
#. type: IP
-#: en/lb_config.1:290
+#: en/lb_config.1:292
#, no-wrap
msgid "-c|B<--conffile> I<FILE>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:292
+#: en/lb_config.1:294
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:292
+#: en/lb_config.1:294
#, no-wrap
msgid "B<--debconf-frontend> dialog|editor|noninteractive|readline"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:294
+#: en/lb_config.1:296
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, "
@@ -1694,13 +1699,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:294
+#: en/lb_config.1:296
#, no-wrap
msgid "B<--debconf-nowarnings> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:296
+#: en/lb_config.1:298
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 "
@@ -1708,13 +1713,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:296
+#: en/lb_config.1:298
#, no-wrap
msgid "B<--debconf-priority> low|medium|high|critical"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:298
+#: en/lb_config.1:300
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 "
@@ -1723,13 +1728,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:298
+#: en/lb_config.1:300
#, no-wrap
msgid "B<--debian-installer> true|cdrom|netinst|netboot|businesscard|live|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:300
+#: en/lb_config.1:302
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 "
@@ -1741,13 +1746,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:300
+#: en/lb_config.1:302
#, no-wrap
msgid "B<--debian-installer-distribution> daily|I<CODENAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:302
+#: en/lb_config.1:304
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 "
@@ -1756,26 +1761,26 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:302
+#: en/lb_config.1:304
#, no-wrap
msgid "B<--debian-installer-preseedfile> I<FILE>|I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:304
+#: en/lb_config.1:306
msgid ""
"sets the filename or URL for an optionally used and included preseeding file "
"for debian-installer."
msgstr ""
#. type: IP
-#: en/lb_config.1:304
+#: en/lb_config.1:306
#, no-wrap
msgid "B<--debian-installer-gui> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:306
+#: en/lb_config.1:308
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, "
@@ -1783,35 +1788,47 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:306 en/live-build.7:36
+#: en/lb_config.1:308 en/live-build.7:36
#, no-wrap
msgid "B<--debug>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:308
+#: en/lb_config.1:310
msgid "turn on debugging informational messages."
msgstr ""
#. type: IP
-#: en/lb_config.1:308
+#: en/lb_config.1:310
#, no-wrap
msgid "-d|B<--distribution> I<CODENAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:310
+#: en/lb_config.1:312
msgid "defines the distribution of the resulting live system."
msgstr ""
#. type: IP
-#: en/lb_config.1:310
+#: en/lb_config.1:312
+#, no-wrap
+msgid "-d|B<--parent-distribution> I<CODENAME>"
+msgstr ""
+
+#. type: Plain text
+#: en/lb_config.1:314
+msgid ""
+"defines the parent distribution for derivatives of the resulting live system."
+msgstr ""
+
+#. type: IP
+#: en/lb_config.1:314
#, no-wrap
msgid "B<--dump>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:312
+#: en/lb_config.1:316
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 "
@@ -1820,26 +1837,26 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:312
+#: en/lb_config.1:316
#, no-wrap
msgid "B<--fdisk> fdisk|fdisk.dist"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:314
+#: en/lb_config.1:318
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:314 en/live-build.7:38
+#: en/lb_config.1:318 en/live-build.7:38
#, no-wrap
msgid "B<--force>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:316
+#: en/lb_config.1:320
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-"
@@ -1847,26 +1864,26 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:316
+#: en/lb_config.1:320
#, no-wrap
msgid "B<--grub-splash> I<FILE>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:318
+#: en/lb_config.1:322
msgid ""
"defines the name of an optional to be included splash screen graphic for the "
"grub bootloader."
msgstr ""
#. type: IP
-#: en/lb_config.1:318
+#: en/lb_config.1:322
#, no-wrap
msgid "B<--gzip-options> I<OPTION>|\"I<OPTIONS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:320
+#: en/lb_config.1:324
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 "
@@ -1875,13 +1892,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:320
+#: en/lb_config.1:324
#, no-wrap
msgid "B<--hooks> I<FILE>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:322
+#: en/lb_config.1:326
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 "
@@ -1889,24 +1906,24 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:322
+#: en/lb_config.1:326
#, no-wrap
msgid "B<--hostname> I<NAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:324
+#: en/lb_config.1:328
msgid "sets the hostname of the live system."
msgstr ""
#. type: IP
-#: en/lb_config.1:324
+#: en/lb_config.1:328
#, no-wrap
msgid "B<--ignore-system-defaults>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:326
+#: en/lb_config.1:330
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 "
@@ -1915,13 +1932,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:326
+#: en/lb_config.1:330
#, no-wrap
msgid "B<--includes> I<PATH|none>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:328
+#: en/lb_config.1:332
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. "
@@ -1930,13 +1947,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:328
+#: en/lb_config.1:332
#, no-wrap
msgid "B<--initramfs> auto|none|live-boot|casper"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:330
+#: en/lb_config.1:334
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 "
@@ -1947,13 +1964,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:330
+#: en/lb_config.1:334
#, no-wrap
msgid "B<--interactive> shell"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:332
+#: en/lb_config.1:336
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 "
@@ -1967,24 +1984,24 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:332
+#: en/lb_config.1:336
#, no-wrap
msgid "B<--isohybrid-options> I<OPTION>|\"I<OPTIONS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:334
+#: en/lb_config.1:338
msgid "defines options to pass to isohybrid."
msgstr ""
#. type: IP
-#: en/lb_config.1:334
+#: en/lb_config.1:338
#, no-wrap
msgid "B<--iso-application> I<NAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:336
+#: en/lb_config.1:340
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 "
@@ -1992,13 +2009,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:336
+#: en/lb_config.1:340
#, no-wrap
msgid "B<--iso-preparer> I<NAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:338
+#: en/lb_config.1:342
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."
@@ -2007,13 +2024,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:338
+#: en/lb_config.1:342
#, no-wrap
msgid "B<--iso-publisher> I<NAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:340
+#: en/lb_config.1:344
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-"
@@ -2022,13 +2039,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:340
+#: en/lb_config.1:344
#, no-wrap
msgid "B<--iso-volume> I<NAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:342
+#: en/lb_config.1:346
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 "
@@ -2037,13 +2054,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:342
+#: en/lb_config.1:346
#, no-wrap
msgid "B<--jffs2-eraseblock> I<SIZE>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:344
+#: en/lb_config.1:348
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 "
@@ -2053,26 +2070,26 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:344
+#: en/lb_config.1:348
#, no-wrap
msgid "B<--keyring-packages> I<PACKAGE|\"PACKAGES>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:346
+#: en/lb_config.1:350
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:346
+#: en/lb_config.1:350
#, no-wrap
msgid "-l|B<--language> I<LANGUAGE>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:348
+#: en/lb_config.1:352
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 "
@@ -2080,26 +2097,26 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:348
+#: en/lb_config.1:352
#, no-wrap
msgid "-k|B<--linux-flavours> I<FLAVOUR>|\"I<FLAVOURS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:350
+#: en/lb_config.1:354
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:350
+#: en/lb_config.1:354
#, no-wrap
msgid "B<--linux-packages> \"I<PACKAGES>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:352
+#: en/lb_config.1:356
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 "
@@ -2113,26 +2130,26 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:352
+#: en/lb_config.1:356
#, no-wrap
msgid "B<--losetup> losetup|losetup.orig"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:354
+#: en/lb_config.1:358
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:354
+#: en/lb_config.1:358
#, no-wrap
msgid "B<--memtest> memtest86+|memtest86|none"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:356
+#: en/lb_config.1:360
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 "
@@ -2140,13 +2157,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:356
+#: en/lb_config.1:360
#, no-wrap
msgid "-m|B<--mirror-bootstrap> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:358
+#: en/lb_config.1:362
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 "
@@ -2154,13 +2171,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:358
+#: en/lb_config.1:362
#, no-wrap
msgid "B<--mirror-chroot> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:360
+#: en/lb_config.1:364
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 "
@@ -2168,13 +2185,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:360
+#: en/lb_config.1:364
#, no-wrap
msgid "B<--mirror-chroot-security> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:362
+#: en/lb_config.1:366
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 "
@@ -2182,13 +2199,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:362
+#: en/lb_config.1:366
#, no-wrap
msgid "B<--mirror-chroot-volatile> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:364
+#: en/lb_config.1:368
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 "
@@ -2196,13 +2213,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:364
+#: en/lb_config.1:368
#, no-wrap
msgid "B<--mirror-chroot-backports> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:366
+#: en/lb_config.1:370
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 "
@@ -2210,13 +2227,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:366
+#: en/lb_config.1:370
#, no-wrap
msgid "B<--mirror-binary> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:368
+#: en/lb_config.1:372
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 "
@@ -2226,13 +2243,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:368
+#: en/lb_config.1:372
#, no-wrap
msgid "B<--mirror-binary-security> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:370
+#: en/lb_config.1:374
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-"
@@ -2240,13 +2257,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:370
+#: en/lb_config.1:374
#, no-wrap
msgid "B<--mirror-binary-volatile> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:372
+#: en/lb_config.1:376
msgid ""
"sets the location of the debian volatile package mirror that should end up "
"configured in the final image. By default, the value of --mirror-binary is "
@@ -2254,13 +2271,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:372
+#: en/lb_config.1:376
#, no-wrap
msgid "B<--mirror-binary-backports> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:374
+#: en/lb_config.1:378
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/"
@@ -2268,13 +2285,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:374
+#: en/lb_config.1:378
#, no-wrap
msgid "B<--mirror-debian-installer> I<URL>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:376
+#: en/lb_config.1:380
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 "
@@ -2282,52 +2299,52 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:376
+#: en/lb_config.1:380
#, no-wrap
msgid "B<--mode> debian|emdebian|ubuntu"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:378
+#: en/lb_config.1:382
msgid ""
"defines a global mode to load project specific defaults. By default this is "
"set to debian."
msgstr ""
#. type: IP
-#: en/lb_config.1:378
+#: en/lb_config.1:382
#, no-wrap
msgid "B<--net-root-filesystem> nfs|cfs"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:380
+#: en/lb_config.1:384
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:380
+#: en/lb_config.1:384
#, no-wrap
msgid "B<--net-root-mountoptions> I<OPTIONS>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:382
+#: en/lb_config.1:386
msgid ""
"sets additional options for mounting the root filesystem in netboot images "
"and is by default empty."
msgstr ""
#. type: IP
-#: en/lb_config.1:382
+#: en/lb_config.1:386
#, no-wrap
msgid "B<--net-root-path> I<PATH>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:384
+#: en/lb_config.1:388
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 "
@@ -2336,13 +2353,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:384
+#: en/lb_config.1:388
#, no-wrap
msgid "B<--net-root-server> I<IP>|I<HOSTNAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:386
+#: en/lb_config.1:390
msgid ""
"sets the IP or hostname that will be configured in the bootloader "
"configuration for the root filesystem of your netboot image. This defaults "
@@ -2350,38 +2367,38 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:386
+#: en/lb_config.1:390
#, no-wrap
msgid "B<--net-cow-filesystem> nfs|cfs"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:388
+#: en/lb_config.1:392
msgid ""
"defines the filesystem type for the copy-on-write layer and defaults to nfs."
msgstr ""
#. type: IP
-#: en/lb_config.1:388
+#: en/lb_config.1:392
#, no-wrap
msgid "B<--net-cow-mountoptions> I<OPTIONS>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:390
+#: en/lb_config.1:394
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:390
+#: en/lb_config.1:394
#, no-wrap
msgid "B<--net-cow-path> I<PATH>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:392
+#: en/lb_config.1:396
msgid ""
"defines the path to client writable filesystem. Anywhere that "
"I<client_mac_address> is specified in the path live-boot will substitute the "
@@ -2389,28 +2406,28 @@ msgid ""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:395
+#: en/lb_config.1:399
msgid "Example:"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:397
+#: en/lb_config.1:401
msgid "/export/hosts/client_mac_address"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:399
+#: en/lb_config.1:403
msgid "/export/hosts/00-16-D3-33-92-E8"
msgstr ""
#. type: IP
-#: en/lb_config.1:399
+#: en/lb_config.1:403
#, no-wrap
msgid "B<--net-cow-server> I<IP>|I<HOSTNAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:401
+#: en/lb_config.1:405
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 "
@@ -2418,13 +2435,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:401
+#: en/lb_config.1:405
#, no-wrap
msgid "B<--net-tarball> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:403
+#: en/lb_config.1:407
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 "
@@ -2432,13 +2449,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:403
+#: en/lb_config.1:407
#, no-wrap
msgid "-p|B<--package-lists> I<LIST>|\"I<LISTS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:405
+#: en/lb_config.1:409
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 "
@@ -2448,13 +2465,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:405
+#: en/lb_config.1:409
#, no-wrap
msgid "B<--packages> I<PACKAGE>|\"I<PACKAGES>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:407
+#: en/lb_config.1:411
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 "
@@ -2463,37 +2480,37 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:407 en/live-build.7:40
+#: en/lb_config.1:411 en/live-build.7:40
#, no-wrap
msgid "B<--quiet>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:409
+#: en/lb_config.1:413
msgid "reduces the verbosity of messages output by B<lb build>."
msgstr ""
#. type: IP
-#: en/lb_config.1:409
+#: en/lb_config.1:413
#, no-wrap
msgid "-r|B<--repositories> I<REPOSITORY>|\"I<REPOSITORIES>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:411
+#: en/lb_config.1:415
msgid ""
"enables one of available third-party repository configurations in /usr/share/"
"live/build/repositories."
msgstr ""
#. type: IP
-#: en/lb_config.1:411
+#: en/lb_config.1:415
#, no-wrap
msgid "B<--root-command> sudo"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:413
+#: en/lb_config.1:417
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, "
@@ -2501,13 +2518,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:413
+#: en/lb_config.1:417
#, no-wrap
msgid "B<--use-fakeroot> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:415
+#: en/lb_config.1:419
msgid ""
"controls if live-build should utilize fakeroot and fakechroot to try and "
"avoid requiring root privillages where possible. By default, this option is "
@@ -2515,13 +2532,13 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:415
+#: en/lb_config.1:419
#, no-wrap
msgid "B<--archive-areas> I<ARCHIVE_AREA>|\"I<ARCHIVE_AREAS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:417
+#: en/lb_config.1:421
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. "
@@ -2531,26 +2548,26 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:417
+#: en/lb_config.1:421
#, no-wrap
msgid "B<--security> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:419
+#: en/lb_config.1:423
msgid ""
"defines if the security repositories specified in the security mirror "
"options should be used or not."
msgstr ""
#. type: IP
-#: en/lb_config.1:419
+#: en/lb_config.1:423
#, no-wrap
msgid "B<--source> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:421
+#: en/lb_config.1:425
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 "
@@ -2560,37 +2577,37 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:421
+#: en/lb_config.1:425
#, no-wrap
msgid "-s|B<--source-images> iso|net|tar|usb-hdd"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:423
+#: en/lb_config.1:427
msgid "defines the image type for the source image. Default is tar."
msgstr ""
#. type: IP
-#: en/lb_config.1:423
+#: en/lb_config.1:427
#, no-wrap
msgid "B<--syslinux-splash> I<FILE>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:425
+#: en/lb_config.1:429
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:425
+#: en/lb_config.1:429
#, no-wrap
msgid "B<--syslinux-timeout> I<SECONDS>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:427
+#: en/lb_config.1:431
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 "
@@ -2598,38 +2615,38 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:427
+#: en/lb_config.1:431
#, no-wrap
msgid "B<--syslinux-menu> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:429
+#: en/lb_config.1:433
msgid ""
"defines if syslinux should be make use of the vgamenu capabilities or not."
msgstr ""
#. type: IP
-#: en/lb_config.1:429
+#: en/lb_config.1:433
#, no-wrap
msgid "B<--tasksel> aptitude|tasksel"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:431
+#: en/lb_config.1:435
msgid ""
"selects which program is used to install tasks. By default, this is set to "
"tasksel."
msgstr ""
#. type: IP
-#: en/lb_config.1:431
+#: en/lb_config.1:435
#, no-wrap
msgid "B<--tasks> I<TASK>|\"I<TASKS>\""
msgstr ""
#. type: Plain text
-#: en/lb_config.1:433
+#: en/lb_config.1:437
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 "
@@ -2639,26 +2656,26 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:433
+#: en/lb_config.1:437
#, no-wrap
msgid "B<--templates> I<PATH>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:435
+#: en/lb_config.1:439
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:435
+#: en/lb_config.1:439
#, no-wrap
msgid "B<--virtual-root-size> MB"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:437
+#: en/lb_config.1:441
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 "
@@ -2666,39 +2683,39 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:437
+#: en/lb_config.1:441
#, no-wrap
msgid "B<--volatile> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:439
+#: en/lb_config.1:443
msgid ""
"defines if debian volatile package archives should be included in the image "
"or not."
msgstr ""
#. type: IP
-#: en/lb_config.1:439
+#: en/lb_config.1:443
#, no-wrap
msgid "B<--backports> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:441
+#: en/lb_config.1:445
msgid ""
"defines if debian backports package archives should be included in the image "
"or not."
msgstr ""
#. type: IP
-#: en/lb_config.1:441
+#: en/lb_config.1:445
#, no-wrap
msgid "B<--exposed-root> true|false"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:443
+#: en/lb_config.1:447
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 "
@@ -2706,48 +2723,48 @@ msgid ""
msgstr ""
#. type: IP
-#: en/lb_config.1:443
+#: en/lb_config.1:447
#, no-wrap
msgid "B<--username> I<NAME>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:445
+#: en/lb_config.1:449
msgid "sets the name of the account of the default user in the live system."
msgstr ""
#. type: IP
-#: en/lb_config.1:445 en/live-build.7:42
+#: en/lb_config.1:449 en/live-build.7:42
#, no-wrap
msgid "B<--verbose>"
msgstr ""
#. type: Plain text
-#: en/lb_config.1:447
+#: en/lb_config.1:451
msgid "increases the verbosity of messages output by B<lb build>."
msgstr ""
#. type: IP
-#: en/lb_config.1:447
+#: en/lb_config.1:451
#, no-wrap
msgid "B<--win32-loader true|false>"
msgstr ""
#. FIXME
#. type: Plain text
-#: en/lb_config.1:450
+#: en/lb_config.1:454
msgid "defines if win32-loader should be included in the binary image or not."
msgstr ""
#. type: SH
-#: en/lb_config.1:451
+#: en/lb_config.1:455
#, no-wrap
msgid "ENVIRONMENT"
msgstr ""
#. FIXME
#. type: Plain text
-#: en/lb_config.1:454
+#: en/lb_config.1:458
msgid ""
"Currently, command line switches can also be specified through the "
"corresponding environment variable. However, this generally should not be "
@@ -2761,20 +2778,20 @@ msgstr ""
#. FIXME
#. type: IP
-#: en/lb_config.1:458
+#: en/lb_config.1:462
#, no-wrap
msgid "B<auto/config>"
msgstr ""
#. type: IP
-#: en/lb_config.1:459
+#: en/lb_config.1:463
#, no-wrap
msgid "B</etc/live/build.conf, /etc/live/build.d>"
msgstr ""
#. FIXME
#. type: Plain text
-#: en/lb_config.1:462
+#: en/lb_config.1:466
msgid ""
"An optional, global configuration file for B<lb config> variables. It is "
"useful to specify a few system wide defaults, like LB_MIRROR_BOOTSTRAP. This "
diff --git a/repositories/progress-linux_artax b/repositories/progress-linux_artax
new file mode 100644
index 000000000..b851d5f63
--- /dev/null
+++ b/repositories/progress-linux_artax
@@ -0,0 +1,7 @@
+# Progress Linux 1.0 (artax)
+
+deb http://archive.progress-linux.org/progress/ artax @ARCHIVE_AREAS@
+deb-src http://archive.progress-linux.org/progress/ artax @ARCHIVE_AREAS@
+
+deb http://archive.progress-linux.org/progress/ artax-staging @ARCHIVE_AREAS@
+deb-src http://archive.progress-linux.org/progress/ artax-staging @ARCHIVE_AREAS@
diff --git a/repositories/progress-linux_artax-backports b/repositories/progress-linux_artax-backports
new file mode 100644
index 000000000..48be6ee56
--- /dev/null
+++ b/repositories/progress-linux_artax-backports
@@ -0,0 +1,15 @@
+# Progress Linux 1.0 (artax)
+
+deb http://archive.progress-linux.org/progress/ artax @ARCHIVE_AREAS@
+deb-src http://archive.progress-linux.org/progress/ artax @ARCHIVE_AREAS@
+
+deb http://archive.progress-linux.org/progress/ artax-staging @ARCHIVE_AREAS@
+deb-src http://archive.progress-linux.org/progress/ artax-staging @ARCHIVE_AREAS@
+
+# Progress Linux 1.0 (artax) - backports
+
+deb http://archive.progress-linux.org/progress/ artax-backports @ARCHIVE_AREAS@
+deb-src http://archive.progress-linux.org/progress/ artax-backports @ARCHIVE_AREAS@
+
+deb http://archive.progress-linux.org/progress/ artax-backports-staging @ARCHIVE_AREAS@
+deb-src http://archive.progress-linux.org/progress/ artax-backports-staging @ARCHIVE_AREAS@
diff --git a/repositories/progress-linux_artax-backports.gpg b/repositories/progress-linux_artax-backports.gpg
new file mode 100644
index 000000000..c4a248f62
--- /dev/null
+++ b/repositories/progress-linux_artax-backports.gpg
@@ -0,0 +1,53 @@
+-----BEGIN PGP PUBLIC KEY BLOCK-----
+Version: GnuPG v1.4.10 (GNU/Linux)
+
+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
+ynEx7mFdpU8WS9iMWrnEJC5G0aL6XA==
+=eKf+
+-----END PGP PUBLIC KEY BLOCK-----
diff --git a/repositories/progress-linux_artax.gpg b/repositories/progress-linux_artax.gpg
new file mode 100644
index 000000000..c4a248f62
--- /dev/null
+++ b/repositories/progress-linux_artax.gpg
@@ -0,0 +1,53 @@
+-----BEGIN PGP PUBLIC KEY BLOCK-----
+Version: GnuPG v1.4.10 (GNU/Linux)
+
+mQINBEy6rbMBEACd8OmNrdmuRq1wZ7xudolmVxsLZD1sAyEkmYpvZd3uuVqXsKN6
+y7NXHGczjHLtEhLhylpiK+BVlilzpWSI3CB8npFz3CDALkGH2V4TbP6GkAb07cpj
+ktbZ/4gq+mPShwqxZpuBlCSr11npZK6XXyDiXdshFrHrFmvP52Gp3rKBv3xz8Tem
+BrHgLe9xCbmURZWOxuKiYuOp0j1A3WH3XeszybnntKbjxprDVJwink35GO5xm6p6
+B+kFyhe05txrInZm4R7ctL2gcXubmtCrWz2e0hvj8N7VVI9k1Vm7GFkIvSsMwUhN
+VGEszwCC+tHbYaNJXVQYd7FtGPC6vhDnF0QD1TVvKr3oiODYVRdQpe/WUqyooECj
+B0wiVKr4pgUCw7c6OCjegMpUGha7vzGgef+ozEep4sJAIVbl2Ixcq4UMjK3wNmT1
+2yPxpabEzgG/PCJ78nyc7eewPJPQq/s4gpRLJOaEE6zmauQrflKtCl9taFRpm1a4
+aZit6ES94ETUyDG2h4thtazDBBTmzW2gLwwA4hGWOGJ9k80FJLPWw4G9hLvga+sY
+FbckJ+D9NFKJNUuM/W1feddBjpOH/xsr0FIdfbm/8eIhCW2ox5m9LlPx2wXey0S6
+vzRZKOzp8HNl5o7+EMcKfmXDQOO83T7d3QEG+EZq4Cg2/XLVpwYL8liTKQARAQAB
+tFxQcm9ncmVzcyBMaW51eCBBcmNoaXZlIEF1dG9tYXRpYyBTaWduaW5nIEtleSAo
+MS4wL2FydGF4KSA8c3lzYWRtaW5AbGlzdHMucHJvZ3Jlc3MtbGludXgub3JnPokC
+PQQTAQgAJwUCTLqtswIbAwUJEs/3gAULCQgHAwUVCgkICwUWAgMBAAIeAQIXgAAK
+CRD/maXDBVyNeM8lEACUjjNW9pY3Nx++uAnEvUpRFVeg3c0z1XSO4ZMzHSOQ/C5e
+fA0DY8oPP3MS639HQj6JRK8DQEjFYmN+JpyAUn3AiqbFIN0yLC1mOs2ewz+Q1g7w
+VsTJGLJZryKRJapO7ikXZiqmtd3zUIFJThtr6mib8D+GQ8x7arFfyfnCfAMGg0Y+
+8oRtMk20yUhKtTSCJ5sLUfKNLTaAEbyX1bj6WogYH8HY89ZnFgvLlxIAMaahdhjC
+p4ko/1G3MRdCq9Y6LVeRWjv3OqWlPLr+lEN001qE6f0IBpvv6CsyTYI+wXd+tsBh
+vyx6XiJLa1iU6RB6jhH9UNODj8umoStWsCqXJm8IivDkDdMaWS8YZ7tgiYF7G95E
+gY0HvHhL5eVgVHTSnTN+bnmAHDGGwwQYMwz0o7xPDIVc/vQkILWOtIprc9amzHyR
+paNYQVPmQu6QnBgBBQyFSIrfnUV2fdmCdOa1JkP70EHIVDKohQO/fV4E7WH8s+Mx
+8/KrHwGBJGSdMHLDAr2R1TiZaf6sN/Ec8jr63mmEYkfULe4MPGvxxCtOjdakYgg1
+U9WZ76g4ApEcwF0zsFqtGcMGoiJ0/5mWojCbVzaFNo/tbv/DLSPnJdk88TqMvJcf
+P5N9T1Fykiya4mT1DQXqTB0JX156l76u/kps3yrSvPJsyDaL8OncCPsKgTeKHbkC
+DQRMuq4jARAAt0Yy1/si7gIdRPZ3jYVYbVD99Vu481rg1mwW8uw093o8AX5K/XM5
+57GWWAUiApH5LLSbXB3Zo96qiTJi2aAQZbWzorR9IA0XK6dLWVkQQSePacGe+IFB
+h9K8fMadSPeSLeYsHXVf3G0H2kDYKARqfmGc08cDpHdl6v3n9ZfqXGpvVCfXPNRq
+8YqVURrxQuphntpMqa9eOjVJmvXyItEPsQ9zugQllMeb9IDAkUTKwfMqWZguhfUO
+LmIO/Ns+uXld6qXMje8Z/SQrdqDrQLmEiqUz7ay7mQoKPcKtf6OBKEB/a71mCFSf
+YdIUaDECrcHWz5Aq/z0jSjC1Xh0d3Rzh+pZ8LvBPkNS5MgM2O9xJtkhLSvFerHnj
+ZdndN6GmaicaYSweOJyh0Op3xQDk/ci5c8tjJ+59dOqN7SPzSq6qWw6ZKdFadYdY
+hCvRycxMItfh7y72wTJEMv8qw0c/bIgXn0wIc8xI7TtNEodfoJmcZingBDXML89O
+71WvW4FqGBUtSKMlLR1cy5nASNGbN+eKMthFEU2V5G+/0tRwMPVEId6mw4ULlsSk
+sDmFGG3V2ZNb9rbHPrlXXpADbaSBCfjTWqJFlrTK+VyjWk8OLRLH19q27A8jDdnw
+0w6ccBksW8TjqOtAqwSv++qKu6vtYCsdGvhJK77tFdq7yL+v42Z+tekAEQEAAYkC
+JQQYAQgADwUCTLquIwIbDAUJEs/3gAAKCRD/maXDBVyNePTAD/9iczN1SOxsYzud
+0KTTu1BaBCwM89tPmonpq1j0MtI+a2zchRf4hqp9HIrWn4aAqjIZ+4K9bAYGCPYy
+4GIQvHy6bg/GBxh54Lm8yuJDbT1E6J/t22UUgijp0bK6SarQcAYe/v1AhOJYDKqY
+GjU7/B5IE0j1R9Toz95OB1TfcS7NhsUGwYJmO57k1t/jGSwiJkWmlFeiMeN2nGL7
+CFenOgi+P3husxXfaap4t6F/D8eNpFoLCulsD8t1n00QZ55dPZ1Nh++PqLKp+MEy
+JGLKi0oH269JwW3MW/GuWW6H05xgLXAJ6gXOSCDGaf4MXhZIQwz9viEzCQ8oTk4h
+cogBwWeRxvWMXUrxKqjbTeF8FQ7eOMMX6qWhBdalbJxPVhpk/XjxdyIRHtXpAkhc
+Z9Ue89YStD1PMziaYszeF9b8Va6gSnT49qxkybWuVd/fk/89E5Vu826ozXKMb7b3
+HWDc/JD79dYBOjDb1+h5n606mumKMUnvQrZhduiah1pBoBOMJR67b32LqFtH6AIb
+0pMMEMJlUnFOp9mCtEnmL86E3enJV99PDX9Zjq9xLiE65AT4exDqY7rePloRIuPI
+Zg7qiBRSZOAztMQWAiDJxX1YAk8RJesLSSy7VV/9N3lwxMHcdvt6ZBgrwm+yOdC0
+ynEx7mFdpU8WS9iMWrnEJC5G0aL6XA==
+=eKf+
+-----END PGP PUBLIC KEY BLOCK-----
diff --git a/repositories/progress-linux_baureo b/repositories/progress-linux_baureo
new file mode 100644
index 000000000..8ccf10525
--- /dev/null
+++ b/repositories/progress-linux_baureo
@@ -0,0 +1,7 @@
+# Progress Linux 2.0 (baureo) - unreleased
+
+deb http://archive.progress-linux.org/progress/ baureo @ARCHIVE_AREAS@
+deb-src http://archive.progress-linux.org/progress/ baureo @ARCHIVE_AREAS@
+
+deb http://archive.progress-linux.org/progress/ baureo-staging @ARCHIVE_AREAS@
+deb-src http://archive.progress-linux.org/progress/ baureo-staging @ARCHIVE_AREAS@
diff --git a/repositories/progress-linux_baureo.gpg b/repositories/progress-linux_baureo.gpg
new file mode 100644
index 000000000..c4a248f62
--- /dev/null
+++ b/repositories/progress-linux_baureo.gpg
@@ -0,0 +1,53 @@
+-----BEGIN PGP PUBLIC KEY BLOCK-----
+Version: GnuPG v1.4.10 (GNU/Linux)
+
+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
+ynEx7mFdpU8WS9iMWrnEJC5G0aL6XA==
+=eKf+
+-----END PGP PUBLIC KEY BLOCK-----
diff --git a/scripts/build/lb_binary_debian-installer b/scripts/build/lb_binary_debian-installer
index 5a420274b..c2a7bacae 100755
--- a/scripts/build/lb_binary_debian-installer
+++ b/scripts/build/lb_binary_debian-installer
@@ -604,15 +604,15 @@ then
# Generating release file
mv binary chroot/root
- eval _VERSION="$`echo RELEASE_${LB_DISTRIBUTION}`"
+ eval _VERSION="$`echo RELEASE_${LB_PARENT_DISTRIBUTION}`"
- case "${LB_DISTRIBUTION}" in
+ case "${LB_PARENT_DISTRIBUTION}" in
sid)
_SUITE="unstable"
;;
*)
- _SUITE="${LB_DISTRIBUTION}"
+ _SUITE="${LB_PARENT_DISTRIBUTION}"
;;
esac
@@ -622,7 +622,7 @@ cd /root/binary && apt-ftparchive \
-o APT::FTPArchive::Release::Label="Debian" \
-o APT::FTPArchive::Release::Suite="${_SUITE}" \
-o APT::FTPArchive::Release::Version="${_VERSION}" \
- -o APT::FTPArchive::Release::Codename="${LB_DISTRIBUTION}" \
+ -o APT::FTPArchive::Release::Codename="${LB_PARENT_DISTRIBUTION}" \
-o APT::FTPArchive::Release::Date="$(date -R)" \
-o APT::FTPArchive::Release::Architectures="${LB_ARCHITECTURES}" \
-o APT::FTPArchive::Release::Components="main" \
@@ -636,9 +636,9 @@ EOF
DISTRIBUTIONS="frozen stable testing unstable"
- if [ "${LB_DEBIAN_INSTALLER_DISTRIBUTION}" != "${LB_DISTRIBUTION}" ]
+ if [ "${LB_DEBIAN_INSTALLER_DISTRIBUTION}" != "${LB_PARENT_DISTRIBUTION}" ]
then
- DISTRIBUTIONS="${DISTRIBUTIONS} ${LB_DISTRIBUTION}"
+ DISTRIBUTIONS="${DISTRIBUTIONS} ${LB_PARENT_DISTRIBUTION}"
fi
case "${LB_BINARY_IMAGES}" in
diff --git a/scripts/build/lb_binary_disk b/scripts/build/lb_binary_disk
index c2f8c4741..9b16ef0a0 100755
--- a/scripts/build/lb_binary_disk
+++ b/scripts/build/lb_binary_disk
@@ -110,7 +110,7 @@ case "${LB_DEBIAN_INSTALLER}" in
echo "${TITLE} ${VERSION} \"${DISTRIBUTION}\" - ${STRING} LIVE/CD Binary $(date +%Y%m%d-%H:%M)" > binary/.disk/info
- cp "${LB_BASE}"/data/debian-cd/${LB_DISTRIBUTION}/${LB_ARCHITECTURES}_udeb_include binary/.disk/udeb_include
+ cp "${LB_BASE}"/data/debian-cd/${LB_PARENT_DISTRIBUTION}/${LB_ARCHITECTURES}_udeb_include binary/.disk/udeb_include
;;
true|netinst|live)
@@ -128,7 +128,7 @@ case "${LB_DEBIAN_INSTALLER}" in
fi
- cp "${LB_BASE}"/data/debian-cd/${LB_DISTRIBUTION}/${LB_ARCHITECTURES}_netinst_udeb_include binary/.disk/udeb_include
+ cp "${LB_BASE}"/data/debian-cd/${LB_PARENT_DISTRIBUTION}/${LB_ARCHITECTURES}_netinst_udeb_include binary/.disk/udeb_include
if [ "${LB_DEBIAN_INSTALLER}" = "live" ]
then
@@ -143,7 +143,7 @@ case "${LB_DEBIAN_INSTALLER}" in
echo "${TITLE} ${VERSION} \"${DISTRIBUTION}\" - ${STRING} LIVE/BC Binary $(date +%Y%m%d-%H:%M)" > binary/.disk/info
- cp "${LB_BASE}"/data/debian-cd/${LB_DISTRIBUTION}/${LB_ARCHITECTURES}_businesscard_udeb_include binary/.disk/udeb_include
+ cp "${LB_BASE}"/data/debian-cd/${LB_PARENT_DISTRIBUTION}/${LB_ARCHITECTURES}_businesscard_udeb_include binary/.disk/udeb_include
;;
false)
diff --git a/scripts/build/lb_binary_local-packagelists b/scripts/build/lb_binary_local-packagelists
index 745a43472..57ba74e19 100755
--- a/scripts/build/lb_binary_local-packagelists
+++ b/scripts/build/lb_binary_local-packagelists
@@ -108,9 +108,9 @@ then
do
SECTION="$(basename ${SECTION})"
- mkdir -p dists/${LB_DISTRIBUTION}/${SECTION}/binary-${LB_ARCHITECTURES}
- apt-ftparchive packages pool/${SECTION} > dists/${LB_DISTRIBUTION}/${SECTION}/binary-${LB_ARCHITECTURES}/Packages
- gzip -9 -c dists/${LB_DISTRIBUTION}/${SECTION}/binary-${LB_ARCHITECTURES}/Packages > dists/${LB_DISTRIBUTION}/${SECTION}/binary-${LB_ARCHITECTURES}/Packages.gz
+ mkdir -p dists/${LB_PARENT_DISTRIBUTION}/${SECTION}/binary-${LB_ARCHITECTURES}
+ apt-ftparchive packages pool/${SECTION} > dists/${LB_PARENT_DISTRIBUTION}/${SECTION}/binary-${LB_ARCHITECTURES}/Packages
+ gzip -9 -c dists/${LB_PARENT_DISTRIBUTION}/${SECTION}/binary-${LB_ARCHITECTURES}/Packages > dists/${LB_PARENT_DISTRIBUTION}/${SECTION}/binary-${LB_ARCHITECTURES}/Packages.gz
done
cd "${OLDPWD}"
diff --git a/scripts/build/lb_bootstrap_cdebootstrap b/scripts/build/lb_bootstrap_cdebootstrap
index 2f648a3c0..c92746ea2 100755
--- a/scripts/build/lb_bootstrap_cdebootstrap
+++ b/scripts/build/lb_bootstrap_cdebootstrap
@@ -131,7 +131,7 @@ then
fi
Echo_breakage "Running ${LB_BOOTSTRAP} (download-only)... "
- ${LB_ROOT_COMMAND} ${LB_BOOTSTRAP} ${CDEBOOTSTRAP_OPTIONS} --download-only "${LB_DISTRIBUTION}" chroot "${LB_MIRROR_BOOTSTRAP}"
+ ${LB_ROOT_COMMAND} ${LB_BOOTSTRAP} ${CDEBOOTSTRAP_OPTIONS} --download-only "${LB_PARENT_DISTRIBUTION}" chroot "${LB_MIRROR_BOOTSTRAP}"
if [ -n "${LB_ROOT_COMMAND}" ]
then
@@ -147,7 +147,7 @@ then
fi
Echo_breakage "Running ${LB_BOOTSTRAP}... "
- ${LB_ROOT_COMMAND} ${LB_BOOTSTRAP} ${CDEBOOTSTRAP_OPTIONS} "${LB_DISTRIBUTION}" chroot "${LB_MIRROR_BOOTSTRAP}"
+ ${LB_ROOT_COMMAND} ${LB_BOOTSTRAP} ${CDEBOOTSTRAP_OPTIONS} "${LB_PARENT_DISTRIBUTION}" chroot "${LB_MIRROR_BOOTSTRAP}"
if [ -n "${LB_ROOT_COMMAND}" ]
then
diff --git a/scripts/build/lb_bootstrap_debootstrap b/scripts/build/lb_bootstrap_debootstrap
index 7f3b9c7d6..a698e54aa 100755
--- a/scripts/build/lb_bootstrap_debootstrap
+++ b/scripts/build/lb_bootstrap_debootstrap
@@ -124,7 +124,7 @@ then
fi
Echo_breakage "Running debootstrap (download-only)... "
- ${LB_ROOT_COMMAND} debootstrap ${DEBOOTSTRAP_OPTIONS} --download-only "${LB_DISTRIBUTION}" chroot "${LB_MIRROR_BOOTSTRAP}" "${LB_DEBOOTSTRAP_SCRIPT}"
+ ${LB_ROOT_COMMAND} debootstrap ${DEBOOTSTRAP_OPTIONS} --download-only "${LB_PARENT_DISTRIBUTION}" chroot "${LB_MIRROR_BOOTSTRAP}" "${LB_DEBOOTSTRAP_SCRIPT}"
if [ -n "${LB_ROOT_COMMAND}" ]
then
@@ -140,7 +140,7 @@ then
fi
Echo_breakage "Running debootstrap... "
- ${LB_ROOT_COMMAND} debootstrap ${DEBOOTSTRAP_OPTIONS} "${LB_DISTRIBUTION}" chroot "${LB_MIRROR_BOOTSTRAP}" "${LB_DEBOOTSTRAP_SCRIPT}"
+ ${LB_ROOT_COMMAND} debootstrap ${DEBOOTSTRAP_OPTIONS} "${LB_PARENT_DISTRIBUTION}" chroot "${LB_MIRROR_BOOTSTRAP}" "${LB_DEBOOTSTRAP_SCRIPT}"
if [ -n "${LB_ROOT_COMMAND}" ]
then
diff --git a/scripts/build/lb_chroot_hacks b/scripts/build/lb_chroot_hacks
index 47524dbdc..70af7f8a3 100755
--- a/scripts/build/lb_chroot_hacks
+++ b/scripts/build/lb_chroot_hacks
@@ -38,7 +38,7 @@ Check_lockfile .lock
# Creating lock file
Create_lockfile .lock
-case "${LB_DISTRIBUTION}" in
+case "${LB_PARENT_DISTRIBUTION}" in
squeeze|sid)
if echo "${LB_TASKS}" | grep -qs lxde ||
echo "${LB_TASKS}" | grep -qs xfce
diff --git a/scripts/build/lb_chroot_sources b/scripts/build/lb_chroot_sources
index f7fd3ba26..d06667bda 100755
--- a/scripts/build/lb_chroot_sources
+++ b/scripts/build/lb_chroot_sources
@@ -50,34 +50,34 @@ case "${1}" in
cat > chroot/etc/apt/sources.list << EOF
# /etc/apt/sources.list
-deb ${LB_MIRROR_CHROOT} ${LB_DISTRIBUTION} ${LB_ARCHIVE_AREAS}
+deb ${LB_MIRROR_CHROOT} ${LB_PARENT_DISTRIBUTION} ${LB_ARCHIVE_AREAS}
EOF
if [ "${LB_SOURCE}" = "true" ]
then
- echo "deb-src ${LB_MIRROR_CHROOT} ${LB_DISTRIBUTION} ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list
+ echo "deb-src ${LB_MIRROR_CHROOT} ${LB_PARENT_DISTRIBUTION} ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list
fi
if [ "${LB_SECURITY}" = "true" ]
then
case "${LB_MODE}" in
ubuntu)
- echo "deb ${LB_MIRROR_CHROOT_SECURITY} ${LB_DISTRIBUTION}-security ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list
+ echo "deb ${LB_MIRROR_CHROOT_SECURITY} ${LB_PARENT_DISTRIBUTION}-security ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list
if [ "${LB_SOURCE}" = "true" ]
then
- echo "deb-src ${LB_MIRROR_CHROOT_SECURITY} ${LB_DISTRIBUTION}-security ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list
+ echo "deb-src ${LB_MIRROR_CHROOT_SECURITY} ${LB_PARENT_DISTRIBUTION}-security ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list
fi
;;
*)
- if [ "${LB_DISTRIBUTION}" != "sid" ] && [ "${LB_DISTRIBUTION}" != "unstable" ]
+ if [ "${LB_PARENT_DISTRIBUTION}" != "sid" ] && [ "${LB_PARENT_DISTRIBUTION}" != "unstable" ]
then
- echo "deb ${LB_MIRROR_CHROOT_SECURITY} ${LB_DISTRIBUTION}/updates ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list
+ echo "deb ${LB_MIRROR_CHROOT_SECURITY} ${LB_PARENT_DISTRIBUTION}/updates ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list
if [ "${LB_SOURCE}" = "true" ]
then
- echo "deb-src ${LB_MIRROR_CHROOT_SECURITY} ${LB_DISTRIBUTION}/updates ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list
+ echo "deb-src ${LB_MIRROR_CHROOT_SECURITY} ${LB_PARENT_DISTRIBUTION}/updates ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list
fi
fi
;;
@@ -88,11 +88,11 @@ EOF
then
case "${LB_MODE}" in
debian|ubuntu)
- echo "deb ${LB_MIRROR_CHROOT_VOLATILE} ${LB_DISTRIBUTION}-updates ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list
+ echo "deb ${LB_MIRROR_CHROOT_VOLATILE} ${LB_PARENT_DISTRIBUTION}-updates ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list
if [ "${LB_SOURCE}" = "true" ]
then
- echo "deb-src ${LB_MIRROR_CHROOT_VOLATILE} ${LB_DISTRIBUTION}-updates ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list
+ echo "deb-src ${LB_MIRROR_CHROOT_VOLATILE} ${LB_PARENT_DISTRIBUTION}-updates ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list
fi
;;
esac
@@ -102,13 +102,13 @@ EOF
then
case "${LB_MODE}" in
debian)
- if [ "${LB_DISTRIBUTION}" != "sid" ] && [ "${LB_DISTRIBUTION}" != "unstable" ]
+ if [ "${LB_PARENT_DISTRIBUTION}" != "sid" ] && [ "${LB_PARENT_DISTRIBUTION}" != "unstable" ]
then
- echo "deb ${LB_MIRROR_CHROOT_BACKPORTS} ${LB_DISTRIBUTION}-backports ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list
+ echo "deb ${LB_MIRROR_CHROOT_BACKPORTS} ${LB_PARENT_DISTRIBUTION}-backports ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list
if [ "${LB_SOURCE}" = "true" ]
then
- echo "deb-src ${LB_MIRROR_CHROOT_BACKPORTS} ${LB_DISTRIBUTION}-backports ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list
+ echo "deb-src ${LB_MIRROR_CHROOT_BACKPORTS} ${LB_PARENT_DISTRIBUTION}-backports ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list
fi
fi
;;
@@ -144,7 +144,7 @@ EOF
then
_DISTRIBUTION="sid"
else
- _DISTRIBUTION="${LB_DISTRIBUTION}"
+ _DISTRIBUTION="${LB_PARENT_DISTRIBUTION}"
fi
for PLACE in config/repositories "${LB_BASE}/repositories"
@@ -482,34 +482,34 @@ EOF
cat > chroot/etc/apt/sources.list << EOF
# /etc/apt/sources.list
-deb ${LB_MIRROR_BINARY} ${LB_DISTRIBUTION} ${LB_ARCHIVE_AREAS}
+deb ${LB_MIRROR_BINARY} ${LB_PARENT_DISTRIBUTION} ${LB_ARCHIVE_AREAS}
EOF
if [ "${LB_SOURCE}" = "true" ]
then
- echo "deb-src ${LB_MIRROR_BINARY} ${LB_DISTRIBUTION} ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list
+ echo "deb-src ${LB_MIRROR_BINARY} ${LB_PARENT_DISTRIBUTION} ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list
fi
if [ "${LB_SECURITY}" = "true" ]
then
case "${LB_MODE}" in
ubuntu)
- echo "deb ${LB_MIRROR_BINARY_SECURITY} ${LB_DISTRIBUTION}-security ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list
+ echo "deb ${LB_MIRROR_BINARY_SECURITY} ${LB_PARENT_DISTRIBUTION}-security ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list
if [ "${LB_SOURCE}" = "true" ]
then
- echo "deb-src ${LB_MIRROR_BINARY_SECURITY} ${LB_DISTRIBUTION}-security ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list
+ echo "deb-src ${LB_MIRROR_BINARY_SECURITY} ${LB_PARENT_DISTRIBUTION}-security ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list
fi
;;
*)
- if [ "${LB_DISTRIBUTION}" != "sid" ] && [ "${LB_DISTRIBUTION}" != "unstable" ]
+ if [ "${LB_PARENT_DISTRIBUTION}" != "sid" ] && [ "${LB_PARENT_DISTRIBUTION}" != "unstable" ]
then
- echo "deb ${LB_MIRROR_BINARY_SECURITY} ${LB_DISTRIBUTION}/updates ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list
+ echo "deb ${LB_MIRROR_BINARY_SECURITY} ${LB_PARENT_DISTRIBUTION}/updates ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list
if [ "${LB_SOURCE}" = "true" ]
then
- echo "deb-src ${LB_MIRROR_BINARY_SECURITY} ${LB_DISTRIBUTION}/updates ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list
+ echo "deb-src ${LB_MIRROR_BINARY_SECURITY} ${LB_PARENT_DISTRIBUTION}/updates ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list
fi
fi
;;
@@ -520,11 +520,11 @@ EOF
then
case "${LB_MODE}" in
debian|ubuntu)
- echo "deb ${LB_MIRROR_BINARY_VOLATILE} ${LB_DISTRIBUTION}-updates ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list
+ echo "deb ${LB_MIRROR_BINARY_VOLATILE} ${LB_PARENT_DISTRIBUTION}-updates ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list
if [ "${LB_SOURCE}" = "true" ]
then
- echo "deb-src ${LB_MIRROR_BINARY_VOLATILE} ${LB_DISTRIBUTION}-updates ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list
+ echo "deb-src ${LB_MIRROR_BINARY_VOLATILE} ${LB_PARENT_DISTRIBUTION}-updates ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list
fi
;;
esac
@@ -534,13 +534,13 @@ EOF
then
case "${LB_MODE}" in
debian)
- if [ "${LB_DISTRIBUTION}" != "sid" ] && [ "${LB_DISTRIBUTION}" != "unstable" ]
+ if [ "${LB_PARENT_DISTRIBUTION}" != "sid" ] && [ "${LB_PARENT_DISTRIBUTION}" != "unstable" ]
then
- echo "deb ${LB_MIRROR_BINARY_BACKPORTS} ${LB_DISTRIBUTION}-backports ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list
+ echo "deb ${LB_MIRROR_BINARY_BACKPORTS} ${LB_PARENT_DISTRIBUTION}-backports ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list
if [ "${LB_SOURCE}" = "true" ]
then
- echo "deb-src ${LB_MIRROR_BINARY_BACKPORTS} ${LB_DISTRIBUTION}-backports ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list
+ echo "deb-src ${LB_MIRROR_BINARY_BACKPORTS} ${LB_PARENT_DISTRIBUTION}-backports ${LB_ARCHIVE_AREAS}" >> chroot/etc/apt/sources.list
fi
fi
;;
@@ -567,13 +567,13 @@ EOF
# Adding sources.list entries (binary)
if [ -e "${PLACE}/${REPOSITORY}.binary" ]
then
- sed -e "s|@DISTRIBUTION@|${LB_DISTRIBUTION}|g" \
+ sed -e "s|@DISTRIBUTION@|${LB_PARENT_DISTRIBUTION}|g" \
-e "s|@ARCHIVE_AREAS@|${LB_ARCHIVE_AREAS}|g" \
"${PLACE}/${REPOSITORY}.binary" > \
"chroot/etc/apt/sources.list.d/${REPOSITORY}.list"
elif [ -e "${PLACE}/${REPOSITORY}" ]
then
- sed -e "s|@DISTRIBUTION@|${LB_DISTRIBUTION}|g" \
+ sed -e "s|@DISTRIBUTION@|${LB_PARENT_DISTRIBUTION}|g" \
-e "s|@ARCHIVE_AREAS@|${LB_ARCHIVE_AREAS}|g" \
"${PLACE}/${REPOSITORY}" > \
"chroot/etc/apt/sources.list.d/${REPOSITORY}.list"
diff --git a/scripts/build/lb_config b/scripts/build/lb_config
index e61c86550..2b0d99d46 100755
--- a/scripts/build/lb_config
+++ b/scripts/build/lb_config
@@ -67,6 +67,7 @@ USAGE="${PROGRAM} [--apt apt|aptitude]\n\
\t [--debian-installer-gui true|false]\n\
\t [--debug]\n\
\t [-d|--distribution CODENAME]\n\
+\t [--parent-distribution CODENAME]\n\
\t [--dump]\n\
\t [--fdisk fdisk|fdisk.dist]\n\
\t [--force]\n\
@@ -139,7 +140,7 @@ Local_arguments ()
cache-stages:,debconf-frontend:,debconf-nowarnings:,debconf-priority:,dump,
initramfs:,fdisk:,losetup:,mode:,repositories:,root-command:,use-fakeroot:,tasksel:,includes:,
templates:,architectures:,bootstrap-config:,bootstrap-flavour:,bootstrap-keyring:,clean,
- distribution:,mirror-bootstrap:,mirror-chroot:,mirror-chroot-security:,mirror-chroot-volatile:,mirror-chroot-backports:,mirror-binary:,
+ distribution:,parent-distribution:,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:,
@@ -382,6 +383,11 @@ Local_arguments ()
esac
;;
+ --parent-distribution)
+ LB_PARENT_DISTRIBUTION="${2}"
+ shift 2
+ ;;
+
-m|--mirror-bootstrap)
LB_MIRROR_BOOTSTRAP="${2}"
shift 2
@@ -963,6 +969,10 @@ LB_BOOTSTRAP_KEYRING="${LB_BOOTSTRAP_KEYRING}"
# (Default: ${LB_DISTRIBUTION})
LB_DISTRIBUTION="${LB_DISTRIBUTION}"
+# \$LB_PARENT_DISTRIBUTION: select parent distribution to use
+# (Default: ${LB_PARENT_DISTRIBUTION})
+LB_PARENT_DISTRIBUTION="${LB_PARENT_DISTRIBUTION}"
+
# \$LB_MIRROR_BOOTSTRAP: set mirror to bootstrap from
# (Default: ${LB_MIRROR_BOOTSTRAP})
LB_MIRROR_BOOTSTRAP="${LB_MIRROR_BOOTSTRAP}"