From 8473b925fd94fdb7bb1ae6309a4ab58d490382c9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Thu, 19 Jul 2012 19:37:26 +0200 Subject: Fixing up inclusion of functions while allowing local usage of live-build with different file layouts. --- bin/lb | 11 +- bin/live-build | 2 +- frontends/cgi/live-build-cgi | 2 +- frontends/cgi/live-build-cgi.cron | 2 +- functions/common.sh | 2 +- functions/defaults.sh | 21 +- functions/packagelists.sh | 2 +- manpages/de/lb_local.de.1 | 46 --- manpages/en/lb_local.1 | 32 -- manpages/po/de/lb_local.1.po | 651 ------------------------------- manpages/po4a.cfg | 1 - manpages/pot/lb_local.1.pot | 651 ------------------------------- scripts/build.sh | 14 +- scripts/build/lb_binary | 3 +- scripts/build/lb_binary_checksums | 2 +- scripts/build/lb_binary_chroot | 2 +- scripts/build/lb_binary_debian-installer | 16 +- scripts/build/lb_binary_disk | 32 +- scripts/build/lb_binary_grub | 2 +- scripts/build/lb_binary_grub2 | 2 +- scripts/build/lb_binary_hdd | 2 +- scripts/build/lb_binary_hooks | 19 +- scripts/build/lb_binary_includes | 2 +- scripts/build/lb_binary_iso | 2 +- scripts/build/lb_binary_linux-image | 2 +- scripts/build/lb_binary_local-includes | 2 +- scripts/build/lb_binary_manifest | 2 +- scripts/build/lb_binary_memtest | 2 +- scripts/build/lb_binary_netboot | 2 +- scripts/build/lb_binary_package-lists | 2 +- scripts/build/lb_binary_rootfs | 2 +- scripts/build/lb_binary_silo | 2 +- scripts/build/lb_binary_syslinux | 9 +- scripts/build/lb_binary_tar | 2 +- scripts/build/lb_binary_virtual-hdd | 2 +- scripts/build/lb_binary_win32-loader | 2 +- scripts/build/lb_binary_yaboot | 2 +- scripts/build/lb_binary_zsync | 2 +- scripts/build/lb_bootstrap | 2 +- scripts/build/lb_bootstrap_cache | 2 +- scripts/build/lb_bootstrap_cdebootstrap | 2 +- scripts/build/lb_bootstrap_copy | 2 +- scripts/build/lb_bootstrap_debootstrap | 2 +- scripts/build/lb_build | 2 +- scripts/build/lb_chroot | 2 +- scripts/build/lb_chroot_apt | 2 +- scripts/build/lb_chroot_archives | 62 +-- scripts/build/lb_chroot_cache | 2 +- scripts/build/lb_chroot_debianchroot | 2 +- scripts/build/lb_chroot_devpts | 2 +- scripts/build/lb_chroot_dpkg | 2 +- scripts/build/lb_chroot_hacks | 2 +- scripts/build/lb_chroot_hooks | 16 +- scripts/build/lb_chroot_hostname | 2 +- scripts/build/lb_chroot_hosts | 2 +- scripts/build/lb_chroot_includes | 2 +- scripts/build/lb_chroot_install-packages | 2 +- scripts/build/lb_chroot_interactive | 2 +- scripts/build/lb_chroot_linux-image | 2 +- scripts/build/lb_chroot_live-packages | 2 +- scripts/build/lb_chroot_local-patches | 2 +- scripts/build/lb_chroot_package-lists | 2 +- scripts/build/lb_chroot_preseed | 2 +- scripts/build/lb_chroot_proc | 2 +- scripts/build/lb_chroot_resolv | 2 +- scripts/build/lb_chroot_selinuxfs | 2 +- scripts/build/lb_chroot_sysfs | 2 +- scripts/build/lb_chroot_sysv-rc | 2 +- scripts/build/lb_chroot_task-lists | 2 +- scripts/build/lb_chroot_tmpfs | 2 +- scripts/build/lb_chroot_upstart | 2 +- scripts/build/lb_clean | 2 +- scripts/build/lb_config | 2 +- scripts/build/lb_local | 19 - scripts/build/lb_source | 2 +- scripts/build/lb_source_checksums | 2 +- scripts/build/lb_source_debian | 2 +- scripts/build/lb_source_debian-live | 2 +- scripts/build/lb_source_disk | 2 +- scripts/build/lb_source_hdd | 2 +- scripts/build/lb_source_iso | 2 +- scripts/build/lb_source_tar | 2 +- scripts/build/lb_source_virtual-hdd | 2 +- scripts/build/lb_testroot | 2 +- 84 files changed, 198 insertions(+), 1541 deletions(-) delete mode 100644 manpages/de/lb_local.de.1 delete mode 100644 manpages/en/lb_local.1 delete mode 100644 manpages/po/de/lb_local.1.po delete mode 100644 manpages/pot/lb_local.1.pot delete mode 100755 scripts/build/lb_local diff --git a/bin/lb b/bin/lb index 6c92b746c..8cf9014a1 100755 --- a/bin/lb +++ b/bin/lb @@ -11,12 +11,7 @@ set -e # Including common functions -if [ -e "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh ] -then - . "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh -else - . /usr/lib/live/build.sh -fi +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'utility to build Debian Live systems')" @@ -58,9 +53,9 @@ case "${1}" in fi done - if [ -x "${LB_BASE}/scripts/build/${COMMAND}" ] + if [ -x "${LIVE_BUILD}/scripts/build/${COMMAND}" ] then - SCRIPT="${LB_BASE}/scripts/build/${COMMAND}" + SCRIPT="${LIVE_BUILD}/scripts/build/${COMMAND}" elif [ -x /usr/lib/live/build/${COMMAND} ] then SCRIPT=/usr/lib/live/build/"${COMMAND}" diff --git a/bin/live-build b/bin/live-build index bb8d9620a..94a54c305 100755 --- a/bin/live-build +++ b/bin/live-build @@ -23,7 +23,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh if [ -x "$(which man 2>/dev/null)" ] then diff --git a/frontends/cgi/live-build-cgi b/frontends/cgi/live-build-cgi index 356918fcf..587be6c9d 100755 --- a/frontends/cgi/live-build-cgi +++ b/frontends/cgi/live-build-cgi @@ -9,7 +9,7 @@ # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Reading defaults if [ -r /etc/default/live-build-cgi ] diff --git a/frontends/cgi/live-build-cgi.cron b/frontends/cgi/live-build-cgi.cron index a81de39a0..c8d966457 100755 --- a/frontends/cgi/live-build-cgi.cron +++ b/frontends/cgi/live-build-cgi.cron @@ -9,7 +9,7 @@ # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Reading defaults if [ -r /etc/default/live-build-cgi ] diff --git a/functions/common.sh b/functions/common.sh index 538d180b0..19c3bc052 100755 --- a/functions/common.sh +++ b/functions/common.sh @@ -9,7 +9,7 @@ PROGRAM="live-build" -VERSION="$(cat ${LB_BASE}/VERSION)" +VERSION="$(if [ -e ${LIVE_BUILD}/VERSION ]; then cat ${LIVE_BUILD}/VERSION; else cat /usr/share/live/build/VERSION; fi)" CONFIG_VERSION="$(echo ${VERSION} | awk -F- '{ print $1 }')" PATH="${PWD}/local/scripts:${PATH}" diff --git a/functions/defaults.sh b/functions/defaults.sh index 5e06c485f..c9b9e00fe 100755 --- a/functions/defaults.sh +++ b/functions/defaults.sh @@ -14,12 +14,9 @@ Set_defaults () if [ -e local/live-build ] then - LB_BASE="${LB_BASE:-${PWD}/local/live-build}" + LIVE_BUILD="${LIVE_BUILD:-${PWD}/local/live-build}" PATH="${PWD}/local/live-build/scripts/build:${PATH}" - export LB_BASE PATH - else - LB_BASE="${LB_BASE:-/usr/share/live/build}" - export LB_BASE + export LIVE_BUILD PATH fi # Setting system type @@ -322,10 +319,20 @@ Set_defaults () esac # Setting includes - LB_INCLUDES="${LB_INCLUDES:-${LB_BASE}/includes}" + if [ -n "${LIVE_BUID}" ] + then + LB_INCLUDES="${LB_INCLUDES:-${LIVE_BUILD}/includes}" + else + LB_INCLUDES="${LB_INCLUDES:-/usr/share/live/build/includes}" + fi # Setting templates - LB_TEMPLATES="${LB_TEMPLATES:-${LB_BASE}/templates}" + if [ -n "${LIVE_BUID}" ] + then + LB_TEMPLATES="${LB_TEMPLATES:-${LIVE_BUILD}/templates}" + else + LB_TEMPLATES="${LB_TEMPLATES:-/usr/share/live/build/templates}" + fi # Setting live build options _BREAKPOINTS="${_BREAKPOINTS:-false}" diff --git a/functions/packagelists.sh b/functions/packagelists.sh index bb16bb25c..0e2d5ff57 100755 --- a/functions/packagelists.sh +++ b/functions/packagelists.sh @@ -22,7 +22,7 @@ Expand_packagelist () _LB_NESTED=0 _LB_ENABLED=1 - for _LB_SEARCH_PATH in ${@} "${LB_BASE:-/usr/share/live/build}/package-lists" + for _LB_SEARCH_PATH in ${@} "${LIVE_BUILD}/package-lists" /usr/share/live/build/package-lists do if [ -e "${_LB_SEARCH_PATH}/${_LB_LIST_NAME}" ] then diff --git a/manpages/de/lb_local.de.1 b/manpages/de/lb_local.de.1 deleted file mode 100644 index e9523049e..000000000 --- a/manpages/de/lb_local.de.1 +++ /dev/null @@ -1,46 +0,0 @@ -.\"******************************************************************* -.\" -.\" This file was generated with po4a. Translate the source file. -.\" -.\"******************************************************************* -.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project" - -.SH NAME -\fBlb local\fP \- wrapper for local live\-build programs - -.SH SYNOPSIS -\fBlb local\fP [\fIlive\-build\ options\fP] - -.SH DESCRIPTION -\fBlb local\fP is a high\-level command (porcelain) of \fIlive\-build\fP(7), the -Debian Live tool suite. -.PP - -.\" FIXME -.SH OPTIONS -\fBlb local\fP has no specific options but understands all generic live\-build -options. See \fIlive\-build\fP(7) for a complete list of all generic live\-build -options. - -.SH FILES -.IP \fBnone\fP 4 - -.SH "SEE ALSO" -\fIlive\-build\fP(7) -.PP -This program is a part of live\-build. - -.SH HOMEPAGE -More information about live\-build and the Debian Live project can be found -on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at -<\fIhttp://live.debian.net/manual/\fP>. - -.SH BUGS -Bugs can be reported by submitting a bugreport for the live\-build package in -the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or by -writing a mail to the Debian Live mailing list at -<\fIdebian\-live@lists.debian.org\fP>. - -.SH AUTHOR -live\-build was written by Daniel Baumann <\fIdaniel@debian.org\fP> for -the Debian project. diff --git a/manpages/en/lb_local.1 b/manpages/en/lb_local.1 deleted file mode 100644 index 5d378aee7..000000000 --- a/manpages/en/lb_local.1 +++ /dev/null @@ -1,32 +0,0 @@ -.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "Debian Live Project" - -.SH NAME -\fBlb local\fR \- wrapper for local live\-build programs - -.SH SYNOPSIS -\fBlb local\fR [\fIlive\-build\ options\fR] - -.SH DESCRIPTION -\fBlb local\fR is a high\-level command (porcelain) of \fIlive\-build\fR(7), the Debian Live tool suite. -.PP -.\" FIXME - -.SH OPTIONS -\fBlb local\fR has no specific options but understands all generic live\-build options. See \fIlive\-build\fR(7) for a complete list of all generic live\-build options. - -.SH FILES -.IP "\fBnone\fR" 4 - -.SH SEE ALSO -\fIlive\-build\fR(7) -.PP -This program is a part of live\-build. - -.SH HOMEPAGE -More information about live\-build and the Debian Live project can be found on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. - -.SH BUGS -Bugs can be reported by submitting a bugreport for the live\-build package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@lists.debian.org\fR>. - -.SH AUTHOR -live\-build was written by Daniel Baumann <\fIdaniel@debian.org\fR> for the Debian project. diff --git a/manpages/po/de/lb_local.1.po b/manpages/po/de/lb_local.1.po deleted file mode 100644 index e94f8e36a..000000000 --- a/manpages/po/de/lb_local.1.po +++ /dev/null @@ -1,651 +0,0 @@ -# German translations for live-build package -# Copyright (C) 2012 Free Software Foundation, Inc. -# This file is distributed under the same license as the live-build package. -# Automatically generated, 2012. -# -msgid "" -msgstr "" -"Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2012-07-19 04:15+0300\n" -"PO-Revision-Date: 2012-02-04 21:39+0100\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"Language: de\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=ASCII\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. type: TH -#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1 -#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1 -#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1 -#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 -#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1 -#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1 -#: en/lb_binary_memtest.1:1 en/lb_binary_netboot.1:1 en/lb_binary_rootfs.1:1 -#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1 -#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1 -#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1 -#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1 -#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1 -#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1 -#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 -#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 -#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1 -#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1 -#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1 -#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1 -#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1 -#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 -#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1 -#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1 -#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1 -#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1 -#: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1 -#: en/lb_testroot.1:1 en/live-build.7:1 -#, no-wrap -msgid "LIVE-BUILD" -msgstr "" - -#. type: TH -#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1 -#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1 -#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1 -#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 -#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1 -#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1 -#: en/lb_binary_memtest.1:1 en/lb_binary_netboot.1:1 en/lb_binary_rootfs.1:1 -#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1 -#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1 -#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1 -#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1 -#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1 -#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1 -#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 -#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 -#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1 -#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1 -#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1 -#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1 -#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1 -#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 -#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1 -#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1 -#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1 -#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1 -#: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1 -#: en/lb_testroot.1:1 en/live-build.7:1 -#, no-wrap -msgid "2012-07-19" -msgstr "" - -#. type: TH -#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1 -#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1 -#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1 -#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 -#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1 -#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1 -#: en/lb_binary_memtest.1:1 en/lb_binary_netboot.1:1 en/lb_binary_rootfs.1:1 -#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1 -#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1 -#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1 -#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1 -#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1 -#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1 -#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 -#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 -#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1 -#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1 -#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1 -#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1 -#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1 -#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 -#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1 -#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1 -#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1 -#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1 -#: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1 -#: en/lb_testroot.1:1 en/live-build.7:1 -#, no-wrap -msgid "3.0~a53-1" -msgstr "" - -#. type: TH -#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1 -#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1 -#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1 -#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 -#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1 -#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1 -#: en/lb_binary_memtest.1:1 en/lb_binary_netboot.1:1 en/lb_binary_rootfs.1:1 -#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1 -#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1 -#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1 -#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1 -#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1 -#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1 -#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 -#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 -#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1 -#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1 -#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1 -#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1 -#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1 -#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 -#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1 -#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1 -#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1 -#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1 -#: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1 -#: en/lb_testroot.1:1 en/live-build.7:1 -#, no-wrap -msgid "Debian Live Project" -msgstr "" - -#. type: SH -#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3 -#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3 -#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3 -#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 -#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3 -#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3 -#: en/lb_binary_memtest.1:3 en/lb_binary_netboot.1:3 en/lb_binary_rootfs.1:3 -#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3 -#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3 -#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3 -#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3 -#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3 -#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3 -#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 -#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 -#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3 -#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3 -#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3 -#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3 -#: en/lb_chroot_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3 -#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 -#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3 -#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3 -#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3 -#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3 -#: en/lb_source_iso.1:3 en/lb_source_tar.1:3 en/lb_source_virtual-hdd.1:3 -#: en/lb_testroot.1:3 en/live-build.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -#. type: SH -#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6 -#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6 -#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6 -#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 -#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6 -#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6 -#: en/lb_binary_memtest.1:6 en/lb_binary_netboot.1:6 en/lb_binary_rootfs.1:6 -#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6 -#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6 -#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6 -#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6 -#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6 -#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6 -#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 -#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 -#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6 -#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6 -#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6 -#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6 -#: en/lb_chroot_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6 -#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 -#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6 -#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6 -#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6 -#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6 -#: en/lb_source_iso.1:6 en/lb_source_tar.1:6 en/lb_source_virtual-hdd.1:6 -#: en/lb_testroot.1:6 en/live-build.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -#. type: SH -#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9 -#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9 -#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9 -#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 -#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9 -#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9 -#: en/lb_binary_memtest.1:9 en/lb_binary_netboot.1:9 en/lb_binary_rootfs.1:9 -#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9 -#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9 -#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9 -#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9 -#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9 -#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9 -#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 -#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 -#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9 -#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9 -#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9 -#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9 -#: en/lb_chroot_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9 -#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 -#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9 -#: en/lb_config.1:243 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_hdd.1:9 -#: en/lb_source_iso.1:9 en/lb_source_tar.1:9 en/lb_source_virtual-hdd.1:9 -#: en/lb_testroot.1:9 en/live-build.7:11 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -#. type: SH -#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14 -#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14 -#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14 -#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 -#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14 -#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14 -#: en/lb_binary_memtest.1:14 en/lb_binary_netboot.1:14 -#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 -#: en/lb_binary_tar.1:14 en/lb_binary_virtual-hdd.1:14 -#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14 -#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14 -#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14 -#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14 -#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14 -#: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14 -#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14 -#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14 -#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14 -#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14 -#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14 -#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14 -#: en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14 -#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 -#: en/lb_chroot_task-lists.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16 -#: en/lb_config.1:252 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_hdd.1:14 -#: en/lb_source_iso.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14 -#: en/lb_testroot.1:18 en/live-build.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -#. type: SH -#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17 -#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17 -#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17 -#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 -#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17 -#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17 -#: en/lb_binary_memtest.1:17 en/lb_binary_netboot.1:17 -#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 -#: en/lb_binary_tar.1:17 en/lb_binary_virtual-hdd.1:17 -#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17 -#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17 -#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17 -#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17 -#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17 -#: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17 -#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17 -#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17 -#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17 -#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17 -#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17 -#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17 -#: en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17 -#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 -#: en/lb_chroot_task-lists.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38 -#: en/lb_config.1:502 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_hdd.1:17 -#: en/lb_source_iso.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17 -#: en/lb_testroot.1:21 en/live-build.7:225 -#, no-wrap -msgid "FILES" -msgstr "" - -#. type: IP -#: en/lb.1:20 en/lb_binary.1:18 en/lb_bootstrap.1:18 en/lb_chroot.1:18 -#: en/lb_local.1:18 en/lb_source.1:18 en/lb_testroot.1:22 -#, no-wrap -msgid "B" -msgstr "" - -#. type: SH -#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21 -#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21 -#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21 -#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 -#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21 -#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21 -#: en/lb_binary_memtest.1:21 en/lb_binary_netboot.1:21 -#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 -#: en/lb_binary_tar.1:21 en/lb_binary_virtual-hdd.1:21 -#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21 -#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21 -#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21 -#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20 -#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21 -#: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21 -#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21 -#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21 -#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21 -#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21 -#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21 -#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21 -#: en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21 -#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 -#: en/lb_chroot_task-lists.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43 -#: en/lb_config.1:509 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_hdd.1:21 -#: en/lb_source_iso.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21 -#: en/lb_testroot.1:24 en/live-build.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -#. type: Plain text -#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23 -#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23 -#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23 -#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 -#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23 -#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23 -#: en/lb_binary_memtest.1:23 en/lb_binary_netboot.1:23 -#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 -#: en/lb_binary_tar.1:23 en/lb_binary_virtual-hdd.1:23 -#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23 -#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23 -#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23 -#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22 -#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23 -#: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23 -#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23 -#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23 -#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23 -#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23 -#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23 -#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23 -#: en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23 -#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 -#: en/lb_chroot_task-lists.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45 -#: en/lb_config.1:511 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_hdd.1:23 -#: en/lb_source_iso.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23 -#: en/lb_testroot.1:26 -msgid "I(7)" -msgstr "" - -#. type: Plain text -#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25 -#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25 -#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25 -#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 -#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25 -#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25 -#: en/lb_binary_memtest.1:25 en/lb_binary_netboot.1:25 -#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 -#: en/lb_binary_tar.1:25 en/lb_binary_virtual-hdd.1:25 -#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25 -#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25 -#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25 -#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24 -#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25 -#: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25 -#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25 -#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25 -#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25 -#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25 -#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25 -#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25 -#: en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25 -#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 -#: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47 -#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24 -#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25 -#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_hdd.1:25 -#: en/lb_source_iso.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25 -#: en/lb_testroot.1:28 en/live-build.7:235 -msgid "This program is a part of live-build." -msgstr "" - -#. type: SH -#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26 -#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26 -#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26 -#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 -#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26 -#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26 -#: en/lb_binary_memtest.1:26 en/lb_binary_netboot.1:26 -#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 -#: en/lb_binary_tar.1:26 en/lb_binary_virtual-hdd.1:26 -#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26 -#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26 -#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26 -#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25 -#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26 -#: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26 -#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26 -#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26 -#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26 -#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26 -#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26 -#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26 -#: en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26 -#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 -#: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48 -#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25 -#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26 -#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_hdd.1:26 -#: en/lb_source_iso.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26 -#: en/lb_testroot.1:29 en/live-build.7:236 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -#. type: Plain text -#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28 -#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28 -#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28 -#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 -#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28 -#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28 -#: en/lb_binary_memtest.1:28 en/lb_binary_netboot.1:28 -#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 -#: en/lb_binary_tar.1:28 en/lb_binary_virtual-hdd.1:28 -#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28 -#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28 -#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28 -#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27 -#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28 -#: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28 -#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28 -#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28 -#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28 -#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28 -#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28 -#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28 -#: en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28 -#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 -#: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50 -#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27 -#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28 -#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_hdd.1:28 -#: en/lb_source_iso.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28 -#: en/lb_testroot.1:31 en/live-build.7:238 -msgid "" -"More information about live-build and the Debian Live project can be found " -"on the homepage at EIE and in the manual at " -"EIE." -msgstr "" - -#. type: SH -#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29 -#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29 -#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29 -#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 -#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29 -#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29 -#: en/lb_binary_memtest.1:29 en/lb_binary_netboot.1:29 -#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 -#: en/lb_binary_tar.1:29 en/lb_binary_virtual-hdd.1:29 -#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29 -#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29 -#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29 -#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28 -#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29 -#: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29 -#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29 -#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29 -#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29 -#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29 -#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29 -#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29 -#: en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29 -#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 -#: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51 -#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28 -#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29 -#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_hdd.1:29 -#: en/lb_source_iso.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29 -#: en/lb_testroot.1:32 en/live-build.7:239 -#, no-wrap -msgid "BUGS" -msgstr "" - -#. type: Plain text -#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31 -#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31 -#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31 -#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 -#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31 -#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31 -#: en/lb_binary_memtest.1:31 en/lb_binary_netboot.1:31 -#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 -#: en/lb_binary_tar.1:31 en/lb_binary_virtual-hdd.1:31 -#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31 -#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31 -#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31 -#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30 -#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31 -#: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31 -#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31 -#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31 -#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31 -#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31 -#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31 -#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31 -#: en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31 -#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 -#: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53 -#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30 -#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31 -#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_hdd.1:31 -#: en/lb_source_iso.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31 -#: en/lb_testroot.1:34 en/live-build.7:241 -msgid "" -"Bugs can be reported by submitting a bugreport for the live-build package in " -"the Debian Bug Tracking System at EIE or by " -"writing a mail to the Debian Live mailing list at EIE." -msgstr "" - -#. type: SH -#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32 -#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32 -#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32 -#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 -#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32 -#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32 -#: en/lb_binary_memtest.1:32 en/lb_binary_netboot.1:32 -#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 -#: en/lb_binary_tar.1:32 en/lb_binary_virtual-hdd.1:32 -#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32 -#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32 -#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32 -#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31 -#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32 -#: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32 -#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32 -#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32 -#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32 -#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32 -#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32 -#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32 -#: en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32 -#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 -#: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54 -#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31 -#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32 -#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_hdd.1:32 -#: en/lb_source_iso.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32 -#: en/lb_testroot.1:35 en/live-build.7:242 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -#. type: Plain text -#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33 -#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33 -#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33 -#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 -#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33 -#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33 -#: en/lb_binary_memtest.1:33 en/lb_binary_netboot.1:33 -#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 -#: en/lb_binary_tar.1:33 en/lb_binary_virtual-hdd.1:33 -#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33 -#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33 -#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33 -#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32 -#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33 -#: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33 -#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33 -#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33 -#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33 -#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33 -#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33 -#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33 -#: en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33 -#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 -#: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55 -#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32 -#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33 -#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_hdd.1:33 -#: en/lb_source_iso.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33 -#: en/lb_testroot.1:36 en/live-build.7:243 -msgid "" -"live-build was written by Daniel Baumann EIE for " -"the Debian project." -msgstr "" - -#. type: Plain text -#: en/lb_local.1:5 -msgid "B - wrapper for local live-build programs" -msgstr "" - -#. type: Plain text -#: en/lb_local.1:8 -msgid "B [I]" -msgstr "" - -#. type: Plain text -#: en/lb_local.1:11 -msgid "" -"B is a high-level command (porcelain) of I(7), the " -"Debian Live tool suite." -msgstr "" - -#. type: Plain text -#: en/lb_local.1:16 -msgid "" -"B has no specific options but understands all generic live-build " -"options. See I(7) for a complete list of all generic live-build " -"options." -msgstr "" diff --git a/manpages/po4a.cfg b/manpages/po4a.cfg index 6a2b98077..2fae553cd 100644 --- a/manpages/po4a.cfg +++ b/manpages/po4a.cfg @@ -58,7 +58,6 @@ [type: man] en/lb_chroot_upstart.1 $lang:$lang/lb_chroot_upstart.$lang.1 [type: man] en/lb_clean.1 $lang:$lang/lb_clean.$lang.1 [type: man] en/lb_config.1 $lang:$lang/lb_config.$lang.1 -[type: man] en/lb_local.1 $lang:$lang/lb_local.$lang.1 [type: man] en/lb_source.1 $lang:$lang/lb_source.$lang.1 [type: man] en/lb_source_checksums.1 $lang:$lang/lb_source_checksums.$lang.1 [type: man] en/lb_source_debian-live.1 $lang:$lang/lb_source_debian-live.$lang.1 diff --git a/manpages/pot/lb_local.1.pot b/manpages/pot/lb_local.1.pot deleted file mode 100644 index 6938cc86d..000000000 --- a/manpages/pot/lb_local.1.pot +++ /dev/null @@ -1,651 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the live-build package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: live-build VERSION\n" -"POT-Creation-Date: 2012-07-19 04:15+0300\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: 8bit\n" - -#. type: TH -#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1 -#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1 -#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1 -#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 -#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1 -#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1 -#: en/lb_binary_memtest.1:1 en/lb_binary_netboot.1:1 en/lb_binary_rootfs.1:1 -#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1 -#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1 -#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1 -#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1 -#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1 -#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1 -#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 -#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 -#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1 -#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1 -#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1 -#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1 -#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1 -#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 -#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1 -#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1 -#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1 -#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1 -#: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1 -#: en/lb_testroot.1:1 en/live-build.7:1 -#, no-wrap -msgid "LIVE-BUILD" -msgstr "" - -#. type: TH -#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1 -#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1 -#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1 -#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 -#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1 -#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1 -#: en/lb_binary_memtest.1:1 en/lb_binary_netboot.1:1 en/lb_binary_rootfs.1:1 -#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1 -#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1 -#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1 -#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1 -#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1 -#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1 -#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 -#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 -#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1 -#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1 -#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1 -#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1 -#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1 -#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 -#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1 -#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1 -#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1 -#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1 -#: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1 -#: en/lb_testroot.1:1 en/live-build.7:1 -#, no-wrap -msgid "2012-07-19" -msgstr "" - -#. type: TH -#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1 -#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1 -#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1 -#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 -#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1 -#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1 -#: en/lb_binary_memtest.1:1 en/lb_binary_netboot.1:1 en/lb_binary_rootfs.1:1 -#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1 -#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1 -#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1 -#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1 -#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1 -#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1 -#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 -#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 -#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1 -#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1 -#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1 -#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1 -#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1 -#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 -#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1 -#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1 -#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1 -#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1 -#: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1 -#: en/lb_testroot.1:1 en/live-build.7:1 -#, no-wrap -msgid "3.0~a53-1" -msgstr "" - -#. type: TH -#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1 -#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1 -#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1 -#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1 -#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1 -#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1 -#: en/lb_binary_memtest.1:1 en/lb_binary_netboot.1:1 en/lb_binary_rootfs.1:1 -#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1 -#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1 -#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1 -#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1 -#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1 -#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1 -#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1 -#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1 -#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1 -#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1 -#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1 -#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1 -#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1 -#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 -#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1 -#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1 -#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1 -#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1 -#: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1 -#: en/lb_testroot.1:1 en/live-build.7:1 -#, no-wrap -msgid "Debian Live Project" -msgstr "" - -#. type: SH -#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3 -#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3 -#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3 -#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3 -#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3 -#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3 -#: en/lb_binary_memtest.1:3 en/lb_binary_netboot.1:3 en/lb_binary_rootfs.1:3 -#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3 -#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3 -#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3 -#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3 -#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3 -#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3 -#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3 -#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3 -#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3 -#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3 -#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3 -#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3 -#: en/lb_chroot_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3 -#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 -#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3 -#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3 -#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3 -#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3 -#: en/lb_source_iso.1:3 en/lb_source_tar.1:3 en/lb_source_virtual-hdd.1:3 -#: en/lb_testroot.1:3 en/live-build.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -#. type: SH -#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6 -#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6 -#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6 -#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6 -#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6 -#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6 -#: en/lb_binary_memtest.1:6 en/lb_binary_netboot.1:6 en/lb_binary_rootfs.1:6 -#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6 -#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6 -#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6 -#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6 -#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6 -#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6 -#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6 -#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6 -#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6 -#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6 -#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6 -#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6 -#: en/lb_chroot_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6 -#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 -#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6 -#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6 -#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6 -#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6 -#: en/lb_source_iso.1:6 en/lb_source_tar.1:6 en/lb_source_virtual-hdd.1:6 -#: en/lb_testroot.1:6 en/live-build.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -#. type: SH -#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9 -#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9 -#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9 -#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9 -#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9 -#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9 -#: en/lb_binary_memtest.1:9 en/lb_binary_netboot.1:9 en/lb_binary_rootfs.1:9 -#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9 -#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9 -#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9 -#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9 -#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9 -#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9 -#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9 -#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9 -#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9 -#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9 -#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9 -#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9 -#: en/lb_chroot_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9 -#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 -#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9 -#: en/lb_config.1:243 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_hdd.1:9 -#: en/lb_source_iso.1:9 en/lb_source_tar.1:9 en/lb_source_virtual-hdd.1:9 -#: en/lb_testroot.1:9 en/live-build.7:11 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -#. type: SH -#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14 -#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14 -#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14 -#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14 -#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14 -#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14 -#: en/lb_binary_memtest.1:14 en/lb_binary_netboot.1:14 -#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14 -#: en/lb_binary_tar.1:14 en/lb_binary_virtual-hdd.1:14 -#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14 -#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14 -#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14 -#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14 -#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14 -#: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14 -#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14 -#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14 -#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14 -#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14 -#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14 -#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14 -#: en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14 -#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14 -#: en/lb_chroot_task-lists.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16 -#: en/lb_config.1:252 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_hdd.1:14 -#: en/lb_source_iso.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14 -#: en/lb_testroot.1:18 en/live-build.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -#. type: SH -#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17 -#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17 -#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17 -#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17 -#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17 -#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17 -#: en/lb_binary_memtest.1:17 en/lb_binary_netboot.1:17 -#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17 -#: en/lb_binary_tar.1:17 en/lb_binary_virtual-hdd.1:17 -#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17 -#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17 -#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17 -#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17 -#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17 -#: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17 -#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17 -#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17 -#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17 -#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17 -#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17 -#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17 -#: en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17 -#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17 -#: en/lb_chroot_task-lists.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38 -#: en/lb_config.1:502 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_hdd.1:17 -#: en/lb_source_iso.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17 -#: en/lb_testroot.1:21 en/live-build.7:225 -#, no-wrap -msgid "FILES" -msgstr "" - -#. type: IP -#: en/lb.1:20 en/lb_binary.1:18 en/lb_bootstrap.1:18 en/lb_chroot.1:18 -#: en/lb_local.1:18 en/lb_source.1:18 en/lb_testroot.1:22 -#, no-wrap -msgid "B" -msgstr "" - -#. type: SH -#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21 -#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21 -#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21 -#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21 -#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21 -#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21 -#: en/lb_binary_memtest.1:21 en/lb_binary_netboot.1:21 -#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21 -#: en/lb_binary_tar.1:21 en/lb_binary_virtual-hdd.1:21 -#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21 -#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21 -#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21 -#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20 -#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21 -#: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21 -#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21 -#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21 -#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21 -#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21 -#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21 -#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21 -#: en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21 -#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21 -#: en/lb_chroot_task-lists.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43 -#: en/lb_config.1:509 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_hdd.1:21 -#: en/lb_source_iso.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21 -#: en/lb_testroot.1:24 en/live-build.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -#. type: Plain text -#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23 -#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23 -#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23 -#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23 -#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23 -#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23 -#: en/lb_binary_memtest.1:23 en/lb_binary_netboot.1:23 -#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23 -#: en/lb_binary_tar.1:23 en/lb_binary_virtual-hdd.1:23 -#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23 -#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23 -#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23 -#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22 -#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23 -#: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23 -#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23 -#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23 -#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23 -#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23 -#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23 -#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23 -#: en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23 -#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23 -#: en/lb_chroot_task-lists.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45 -#: en/lb_config.1:511 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_hdd.1:23 -#: en/lb_source_iso.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23 -#: en/lb_testroot.1:26 -msgid "I(7)" -msgstr "" - -#. type: Plain text -#: en/lb.1:26 en/lb_binary.1:24 en/lb_binary_checksums.1:25 -#: en/lb_binary_chroot.1:25 en/lb_binary_debian-installer.1:25 -#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.1:25 -#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25 -#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25 -#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25 -#: en/lb_binary_memtest.1:25 en/lb_binary_netboot.1:25 -#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25 -#: en/lb_binary_tar.1:25 en/lb_binary_virtual-hdd.1:25 -#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25 -#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25 -#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25 -#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24 -#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25 -#: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25 -#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25 -#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25 -#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25 -#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25 -#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25 -#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25 -#: en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25 -#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25 -#: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47 -#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24 -#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25 -#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_hdd.1:25 -#: en/lb_source_iso.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25 -#: en/lb_testroot.1:28 en/live-build.7:235 -msgid "This program is a part of live-build." -msgstr "" - -#. type: SH -#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26 -#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26 -#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26 -#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26 -#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26 -#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26 -#: en/lb_binary_memtest.1:26 en/lb_binary_netboot.1:26 -#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26 -#: en/lb_binary_tar.1:26 en/lb_binary_virtual-hdd.1:26 -#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26 -#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26 -#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26 -#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25 -#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26 -#: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26 -#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26 -#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26 -#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26 -#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26 -#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26 -#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26 -#: en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26 -#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26 -#: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48 -#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25 -#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26 -#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_hdd.1:26 -#: en/lb_source_iso.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26 -#: en/lb_testroot.1:29 en/live-build.7:236 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -#. type: Plain text -#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28 -#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28 -#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28 -#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28 -#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28 -#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28 -#: en/lb_binary_memtest.1:28 en/lb_binary_netboot.1:28 -#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28 -#: en/lb_binary_tar.1:28 en/lb_binary_virtual-hdd.1:28 -#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28 -#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28 -#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28 -#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27 -#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28 -#: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28 -#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28 -#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28 -#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28 -#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28 -#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28 -#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28 -#: en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28 -#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28 -#: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50 -#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27 -#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28 -#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_hdd.1:28 -#: en/lb_source_iso.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28 -#: en/lb_testroot.1:31 en/live-build.7:238 -msgid "" -"More information about live-build and the Debian Live project can be found " -"on the homepage at EIE and in the manual at " -"EIE." -msgstr "" - -#. type: SH -#: en/lb.1:30 en/lb_binary.1:28 en/lb_binary_checksums.1:29 -#: en/lb_binary_chroot.1:29 en/lb_binary_debian-installer.1:29 -#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.1:29 -#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29 -#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29 -#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29 -#: en/lb_binary_memtest.1:29 en/lb_binary_netboot.1:29 -#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29 -#: en/lb_binary_tar.1:29 en/lb_binary_virtual-hdd.1:29 -#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29 -#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29 -#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29 -#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28 -#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29 -#: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29 -#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29 -#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29 -#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29 -#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29 -#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29 -#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29 -#: en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29 -#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29 -#: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51 -#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28 -#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29 -#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_hdd.1:29 -#: en/lb_source_iso.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29 -#: en/lb_testroot.1:32 en/live-build.7:239 -#, no-wrap -msgid "BUGS" -msgstr "" - -#. type: Plain text -#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31 -#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31 -#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31 -#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31 -#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31 -#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31 -#: en/lb_binary_memtest.1:31 en/lb_binary_netboot.1:31 -#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31 -#: en/lb_binary_tar.1:31 en/lb_binary_virtual-hdd.1:31 -#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31 -#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31 -#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31 -#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30 -#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31 -#: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31 -#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31 -#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31 -#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31 -#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31 -#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31 -#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31 -#: en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31 -#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31 -#: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53 -#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30 -#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31 -#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_hdd.1:31 -#: en/lb_source_iso.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31 -#: en/lb_testroot.1:34 en/live-build.7:241 -msgid "" -"Bugs can be reported by submitting a bugreport for the live-build package in " -"the Debian Bug Tracking System at EIE or by " -"writing a mail to the Debian Live mailing list at EIE." -msgstr "" - -#. type: SH -#: en/lb.1:33 en/lb_binary.1:31 en/lb_binary_checksums.1:32 -#: en/lb_binary_chroot.1:32 en/lb_binary_debian-installer.1:32 -#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.1:32 -#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32 -#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32 -#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32 -#: en/lb_binary_memtest.1:32 en/lb_binary_netboot.1:32 -#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32 -#: en/lb_binary_tar.1:32 en/lb_binary_virtual-hdd.1:32 -#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32 -#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32 -#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32 -#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31 -#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32 -#: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32 -#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32 -#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32 -#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32 -#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32 -#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32 -#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32 -#: en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32 -#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32 -#: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54 -#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31 -#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32 -#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_hdd.1:32 -#: en/lb_source_iso.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32 -#: en/lb_testroot.1:35 en/live-build.7:242 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -#. type: Plain text -#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33 -#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33 -#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33 -#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33 -#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33 -#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33 -#: en/lb_binary_memtest.1:33 en/lb_binary_netboot.1:33 -#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33 -#: en/lb_binary_tar.1:33 en/lb_binary_virtual-hdd.1:33 -#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33 -#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33 -#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33 -#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32 -#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33 -#: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33 -#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33 -#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33 -#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33 -#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33 -#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33 -#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33 -#: en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33 -#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33 -#: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55 -#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32 -#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33 -#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_hdd.1:33 -#: en/lb_source_iso.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33 -#: en/lb_testroot.1:36 en/live-build.7:243 -msgid "" -"live-build was written by Daniel Baumann EIE for " -"the Debian project." -msgstr "" - -#. type: Plain text -#: en/lb_local.1:5 -msgid "B - wrapper for local live-build programs" -msgstr "" - -#. type: Plain text -#: en/lb_local.1:8 -msgid "B [I]" -msgstr "" - -#. type: Plain text -#: en/lb_local.1:11 -msgid "" -"B is a high-level command (porcelain) of I(7), the " -"Debian Live tool suite." -msgstr "" - -#. type: Plain text -#: en/lb_local.1:16 -msgid "" -"B has no specific options but understands all generic live-build " -"options. See I(7) for a complete list of all generic live-build " -"options." -msgstr "" diff --git a/scripts/build.sh b/scripts/build.sh index 500c76d50..fbe3e921f 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -2,18 +2,18 @@ if [ -e local/live-build ] then - LB_BASE="${LB_BASE:-${PWD}/local/live-build}" + LIVE_BUILD="${LIVE_BUILD:-${PWD}/local/live-build}" PATH="${PWD}/local/live-build/scripts/build:${PATH}" - export LB_BASE PATH -else - LB_BASE="${LB_BASE:-/usr/share/live/build}" - export LB_BASE + export LIVE_BUILD PATH fi # Source global functions -for FUNCTION in "${LB_BASE}"/functions/*.sh +for FUNCTION in "${LIVE_BUILD}"/functions/*.sh /usr/share/live/build/functions/*.sh do - . "${FUNCTION}" + if [ -e "${FUNCTION}" ] + then + . "${FUNCTION}" + fi done # Source local functions diff --git a/scripts/build/lb_binary b/scripts/build/lb_binary index 0ffb7bf88..3f56a589e 100755 --- a/scripts/build/lb_binary +++ b/scripts/build/lb_binary @@ -11,7 +11,8 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh + # Automatically populating config tree if [ -x auto/config ] && [ ! -e .build/config ] diff --git a/scripts/build/lb_binary_checksums b/scripts/build/lb_binary_checksums index d86b55d64..2cbe9af51 100755 --- a/scripts/build/lb_binary_checksums +++ b/scripts/build/lb_binary_checksums @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'create binary checksums')" diff --git a/scripts/build/lb_binary_chroot b/scripts/build/lb_binary_chroot index 92e1667b6..190bd8e1c 100755 --- a/scripts/build/lb_binary_chroot +++ b/scripts/build/lb_binary_chroot @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'copy chroot into chroot')" diff --git a/scripts/build/lb_binary_debian-installer b/scripts/build/lb_binary_debian-installer index bdf7308ea..c49ec8d0b 100755 --- a/scripts/build/lb_binary_debian-installer +++ b/scripts/build/lb_binary_debian-installer @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'install debian-installer into binary')" @@ -671,9 +671,17 @@ then fi # Excluding udebs - grep -v "^#" "${LB_BASE}"/data/debian-cd/"${LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION}"/udeb_exclude > exclude || true - grep -v "^#" "${LB_BASE}"/data/debian-cd/"${LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION}"/exclude-udebs >> exclude || true - grep -v "^#" "${LB_BASE}"/data/debian-cd/"${LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION}"/exclude-udebs-${LB_ARCHITECTURES} >> exclude || true + for LOCATION in "${LIVE_BUILD}/data/debian-cd" /usr/share/live/build/data/debian-cd + do + if [ -e "${LOCATION}" ] + then + grep -v "^#" "${LOCATION}/${LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION}/udeb_exclude" > exclude || true + grep -v "^#" "${LOCATION}/${LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION}/exclude-udebs" >> exclude || true + grep -v "^#" "${LOCATION}/${LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION}/exclude-udebs-${LB_ARCHITECTURES}" >> exclude || true + + continue + fi + done # Local exclude file if [ -e ../config/binary_debian-installer/udeb_exclude ] diff --git a/scripts/build/lb_binary_disk b/scripts/build/lb_binary_disk index 7162db2c0..c6075677c 100755 --- a/scripts/build/lb_binary_disk +++ b/scripts/build/lb_binary_disk @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'install disk information into binary')" @@ -135,7 +135,15 @@ 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_PARENT_DISTRIBUTION}/${LB_ARCHITECTURES}_udeb_include binary/.disk/udeb_include + for LOCATION in "${LIVE_BUILD}/data/debian-cd" /usr/share/live/build/data/debian-cd + do + if [ -e "${LOCATION}" ] + then + cp "${LOCATION}/${LB_PARENT_DISTRIBUTION}/${LB_ARCHITECTURES}_udeb_include" binary/.disk/udeb_include + + continue + fi + done ;; true|netinst|live) @@ -152,7 +160,15 @@ case "${LB_DEBIAN_INSTALLER}" in echo "${TITLE} ${VERSION} \"${DISTRIBUTION}\" - ${STRING} LIVE/NETINST Binary $(date +%Y%m%d-%H:%M)" > binary/.disk/info fi - cp "${LB_BASE}"/data/debian-cd/${LB_PARENT_DISTRIBUTION}/${LB_ARCHITECTURES}_netinst_udeb_include binary/.disk/udeb_include + for LOCATION in "${LIVE_BUILD}/data/debian-cd" /usr/share/live/build/data/debian-cd + do + if [ -e "${LOCATION}" ] + then + cp "${LOCATION}/${LB_PARENT_DISTRIBUTION}/${LB_ARCHITECTURES}_netinst_udeb_include" binary/.disk/udeb_include + + continue + fi + done if [ "${LB_DEBIAN_INSTALLER}" = "live" ] then @@ -167,7 +183,15 @@ 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_PARENT_DISTRIBUTION}/${LB_ARCHITECTURES}_businesscard_udeb_include binary/.disk/udeb_include + for LOCATION in "${LIVE_BUILD}/data/debian-cd" /usr/share/live/build/data/debian-cd + do + if [ -e "${LOCATION}" ] + then + cp "${LOCATION}/${LB_PARENT_DISTRIBUTION}/${LB_ARCHITECTURES}_businesscard_udeb_include" binary/.disk/udeb_include + + continue + fi + done ;; false) diff --git a/scripts/build/lb_binary_grub b/scripts/build/lb_binary_grub index ea2b0fecb..6558a508b 100755 --- a/scripts/build/lb_binary_grub +++ b/scripts/build/lb_binary_grub @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'installs grub into binary')" diff --git a/scripts/build/lb_binary_grub2 b/scripts/build/lb_binary_grub2 index f28cd87c4..fbae1d89d 100755 --- a/scripts/build/lb_binary_grub2 +++ b/scripts/build/lb_binary_grub2 @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'installs grub2 into binary')" diff --git a/scripts/build/lb_binary_hdd b/scripts/build/lb_binary_hdd index 13f3f1823..bf349a0f6 100755 --- a/scripts/build/lb_binary_hdd +++ b/scripts/build/lb_binary_hdd @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'build binary image')" diff --git a/scripts/build/lb_binary_hooks b/scripts/build/lb_binary_hooks index 889c3a12f..8ae800bd7 100755 --- a/scripts/build/lb_binary_hooks +++ b/scripts/build/lb_binary_hooks @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'execute hooks in binary')" @@ -43,12 +43,17 @@ Create_lockfile .lock # Running hooks for _HOOK in ${LB_BINARY_HOOKS} do - if [ -e "${LB_BASE}/hooks/???-${_HOOK}.binary" ] - then - cd binary - ./"${LB_BASE}/hooks/???-${_HOOK}.binary" || { Echo_error "${_HOOK} failed (exit non-zero). You should check for errors."; exit 1 ;} - cd "${OLDPWD}" - fi + for LOCATION in "${LIVE_BUILD}/hooks" /usr/share/live/build/hooks + do + if [ -e "${LOCATION}/hooks/???-${_HOOK}.binary" ] + then + cd binary + ./"${LOCATION}/hooks/???-${_HOOK}.binary" || { Echo_error "${_HOOK} failed (exit non-zero). You should check for errors."; exit 1 ;} + cd "${OLDPWD}" + + continue + fi + done done ## Processing local hooks diff --git a/scripts/build/lb_binary_includes b/scripts/build/lb_binary_includes index 0bd183a56..f578ef537 100755 --- a/scripts/build/lb_binary_includes +++ b/scripts/build/lb_binary_includes @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'copy files into binary')" diff --git a/scripts/build/lb_binary_iso b/scripts/build/lb_binary_iso index 2595e6bee..ffc996ee4 100755 --- a/scripts/build/lb_binary_iso +++ b/scripts/build/lb_binary_iso @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'build iso binary image')" diff --git a/scripts/build/lb_binary_linux-image b/scripts/build/lb_binary_linux-image index 0997cea88..06321a7e9 100755 --- a/scripts/build/lb_binary_linux-image +++ b/scripts/build/lb_binary_linux-image @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'install linux-image into binary')" diff --git a/scripts/build/lb_binary_local-includes b/scripts/build/lb_binary_local-includes index 84f7f3c07..773ea8d29 100755 --- a/scripts/build/lb_binary_local-includes +++ b/scripts/build/lb_binary_local-includes @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'copy files into binary')" diff --git a/scripts/build/lb_binary_manifest b/scripts/build/lb_binary_manifest index 32d79eaa7..c8f1bd332 100755 --- a/scripts/build/lb_binary_manifest +++ b/scripts/build/lb_binary_manifest @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'create manifest')" diff --git a/scripts/build/lb_binary_memtest b/scripts/build/lb_binary_memtest index f66701d68..a18583a0d 100755 --- a/scripts/build/lb_binary_memtest +++ b/scripts/build/lb_binary_memtest @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'installs a memtest into binary')" diff --git a/scripts/build/lb_binary_netboot b/scripts/build/lb_binary_netboot index b4957a3b5..479630742 100755 --- a/scripts/build/lb_binary_netboot +++ b/scripts/build/lb_binary_netboot @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'build netboot binary image')" diff --git a/scripts/build/lb_binary_package-lists b/scripts/build/lb_binary_package-lists index 431ec9773..65104dbe0 100755 --- a/scripts/build/lb_binary_package-lists +++ b/scripts/build/lb_binary_package-lists @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'install local packages into binary')" diff --git a/scripts/build/lb_binary_rootfs b/scripts/build/lb_binary_rootfs index 99a7695b3..69b535004 100755 --- a/scripts/build/lb_binary_rootfs +++ b/scripts/build/lb_binary_rootfs @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'build rootfs image')" diff --git a/scripts/build/lb_binary_silo b/scripts/build/lb_binary_silo index 2a9ca5c41..23753c886 100755 --- a/scripts/build/lb_binary_silo +++ b/scripts/build/lb_binary_silo @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'installs silo into binary')" diff --git a/scripts/build/lb_binary_syslinux b/scripts/build/lb_binary_syslinux index 2788103dd..d6719f0dc 100755 --- a/scripts/build/lb_binary_syslinux +++ b/scripts/build/lb_binary_syslinux @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'installs syslinux into binary')" @@ -158,7 +158,12 @@ then _SOURCE="config/bootloaders/${_BOOTLOADER}" else # Internal system copy - _SOURCE="${LB_BASE:-/usr/share/live/build}/bootloaders/${_BOOTLOADER}" + if [ -n "${LIVE_BUILD}" ] + then + _SOURCE="${LIVE_BUILD}/bootloaders/${_BOOTLOADER}" + else + _SOURCE="/usr/share/live/build/bootloaders/${_BOOTLOADER}" + fi fi else # External copy from chroot or system diff --git a/scripts/build/lb_binary_tar b/scripts/build/lb_binary_tar index 80630bdb0..9a133ec02 100755 --- a/scripts/build/lb_binary_tar +++ b/scripts/build/lb_binary_tar @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'build harddisk binary image')" diff --git a/scripts/build/lb_binary_virtual-hdd b/scripts/build/lb_binary_virtual-hdd index c25139a48..bfba5ee66 100755 --- a/scripts/build/lb_binary_virtual-hdd +++ b/scripts/build/lb_binary_virtual-hdd @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'build binary image')" diff --git a/scripts/build/lb_binary_win32-loader b/scripts/build/lb_binary_win32-loader index f0a5aebd8..ce150b6ec 100755 --- a/scripts/build/lb_binary_win32-loader +++ b/scripts/build/lb_binary_win32-loader @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'copy win32-loader into binary')" diff --git a/scripts/build/lb_binary_yaboot b/scripts/build/lb_binary_yaboot index ef001ef06..bc55b6884 100755 --- a/scripts/build/lb_binary_yaboot +++ b/scripts/build/lb_binary_yaboot @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'installs yaboot into binary')" diff --git a/scripts/build/lb_binary_zsync b/scripts/build/lb_binary_zsync index 5ec47e308..22442a81f 100755 --- a/scripts/build/lb_binary_zsync +++ b/scripts/build/lb_binary_zsync @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'build zsync control files')" diff --git a/scripts/build/lb_bootstrap b/scripts/build/lb_bootstrap index 9e9cdb09f..439dd8b72 100755 --- a/scripts/build/lb_bootstrap +++ b/scripts/build/lb_bootstrap @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Automatically populating config tree if [ -x auto/config ] && [ ! -e .build/config ] diff --git a/scripts/build/lb_bootstrap_cache b/scripts/build/lb_bootstrap_cache index fe50fe9f6..296adec33 100755 --- a/scripts/build/lb_bootstrap_cache +++ b/scripts/build/lb_bootstrap_cache @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'cache bootstrap stage')" diff --git a/scripts/build/lb_bootstrap_cdebootstrap b/scripts/build/lb_bootstrap_cdebootstrap index 0d5577a48..ba7ea8a23 100755 --- a/scripts/build/lb_bootstrap_cdebootstrap +++ b/scripts/build/lb_bootstrap_cdebootstrap @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'bootstrap a Debian system with cdebootstrap(1)')" diff --git a/scripts/build/lb_bootstrap_copy b/scripts/build/lb_bootstrap_copy index b0e1f7e52..17e65fb28 100755 --- a/scripts/build/lb_bootstrap_copy +++ b/scripts/build/lb_bootstrap_copy @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'bootstrap by copying the host system')" diff --git a/scripts/build/lb_bootstrap_debootstrap b/scripts/build/lb_bootstrap_debootstrap index f169926cb..c47354d41 100755 --- a/scripts/build/lb_bootstrap_debootstrap +++ b/scripts/build/lb_bootstrap_debootstrap @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'bootstrap a Debian system with debootstrap(8)')" diff --git a/scripts/build/lb_build b/scripts/build/lb_build index cd20b3490..ba8e1f50c 100755 --- a/scripts/build/lb_build +++ b/scripts/build/lb_build @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Automatically populating config tree if [ -x auto/config ] && [ ! -e .build/config ] diff --git a/scripts/build/lb_chroot b/scripts/build/lb_chroot index 71bcb71a6..7f654e000 100755 --- a/scripts/build/lb_chroot +++ b/scripts/build/lb_chroot @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Automatically populating config tree if [ -x auto/config ] && [ ! -e .build/config ] diff --git a/scripts/build/lb_chroot_apt b/scripts/build/lb_chroot_apt index a280d7846..32af22db2 100755 --- a/scripts/build/lb_chroot_apt +++ b/scripts/build/lb_chroot_apt @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'manage /etc/apt/apt.conf')" diff --git a/scripts/build/lb_chroot_archives b/scripts/build/lb_chroot_archives index f3845a070..220f8abe6 100755 --- a/scripts/build/lb_chroot_archives +++ b/scripts/build/lb_chroot_archives @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'manage /etc/apt/sources.list')" @@ -32,6 +32,14 @@ Require_stagefile .build/config .build/bootstrap _LB_LOCAL_KEY_EMAIL="live-build-local-key@invalid" +# FIXME: this is ugly +if [ -n "${LIVE_BUILD}" ] +then + _BASE="${LIVE_BUILD}" +else + _BASE="/usr/share/live/build" +fi + case "${LB_DERIVATIVE}" in true) _PARENT_FILE="sources.list.d/debian.list" @@ -207,44 +215,44 @@ EOF # Prefer archives from the config tree # over the global ones. - if ! ls "${LB_BASE}/archives/${REPOSITORY}"* > /dev/null 2>&1 + if ! ls "${_BASE}/archives/${REPOSITORY}"* > /dev/null 2>&1 then continue fi # Adding sources.list entries (chroot) - if [ -e "${LB_BASE}/archives/${REPOSITORY}.chroot" ] + if [ -e "${_BASE}/archives/${REPOSITORY}.chroot" ] then sed -e "s|@DISTRIBUTION@|${_DISTRIBUTION}|g" \ -e "s|@ARCHIVE_AREAS@|${LB_PARENT_ARCHIVE_AREAS}|g" \ - "${LB_BASE}/archives/${REPOSITORY}.chroot" > \ + "${_BASE}/archives/${REPOSITORY}.chroot" > \ "chroot/etc/apt/sources.list.d/${REPOSITORY}.list" - elif [ -e "${LB_BASE}/archives/${REPOSITORY}" ] + elif [ -e "${_BASE}/archives/${REPOSITORY}" ] then sed -e "s|@DISTRIBUTION@|${_DISTRIBUTION}|g" \ -e "s|@ARCHIVE_AREAS@|${LB_PARENT_ARCHIVE_AREAS}|g" \ - "${LB_BASE}/archives/${REPOSITORY}" > \ + "${_BASE}/archives/${REPOSITORY}" > \ "chroot/etc/apt/sources.list.d/${REPOSITORY}.list" fi # Adding pinning preferences (chroot) - if [ -e "${LB_BASE}/archives/${REPOSITORY}.pref" ] + if [ -e "${_BASE}/archives/${REPOSITORY}.pref" ] then - cp "${LB_BASE}/archives/${REPOSITORY}.pref" chroot/etc/apt/sources.list.d - elif [ -e "${LB_BASE}/archives/${REPOSITORY}.pref.chroot" ] + cp "${_BASE}/archives/${REPOSITORY}.pref" chroot/etc/apt/sources.list.d + elif [ -e "${_BASE}/archives/${REPOSITORY}.pref.chroot" ] then - cp "${LB_BASE}/archives/${REPOSITORY}.pref.chroot" "chroot/etc/apt/sources.list.d/${REPOSITORY}.pref" + cp "${_BASE}/archives/${REPOSITORY}.pref.chroot" "chroot/etc/apt/sources.list.d/${REPOSITORY}.pref" fi if [ "${LB_APT_SECURE}" != false ] then # Adding archive signing keys (chroot) - if [ -e "${LB_BASE}/archives/${REPOSITORY}.key.chroot" ] + if [ -e "${_BASE}/archives/${REPOSITORY}.key.chroot" ] then - cat "${LB_BASE}/archives/${REPOSITORY}.key.chroot" | Chroot chroot "apt-key add -" - elif [ -e "${LB_BASE}/archives/${REPOSITORY}.key" ] + cat "${_BASE}/archives/${REPOSITORY}.key.chroot" | Chroot chroot "apt-key add -" + elif [ -e "${_BASE}/archives/${REPOSITORY}.key" ] then - cat "${LB_BASE}/archives/${REPOSITORY}.key" | Chroot chroot "apt-key add -" + cat "${_BASE}/archives/${REPOSITORY}.key" | Chroot chroot "apt-key add -" fi fi done @@ -763,44 +771,44 @@ EOF # Prefer archives from the config tree # over the global ones. - if ! ls "${LB_BASE}/archives/${REPOSITORY}"* > /dev/null 2>&1 + if ! ls "${_BASE}/archives/${REPOSITORY}"* > /dev/null 2>&1 then continue fi # Adding sources.list entries (binary) - if [ -e "${LB_BASE}/archives/${REPOSITORY}.binary" ] + if [ -e "${_BASE}/archives/${REPOSITORY}.binary" ] then sed -e "s|@DISTRIBUTION@|${LB_PARENT_DISTRIBUTION}|g" \ -e "s|@ARCHIVE_AREAS@|${LB_PARENT_ARCHIVE_AREAS}|g" \ - "${LB_BASE}/archives/${REPOSITORY}.binary" > \ + "${_BASE}/archives/${REPOSITORY}.binary" > \ "chroot/etc/apt/sources.list.d/${REPOSITORY}.list" - elif [ -e "${LB_BASE}/archives/${REPOSITORY}" ] + elif [ -e "${_BASE}/archives/${REPOSITORY}" ] then sed -e "s|@DISTRIBUTION@|${LB_PARENT_DISTRIBUTION}|g" \ -e "s|@ARCHIVE_AREAS@|${LB_PARENT_ARCHIVE_AREAS}|g" \ - "${LB_BASE}/archives/${REPOSITORY}" > \ + "${_BASE}/archives/${REPOSITORY}" > \ "chroot/etc/apt/sources.list.d/${REPOSITORY}.list" fi # Adding pinning preferences (binary) - if [ -e "${LB_BASE}/archives/${REPOSITORY}.pref" ] + if [ -e "${_BASE}/archives/${REPOSITORY}.pref" ] then - cp "${LB_BASE}/archives/${REPOSITORY}.pref" chroot/etc/apt/sources.list.d - elif [ -e "${LB_BASE}/archives/${REPOSITORY}.pref.binary" ] + cp "${_BASE}/archives/${REPOSITORY}.pref" chroot/etc/apt/sources.list.d + elif [ -e "${_BASE}/archives/${REPOSITORY}.pref.binary" ] then - cp "${LB_BASE}/archives/${REPOSITORY}.pref.binary" "chroot/etc/apt/sources.list.d/${REPOSITORY}.pref" + cp "${_BASE}/archives/${REPOSITORY}.pref.binary" "chroot/etc/apt/sources.list.d/${REPOSITORY}.pref" fi if [ "${LB_APT_SECURE}" != false ] then # Adding archive signing keys (binary) - if [ -e "${LB_BASE}/archives/${REPOSITORY}.key.binary" ] + if [ -e "${_BASE}/archives/${REPOSITORY}.key.binary" ] then - cat "${LB_BASE}/archives/${REPOSITORY}.key.binary" | Chroot chroot "apt-key add -" - elif [ -e "${LB_BASE}/archives/${REPOSITORY}.key" ] + cat "${_BASE}/archives/${REPOSITORY}.key.binary" | Chroot chroot "apt-key add -" + elif [ -e "${_BASE}/archives/${REPOSITORY}.key" ] then - cat "${LB_BASE}/archives/${REPOSITORY}.key" | Chroot chroot "apt-key add -" + cat "${_BASE}/archives/${REPOSITORY}.key" | Chroot chroot "apt-key add -" fi fi done diff --git a/scripts/build/lb_chroot_cache b/scripts/build/lb_chroot_cache index ba9560065..d36018caf 100755 --- a/scripts/build/lb_chroot_cache +++ b/scripts/build/lb_chroot_cache @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'cache chroot stage')" diff --git a/scripts/build/lb_chroot_debianchroot b/scripts/build/lb_chroot_debianchroot index f407607d8..16efd7a49 100755 --- a/scripts/build/lb_chroot_debianchroot +++ b/scripts/build/lb_chroot_debianchroot @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'manage /etc/debian_chroot')" diff --git a/scripts/build/lb_chroot_devpts b/scripts/build/lb_chroot_devpts index 2df01dc40..6811f7567 100755 --- a/scripts/build/lb_chroot_devpts +++ b/scripts/build/lb_chroot_devpts @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'mount /dev/pts')" diff --git a/scripts/build/lb_chroot_dpkg b/scripts/build/lb_chroot_dpkg index ec4681b5d..d7ddec7d6 100755 --- a/scripts/build/lb_chroot_dpkg +++ b/scripts/build/lb_chroot_dpkg @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'manage /sbin/dpkg')" diff --git a/scripts/build/lb_chroot_hacks b/scripts/build/lb_chroot_hacks index 334a5bfcb..82dfdc7e5 100755 --- a/scripts/build/lb_chroot_hacks +++ b/scripts/build/lb_chroot_hacks @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'execute hacks in chroot')" diff --git a/scripts/build/lb_chroot_hooks b/scripts/build/lb_chroot_hooks index b07474d7a..1b754e04d 100755 --- a/scripts/build/lb_chroot_hooks +++ b/scripts/build/lb_chroot_hooks @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'execute hooks in chroot')" @@ -52,11 +52,15 @@ mount -o remount,ro,bind config chroot/root/config # Copying hooks for _HOOK in ${LB_CHROOT_HOOKS} do - if [ -e "${LB_BASE}"/hooks/???-"${_HOOK}".chroot ] - then - mkdir -p chroot/root/lb_chroot_hooks - cp "${LB_BASE}"/hooks/???-"${_HOOK}".chroot chroot/root/lb_chroot_hooks - fi + for LOCATION in "${LIVE_BUILD}/hooks" /usr/share/live/build/hooks + do + if [ -e "${LOCATION}/hooks/???-${_HOOK}.binary" ] + then + mkdir -p chroot/root/lb_chroot_hooks + cp "${LOCATION}"/hooks/???-"${_HOOK}".chroot chroot/root/lb_chroot_hooks + continue + fi + done done # Running hooks diff --git a/scripts/build/lb_chroot_hostname b/scripts/build/lb_chroot_hostname index af7158207..185aedf13 100755 --- a/scripts/build/lb_chroot_hostname +++ b/scripts/build/lb_chroot_hostname @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'manage /bin/hostname')" diff --git a/scripts/build/lb_chroot_hosts b/scripts/build/lb_chroot_hosts index 1e7a513f7..6cd75508f 100755 --- a/scripts/build/lb_chroot_hosts +++ b/scripts/build/lb_chroot_hosts @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'manage /etc/hosts')" diff --git a/scripts/build/lb_chroot_includes b/scripts/build/lb_chroot_includes index 32237b2f4..c60a5a64a 100755 --- a/scripts/build/lb_chroot_includes +++ b/scripts/build/lb_chroot_includes @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'copy files into chroot')" diff --git a/scripts/build/lb_chroot_install-packages b/scripts/build/lb_chroot_install-packages index ed5119d94..5f70cd3b1 100755 --- a/scripts/build/lb_chroot_install-packages +++ b/scripts/build/lb_chroot_install-packages @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'install queued packages into chroot')" diff --git a/scripts/build/lb_chroot_interactive b/scripts/build/lb_chroot_interactive index cdc68c442..7532a8cf9 100755 --- a/scripts/build/lb_chroot_interactive +++ b/scripts/build/lb_chroot_interactive @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'make build interactive')" diff --git a/scripts/build/lb_chroot_linux-image b/scripts/build/lb_chroot_linux-image index 312329d8b..e2d012c08 100755 --- a/scripts/build/lb_chroot_linux-image +++ b/scripts/build/lb_chroot_linux-image @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'schedule kernel packages for installation')" diff --git a/scripts/build/lb_chroot_live-packages b/scripts/build/lb_chroot_live-packages index 654c7192b..f5b219ea1 100755 --- a/scripts/build/lb_chroot_live-packages +++ b/scripts/build/lb_chroot_live-packages @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'schedule live packages for installation')" diff --git a/scripts/build/lb_chroot_local-patches b/scripts/build/lb_chroot_local-patches index f1a52396c..b82514df0 100755 --- a/scripts/build/lb_chroot_local-patches +++ b/scripts/build/lb_chroot_local-patches @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'apply local patches against chroot')" diff --git a/scripts/build/lb_chroot_package-lists b/scripts/build/lb_chroot_package-lists index 5f408f11c..0237be13a 100755 --- a/scripts/build/lb_chroot_package-lists +++ b/scripts/build/lb_chroot_package-lists @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'queue install of package lists into chroot')" diff --git a/scripts/build/lb_chroot_preseed b/scripts/build/lb_chroot_preseed index 553510b09..59dd1459d 100755 --- a/scripts/build/lb_chroot_preseed +++ b/scripts/build/lb_chroot_preseed @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'execute local preseed in chroot')" diff --git a/scripts/build/lb_chroot_proc b/scripts/build/lb_chroot_proc index 45ad6c6ca..8a297232e 100755 --- a/scripts/build/lb_chroot_proc +++ b/scripts/build/lb_chroot_proc @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'mount /proc')" diff --git a/scripts/build/lb_chroot_resolv b/scripts/build/lb_chroot_resolv index c2f4b3748..0ace6ed35 100755 --- a/scripts/build/lb_chroot_resolv +++ b/scripts/build/lb_chroot_resolv @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'manage /etc/resolv.conf')" diff --git a/scripts/build/lb_chroot_selinuxfs b/scripts/build/lb_chroot_selinuxfs index bd5d6a962..c00713c92 100755 --- a/scripts/build/lb_chroot_selinuxfs +++ b/scripts/build/lb_chroot_selinuxfs @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'mount /selinux')" diff --git a/scripts/build/lb_chroot_sysfs b/scripts/build/lb_chroot_sysfs index af633fb14..28addaf31 100755 --- a/scripts/build/lb_chroot_sysfs +++ b/scripts/build/lb_chroot_sysfs @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'mount /sys')" diff --git a/scripts/build/lb_chroot_sysv-rc b/scripts/build/lb_chroot_sysv-rc index 497e57866..5fd136d43 100755 --- a/scripts/build/lb_chroot_sysv-rc +++ b/scripts/build/lb_chroot_sysv-rc @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'manage /usr/sbin/policy-rc.d')" diff --git a/scripts/build/lb_chroot_task-lists b/scripts/build/lb_chroot_task-lists index c223a6859..f83014461 100755 --- a/scripts/build/lb_chroot_task-lists +++ b/scripts/build/lb_chroot_task-lists @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'install task lists into chroot')" diff --git a/scripts/build/lb_chroot_tmpfs b/scripts/build/lb_chroot_tmpfs index fe00e1d2c..a59168329 100755 --- a/scripts/build/lb_chroot_tmpfs +++ b/scripts/build/lb_chroot_tmpfs @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'use tmpfs to speedup the build')" diff --git a/scripts/build/lb_chroot_upstart b/scripts/build/lb_chroot_upstart index 915ded2bc..39412fdef 100755 --- a/scripts/build/lb_chroot_upstart +++ b/scripts/build/lb_chroot_upstart @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'manage /sbin/initctl')" diff --git a/scripts/build/lb_clean b/scripts/build/lb_clean index b2f88470f..7f341d681 100755 --- a/scripts/build/lb_clean +++ b/scripts/build/lb_clean @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Read meta config if [ "${1}" != "noauto" ] && [ -x auto/clean ] diff --git a/scripts/build/lb_config b/scripts/build/lb_config index e8f1ef156..0c6a16f18 100755 --- a/scripts/build/lb_config +++ b/scripts/build/lb_config @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Read meta config if [ "${1}" != "noauto" ] && [ -x auto/config ] diff --git a/scripts/build/lb_local b/scripts/build/lb_local deleted file mode 100755 index 82e6c8a1b..000000000 --- a/scripts/build/lb_local +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/sh - -## live-build(7) - System Build Scripts -## Copyright (C) 2006-2012 Daniel Baumann -## -## live-build comes with ABSOLUTELY NO WARRANTY; for details see COPYING. -## This is free software, and you are welcome to redistribute it -## under certain conditions; see COPYING for details. - - -LB_BASE="${PWD}/live-build" -PATH="${LB_BASE}/scripts/build:${PATH}" - -export LB_BASE PATH - -if [ ! -z "${1}" ] -then - exec lb "${@}" -fi diff --git a/scripts/build/lb_source b/scripts/build/lb_source index 47f3fadde..d60bf7dfe 100755 --- a/scripts/build/lb_source +++ b/scripts/build/lb_source @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Automatically populating config tree if [ -x auto/config ] && [ ! -e .build/config ] diff --git a/scripts/build/lb_source_checksums b/scripts/build/lb_source_checksums index f21d7ae44..05adb6da6 100755 --- a/scripts/build/lb_source_checksums +++ b/scripts/build/lb_source_checksums @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'create source checksums')" diff --git a/scripts/build/lb_source_debian b/scripts/build/lb_source_debian index 910bef420..61e4c381c 100755 --- a/scripts/build/lb_source_debian +++ b/scripts/build/lb_source_debian @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'debian sources')" diff --git a/scripts/build/lb_source_debian-live b/scripts/build/lb_source_debian-live index ff7bd287c..5e0c86ff4 100755 --- a/scripts/build/lb_source_debian-live +++ b/scripts/build/lb_source_debian-live @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'copy debian-live config into source')" diff --git a/scripts/build/lb_source_disk b/scripts/build/lb_source_disk index 657306627..71ff06374 100755 --- a/scripts/build/lb_source_disk +++ b/scripts/build/lb_source_disk @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'install disk information into source')" diff --git a/scripts/build/lb_source_hdd b/scripts/build/lb_source_hdd index 990f81c58..cbf779b78 100755 --- a/scripts/build/lb_source_hdd +++ b/scripts/build/lb_source_hdd @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'build source image')" diff --git a/scripts/build/lb_source_iso b/scripts/build/lb_source_iso index beb61bad5..bac27936d 100755 --- a/scripts/build/lb_source_iso +++ b/scripts/build/lb_source_iso @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'build iso source image')" diff --git a/scripts/build/lb_source_tar b/scripts/build/lb_source_tar index 63933f06f..ed2cb4d5a 100755 --- a/scripts/build/lb_source_tar +++ b/scripts/build/lb_source_tar @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'build source tarball')" diff --git a/scripts/build/lb_source_virtual-hdd b/scripts/build/lb_source_virtual-hdd index 5d861d8df..2b82cfeba 100755 --- a/scripts/build/lb_source_virtual-hdd +++ b/scripts/build/lb_source_virtual-hdd @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'build source image')" diff --git a/scripts/build/lb_testroot b/scripts/build/lb_testroot index 5f7b680f5..471938420 100755 --- a/scripts/build/lb_testroot +++ b/scripts/build/lb_testroot @@ -11,7 +11,7 @@ set -e # Including common functions -. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh +( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh # Setting static variables DESCRIPTION="$(Echo 'ensure that a system is built as root')" -- cgit v1.2.3