Removing encryption support until we have something for current kernels again.

This commit is contained in:
Daniel Baumann 2011-01-02 00:53:52 +01:00
parent 72e0150203
commit dd9ecf3560
26 changed files with 1094 additions and 2983 deletions

View File

@ -88,7 +88,6 @@ else
LB_BOOTAPPEND_LIVE=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])bootappend_live=[-0-9a-zA-Z. _+=:/]+' | cut -f2- -d '=' | head -n1)
LB_BOOTLOADER=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])bootloader=[a-z]+' | cut -f 2 -d '=' | head -n1)
LB_DEBIAN_INSTALLER=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])debian_installer=[a-z]+' | cut -f 2 -d '=' | head -n1)
LB_ENCRYPTION=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])encryption=[0-9a-z]+' | cut -f 2 -d '=' | head -n1)
LB_ISO_APPLICATION=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])iso_application=[-0-9a-zA-Z. ~;:/_]+' | cut -f 2 -d '=' | head -n1)
LB_ISO_PREPARER=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])iso_preparer=[-0-9a-zA-Z. ~;:/_]+' | cut -f 2 -d '=' | head -n1)
LB_ISO_PUBLISHER=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])iso_publisher=[-0-9a-zA-Z. ~;:/_@]+' | cut -f 2 -d '=' | head -n1)
@ -150,7 +149,6 @@ else
-e "s#LB_BOOTAPPEND_LIVE#${LB_BOOTAPPEND_LIVE}#" \
-e "s/LB_BOOTLOADER/${LB_BOOTLOADER}/" \
-e "s/LB_DEBIAN_INSTALLER/${LB_DEBIAN_INSTALLER}/" \
-e "s/LB_ENCRYPTION/${LB_ENCRYPTION}/" \
-e "s#LB_ISO_APPLICATION#${LB_ISO_APPLICATION}#" \
-e "s#LB_ISO_PREPARER#${LB_ISO_PREPARER}#" \
-e "s#LB_ISO_PUBLISHER#${LB_ISO_PUBLISHER}#" \
@ -204,7 +202,6 @@ LB_BOOTAPPEND_INSTALL="${LB_BOOTAPPEND_INSTALL}"
LB_BOOTAPPEND_LIVE="${LB_BOOTAPPEND_LIVE}"
LB_BOOTLOADER="${LB_BOOTLOADER}"
LB_DEBIAN_INSTALLER="${LB_DEBIAN_INSTALLER}"
LB_ENCRYPTION="${LB_ENCRYPTION}"
LB_ISO_APPLICATION="${LB_ISO_APPLICATION}"
LB_ISO_PREPARER="${LB_ISO_PREPARER}"
LB_ISO_PUBLISHER="${LB_ISO_PUBLISHER}"
@ -226,7 +223,7 @@ LB_REPOSITORIES="${LB_REPOSITORIES}"
EOF
echo "$(date +%b\ %d\ %H:%M:%S) ${HOSTNAME} live-build.cgi: add web build (${_BUILD}) from ${REMOTE_ADDR}." >> /var/log/live
echo "$(date +%b\ %d\ %H:%M:%S) ${HOSTNAME} live-build.cgi: options ${_BUILD} |email ${_EMAIL}|binary_images ${LB_BINARY_IMAGES}|distribution ${LB_DISTRIBUTION}|package_lists ${LB_PACKAGE_LISTS}|tasks ${LB_TASKS}|packages ${LB_PACKAGES}|architectures ${LB_ARCHITECTURES}|mirror_bootstrap_security ${LB_MIRROR_BOOTSTRAP}|mirror_bootstrap ${LB_MIRROR_BOOTSTRAP}|mirror_binary_security ${LB_MIRROR_BINARY_SECURITY}|mirror_binary ${LB_MIRROR_BINARY}|archive_areas ${LB_ARCHIVE_AREAS}|chroot_filesystem ${LB_CHROOT_FILESYSTEM}|linux_flavours ${LB_LINUX_FLAVOURS}|security ${LB_SECURITY}|sysvinit ${LB_SYSVINIT}|binary_indices ${LB_BINARY_INDICES}|bootappend_install ${LB_BOOTAPPEND_INSTALL}|bootappend_live ${LB_BOOTAPPEND_LIVE}|bootloader ${LB_BOOTLOADER}|debian_installer ${LB_DEBIAN_INSTALLER}|encryption ${LB_ENCRYPTION}|iso_application ${LB_ISO_APPLICATION}|iso_preparer ${LB_ISO_PREPARER}|iso_publisher ${LB_ISO_PUBLISHER}|iso_volume ${LB_ISO_VOLUME}|memtest ${LB_MEMTEST}|net_path ${LB_NET_ROOT_PATH}|net_server ${LB_NET_ROOT_SERVER}|source_images ${LB_SOURCE_IMAGES}|source ${LB_SOURCE}|custom_bootstrap ${_CUSTOM_BOOTSTRAP}|custom_binary ${_CUSTOM_BINARY}\n" >> /var/log/live
echo "$(date +%b\ %d\ %H:%M:%S) ${HOSTNAME} live-build.cgi: options ${_BUILD} |email ${_EMAIL}|binary_images ${LB_BINARY_IMAGES}|distribution ${LB_DISTRIBUTION}|package_lists ${LB_PACKAGE_LISTS}|tasks ${LB_TASKS}|packages ${LB_PACKAGES}|architectures ${LB_ARCHITECTURES}|mirror_bootstrap_security ${LB_MIRROR_BOOTSTRAP}|mirror_bootstrap ${LB_MIRROR_BOOTSTRAP}|mirror_binary_security ${LB_MIRROR_BINARY_SECURITY}|mirror_binary ${LB_MIRROR_BINARY}|archive_areas ${LB_ARCHIVE_AREAS}|chroot_filesystem ${LB_CHROOT_FILESYSTEM}|linux_flavours ${LB_LINUX_FLAVOURS}|security ${LB_SECURITY}|sysvinit ${LB_SYSVINIT}|binary_indices ${LB_BINARY_INDICES}|bootappend_install ${LB_BOOTAPPEND_INSTALL}|bootappend_live ${LB_BOOTAPPEND_LIVE}|bootloader ${LB_BOOTLOADER}|debian_installer ${LB_DEBIAN_INSTALLER}|iso_application ${LB_ISO_APPLICATION}|iso_preparer ${LB_ISO_PREPARER}|iso_publisher ${LB_ISO_PUBLISHER}|iso_volume ${LB_ISO_VOLUME}|memtest ${LB_MEMTEST}|net_path ${LB_NET_ROOT_PATH}|net_server ${LB_NET_ROOT_SERVER}|source_images ${LB_SOURCE_IMAGES}|source ${LB_SOURCE}|custom_bootstrap ${_CUSTOM_BOOTSTRAP}|custom_binary ${_CUSTOM_BINARY}\n" >> /var/log/live
fi
sed -e "s/VERSION/${VERSION}/" "${_TEMPLATES}"/footer.html

View File

@ -598,16 +598,6 @@ Set_defaults ()
*)
LB_LINUX_PACKAGES="${LB_LINUX_PACKAGES:-linux-image-2.6}"
case "${LB_ENCRYPTION}" in
""|false)
;;
*)
LB_LINUX_PACKAGES="${LB_LINUX_PACKAGES} loop-aes-modules-2.6"
;;
esac
;;
esac
@ -622,19 +612,6 @@ Set_defaults ()
;;
esac
case "${LB_ENCRYPTION}" in
""|false)
;;
*)
if ! In_list loop-aes-utils "${LB_PACKAGES}"
then
LB_PACKAGES="${LB_PACKAGES} loop-aes-utils"
fi
;;
esac
# Setting tasks string
for LIST in ${LB_PACKAGE_LISTS}
do
@ -841,9 +818,6 @@ Set_defaults ()
LB_BOOTAPPEND_INSTALL="$(echo ${LB_BOOTAPPEND_INSTALL} | sed -e 's/[ \t]*$//')"
# Setting encryption
LB_ENCRYPTION="${LB_ENCRYPTION:-false}"
# Setting grub splash
# LB_GRUB_SPLASH

View File

@ -1,47 +0,0 @@
.\"*******************************************************************
.\"
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
.TH LIVE\-BUILD 1 2011\-01\-02 3.0~a10 "Debian Live Project"
.SH NAME
\fBlb binary_encryption\fP \- Complete the binary stage
.SH SYNOPSIS
\fBlb binary_encryption\fP [\fIlive\-build options\fP]
.SH DESCRIPTION
\fBlb binary_encryption\fP is a low\-level command (plumbing) of
\fIlive\-build\fP(7), the Debian Live tool suite.
.PP
.\" FIXME
.SH OPTIONS
\fBlb binary_encryption\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
.\" FIXME
.IP \fBn/a\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.

View File

@ -91,8 +91,6 @@
[\-d|\fB\-\-distribution\fP \fICODENAME\fP]
.br
[\fB\-\-dump\fP]
.br
[\-e|\fB\-\-encryption\fP false|aes128|aes192|aes256]
.br
[\fB\-\-fdisk\fP fdisk|fdisk.dist]
.br
@ -443,9 +441,6 @@ prepares a report of the currently present live system configuration and the
version of live\-build used. This is useful to provide if you submit bug
reports, we do get all informations required for us to locate and replicate
an error.
.IP "\-e|\fB\-\-encryption\fP false|aes128|aes192|aes256" 4
defines if the root filesystem should be encrypted or not. By default, this
is false.
.IP "\fB\-\-fdisk\fP fdisk|fdisk.dist" 4
sets the filename of the fdisk binary from the host system that should be
used. This is autodetected and does generally not need any customization.

View File

@ -181,8 +181,6 @@ copy chroot into chroot
install debian\-installer into binary
.IP \fBlb_binary_disk\fP(1) 4
install disk information into binary
.IP \fBlb_binary_encryption\fP(1) 4
encrypts rootfs
.IP \fBlb_binary_grub\fP(1) 4
installs grub into binary
.IP \fBlb_binary_grub2\fP(1) 4

View File

@ -1,33 +0,0 @@
.TH LIVE\-BUILD 1 2011\-01\-02 3.0~a10 "Debian Live Project"
.SH NAME
\fBlb binary_encryption\fR \- Complete the binary stage
.SH SYNOPSIS
\fBlb binary_encryption\fR [\fIlive\-build options\fR]
.SH DESCRIPTION
\fBlb binary_encryption\fR is a low\-level command (plumbing) of \fIlive\-build\fR(7), the Debian Live tool suite.
.PP
.\" FIXME
.SH OPTIONS
\fBlb binary_encryption\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
.\" FIXME
.IP "\fBn/a\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.

View File

@ -86,8 +86,6 @@
[\-d|\fB\-\-distribution\fR \fICODENAME\fR]
.br
[\fB\-\-dump\fR]
.br
[\-e|\fB\-\-encryption\fR false|aes128|aes192|aes256]
.br
[\fB\-\-fdisk\fR fdisk|fdisk.dist]
.br
@ -313,8 +311,6 @@ turn on debugging informational messages.
defines the distribution of the resulting live system.
.IP "\fB\-\-dump\fR" 4
prepares a report of the currently present live system configuration and the version of live\-build used. This is useful to provide if you submit bug reports, we do get all informations required for us to locate and replicate an error.
.IP "\-e|\fB\-\-encryption\fR false|aes128|aes192|aes256" 4
defines if the root filesystem should be encrypted or not. By default, this is false.
.IP "\fB\-\-fdisk\fR fdisk|fdisk.dist" 4
sets the filename of the fdisk binary from the host system that should be used. This is autodetected and does generally not need any customization.
.IP "\fB\-\-force\fR" 4

View File

@ -158,8 +158,6 @@ copy chroot into chroot
install debian\-installer into binary
.IP "\fBlb_binary_disk\fR(1)" 4
install disk information into binary
.IP "\fBlb_binary_encryption\fR(1)" 4
encrypts rootfs
.IP "\fBlb_binary_grub\fR(1)" 4
installs grub into binary
.IP "\fBlb_binary_grub2\fR(1)" 4

View File

@ -1,747 +0,0 @@
# German translations for live-build package
# Copyright (C) 2010 Free Software Foundation, Inc.
# This file is distributed under the same license as the live-build package.
# Automatically generated, 2010.
#
msgid ""
msgstr ""
"Project-Id-Version: live-build 3.0~a10\n"
"POT-Creation-Date: 2011-01-02 00:30+0100\n"
"PO-Revision-Date: 2010-11-23 12:29+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_encryption.1:1 en/lb_binary_grub.1:1
#: en/lb_binary_grub2.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-hooks.1:1
#: en/lb_binary_local-includes.1:1 en/lb_binary_local-packagelists.1:1
#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.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_usb.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_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-hooks.1:1 en/lb_chroot_local-includes.1:1
#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_sysvinit.1:1
#: en/lb_chroot_tasks.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_iso.1:1
#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.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_encryption.1:1 en/lb_binary_grub.1:1
#: en/lb_binary_grub2.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-hooks.1:1
#: en/lb_binary_local-includes.1:1 en/lb_binary_local-packagelists.1:1
#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.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_usb.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_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-hooks.1:1 en/lb_chroot_local-includes.1:1
#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_sysvinit.1:1
#: en/lb_chroot_tasks.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_iso.1:1
#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "2011-01-02"
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_encryption.1:1 en/lb_binary_grub.1:1
#: en/lb_binary_grub2.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-hooks.1:1
#: en/lb_binary_local-includes.1:1 en/lb_binary_local-packagelists.1:1
#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.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_usb.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_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-hooks.1:1 en/lb_chroot_local-includes.1:1
#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_sysvinit.1:1
#: en/lb_chroot_tasks.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_iso.1:1
#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "3.0~a10"
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_encryption.1:1 en/lb_binary_grub.1:1
#: en/lb_binary_grub2.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-hooks.1:1
#: en/lb_binary_local-includes.1:1 en/lb_binary_local-packagelists.1:1
#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.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_usb.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_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-hooks.1:1 en/lb_chroot_local-includes.1:1
#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_sysvinit.1:1
#: en/lb_chroot_tasks.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_iso.1:1
#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.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_encryption.1:3 en/lb_binary_grub.1:3
#: en/lb_binary_grub2.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-hooks.1:3
#: en/lb_binary_local-includes.1:3 en/lb_binary_local-packagelists.1:3
#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.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_usb.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_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-hooks.1:3 en/lb_chroot_local-includes.1:3
#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_sysvinit.1:3
#: en/lb_chroot_tasks.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_iso.1:3
#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.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_encryption.1:6 en/lb_binary_grub.1:6
#: en/lb_binary_grub2.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-hooks.1:6
#: en/lb_binary_local-includes.1:6 en/lb_binary_local-packagelists.1:6
#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.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_usb.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_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-hooks.1:6 en/lb_chroot_local-includes.1:6
#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_sysvinit.1:6
#: en/lb_chroot_tasks.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_iso.1:6
#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.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_encryption.1:9 en/lb_binary_grub.1:9
#: en/lb_binary_grub2.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-hooks.1:9
#: en/lb_binary_local-includes.1:9 en/lb_binary_local-packagelists.1:9
#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.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_usb.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_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-hooks.1:9 en/lb_chroot_local-includes.1:9
#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_sysvinit.1:9
#: en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
#: en/lb_config.1:225 en/lb_local.1:9 en/lb_source.1:9
#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
#: 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_encryption.1:14 en/lb_binary_grub.1:14
#: en/lb_binary_grub2.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-hooks.1:14
#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.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_usb.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_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-hooks.1:14
#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
#: en/lb_chroot_sysvinit.1:14 en/lb_chroot_tasks.1:14
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:234
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
#: en/lb_source_tar.1:14 en/lb_source_usb.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_encryption.1:17 en/lb_binary_grub.1:17
#: en/lb_binary_grub2.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-hooks.1:17
#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.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_usb.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_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-hooks.1:17
#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
#: en/lb_chroot_sysvinit.1:17 en/lb_chroot_tasks.1:17
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:464
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:237
#, no-wrap
msgid "FILES"
msgstr ""
#. FIXME
#. 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_encryption.1:21 en/lb_binary_grub.1:21
#: en/lb_binary_grub2.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-hooks.1:21
#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.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_usb.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_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-hooks.1:21
#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
#: en/lb_chroot_sysvinit.1:21 en/lb_chroot_tasks.1:21
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:471
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:242
#, 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_encryption.1:23 en/lb_binary_grub.1:23
#: en/lb_binary_grub2.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-hooks.1:23
#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.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_usb.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_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-hooks.1:23
#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
#: en/lb_chroot_sysvinit.1:23 en/lb_chroot_tasks.1:23
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:473
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(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_encryption.1:25 en/lb_binary_grub.1:25
#: en/lb_binary_grub2.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-hooks.1:25
#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.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_usb.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_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-hooks.1:25
#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
#: en/lb_chroot_sysvinit.1:25 en/lb_chroot_tasks.1:25
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:475
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:246
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_encryption.1:26 en/lb_binary_grub.1:26
#: en/lb_binary_grub2.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-hooks.1:26
#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.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_usb.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_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-hooks.1:26
#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
#: en/lb_chroot_sysvinit.1:26 en/lb_chroot_tasks.1:26
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:476
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:247
#, 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_encryption.1:28 en/lb_binary_grub.1:28
#: en/lb_binary_grub2.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-hooks.1:28
#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.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_usb.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_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-hooks.1:28
#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
#: en/lb_chroot_sysvinit.1:28 en/lb_chroot_tasks.1:28
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:478
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:249
msgid ""
"More information about live-build and the Debian Live project can be found "
"on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
"E<lt>I<http://live.debian.net/manual/>E<gt>."
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_encryption.1:29 en/lb_binary_grub.1:29
#: en/lb_binary_grub2.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-hooks.1:29
#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.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_usb.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_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-hooks.1:29
#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
#: en/lb_chroot_sysvinit.1:29 en/lb_chroot_tasks.1:29
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:479
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:250
#, 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_encryption.1:31 en/lb_binary_grub.1:31
#: en/lb_binary_grub2.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-hooks.1:31
#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.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_usb.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_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-hooks.1:31
#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
#: en/lb_chroot_sysvinit.1:31 en/lb_chroot_tasks.1:31
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:481
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:252
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
"the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
"writing a mail to the Debian Live mailing list at E<lt>I<debian-live@lists."
"debian.org>E<gt>."
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_encryption.1:32 en/lb_binary_grub.1:32
#: en/lb_binary_grub2.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-hooks.1:32
#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.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_usb.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_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-hooks.1:32
#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
#: en/lb_chroot_sysvinit.1:32 en/lb_chroot_tasks.1:32
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:482
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:253
#, 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_encryption.1:33 en/lb_binary_grub.1:33
#: en/lb_binary_grub2.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-hooks.1:33
#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.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_usb.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_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-hooks.1:33
#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
#: en/lb_chroot_sysvinit.1:33 en/lb_chroot_tasks.1:33
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:483
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:254
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for "
"the Debian project."
msgstr ""
#. FIXME
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
#: en/lb_binary_encryption.1:19 en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19
#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-hooks.1:19
#: en/lb_binary_local-includes.1:19 en/lb_binary_local-packagelists.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
#: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
#: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
#: en/lb_chroot_sysvinit.1:19 en/lb_chroot_tasks.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
#: en/live-build.7:239
#, no-wrap
msgid "B<n/a>"
msgstr ""
#. type: Plain text
#: en/lb_binary_encryption.1:5
msgid "B<lb binary_encryption> - Complete the binary stage"
msgstr ""
#. type: Plain text
#: en/lb_binary_encryption.1:8
msgid "B<lb binary_encryption> [I<live-build options>]"
msgstr ""
#. type: Plain text
#: en/lb_binary_encryption.1:11
msgid ""
"B<lb binary_encryption> is a low-level command (plumbing) of I<live-build>"
"(7), the Debian Live tool suite."
msgstr ""
#. type: Plain text
#: en/lb_binary_encryption.1:16
msgid ""
"B<lb binary_encryption> has no specific options but understands all generic "
"live-build options. See I<live-build>(7) for a complete list of all generic "
"live-build options."
msgstr ""

File diff suppressed because it is too large Load Diff

View File

@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build 3.0~a10\n"
"POT-Creation-Date: 2011-01-02 00:30+0100\n"
"POT-Creation-Date: 2011-01-02 00:47+0100\n"
"PO-Revision-Date: 2010-11-23 12:29+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@ -19,13 +19,13 @@ 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_encryption.1:1 en/lb_binary_grub.1:1
#: en/lb_binary_grub2.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-hooks.1:1
#: en/lb_binary_local-includes.1:1 en/lb_binary_local-packagelists.1:1
#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.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_usb.1:1 en/lb_binary_virtual-hdd.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.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-hooks.1:1 en/lb_binary_local-includes.1:1
#: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
#: en/lb_binary_memtest.1:1 en/lb_binary_net.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_usb.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
@ -54,13 +54,13 @@ 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_encryption.1:1 en/lb_binary_grub.1:1
#: en/lb_binary_grub2.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-hooks.1:1
#: en/lb_binary_local-includes.1:1 en/lb_binary_local-packagelists.1:1
#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.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_usb.1:1 en/lb_binary_virtual-hdd.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.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-hooks.1:1 en/lb_binary_local-includes.1:1
#: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
#: en/lb_binary_memtest.1:1 en/lb_binary_net.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_usb.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
@ -89,13 +89,13 @@ 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_encryption.1:1 en/lb_binary_grub.1:1
#: en/lb_binary_grub2.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-hooks.1:1
#: en/lb_binary_local-includes.1:1 en/lb_binary_local-packagelists.1:1
#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.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_usb.1:1 en/lb_binary_virtual-hdd.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.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-hooks.1:1 en/lb_binary_local-includes.1:1
#: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
#: en/lb_binary_memtest.1:1 en/lb_binary_net.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_usb.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
@ -124,13 +124,13 @@ 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_encryption.1:1 en/lb_binary_grub.1:1
#: en/lb_binary_grub2.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-hooks.1:1
#: en/lb_binary_local-includes.1:1 en/lb_binary_local-packagelists.1:1
#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.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_usb.1:1 en/lb_binary_virtual-hdd.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.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-hooks.1:1 en/lb_binary_local-includes.1:1
#: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
#: en/lb_binary_memtest.1:1 en/lb_binary_net.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_usb.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
@ -159,13 +159,13 @@ 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_encryption.1:3 en/lb_binary_grub.1:3
#: en/lb_binary_grub2.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-hooks.1:3
#: en/lb_binary_local-includes.1:3 en/lb_binary_local-packagelists.1:3
#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.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_usb.1:3 en/lb_binary_virtual-hdd.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.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-hooks.1:3 en/lb_binary_local-includes.1:3
#: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
#: en/lb_binary_memtest.1:3 en/lb_binary_net.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_usb.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
@ -194,13 +194,13 @@ 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_encryption.1:6 en/lb_binary_grub.1:6
#: en/lb_binary_grub2.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-hooks.1:6
#: en/lb_binary_local-includes.1:6 en/lb_binary_local-packagelists.1:6
#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.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_usb.1:6 en/lb_binary_virtual-hdd.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.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-hooks.1:6 en/lb_binary_local-includes.1:6
#: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
#: en/lb_binary_memtest.1:6 en/lb_binary_net.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_usb.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
@ -229,13 +229,13 @@ 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_encryption.1:9 en/lb_binary_grub.1:9
#: en/lb_binary_grub2.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-hooks.1:9
#: en/lb_binary_local-includes.1:9 en/lb_binary_local-packagelists.1:9
#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.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_usb.1:9 en/lb_binary_virtual-hdd.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.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-hooks.1:9 en/lb_binary_local-includes.1:9
#: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
#: en/lb_binary_memtest.1:9 en/lb_binary_net.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_usb.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
@ -252,7 +252,7 @@ msgstr ""
#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_sysvinit.1:9
#: en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
#: en/lb_config.1:225 en/lb_local.1:9 en/lb_source.1:9
#: en/lb_config.1:223 en/lb_local.1:9 en/lb_source.1:9
#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
@ -264,8 +264,8 @@ 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_encryption.1:14 en/lb_binary_grub.1:14
#: en/lb_binary_grub2.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.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-hooks.1:14
#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
@ -289,7 +289,7 @@ msgstr ""
#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
#: en/lb_chroot_sysvinit.1:14 en/lb_chroot_tasks.1:14
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:234
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:232
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
@ -302,8 +302,8 @@ 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_encryption.1:17 en/lb_binary_grub.1:17
#: en/lb_binary_grub2.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.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-hooks.1:17
#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
@ -327,12 +327,12 @@ msgstr ""
#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
#: en/lb_chroot_sysvinit.1:17 en/lb_chroot_tasks.1:17
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:464
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:460
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:237
#: en/lb_testroot.1:21 en/live-build.7:235
#, no-wrap
msgid "FILES"
msgstr ""
@ -341,8 +341,8 @@ 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_encryption.1:21 en/lb_binary_grub.1:21
#: en/lb_binary_grub2.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.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-hooks.1:21
#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
@ -366,12 +366,12 @@ msgstr ""
#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
#: en/lb_chroot_sysvinit.1:21 en/lb_chroot_tasks.1:21
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:471
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:467
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:242
#: en/lb_testroot.1:24 en/live-build.7:240
#, no-wrap
msgid "SEE ALSO"
msgstr ""
@ -379,8 +379,8 @@ 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_encryption.1:25 en/lb_binary_grub.1:25
#: en/lb_binary_grub2.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.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-hooks.1:25
#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
@ -404,20 +404,20 @@ msgstr ""
#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
#: en/lb_chroot_sysvinit.1:25 en/lb_chroot_tasks.1:25
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:475
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:471
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:246
#: en/lb_testroot.1:28 en/live-build.7:244
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_encryption.1:26 en/lb_binary_grub.1:26
#: en/lb_binary_grub2.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.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-hooks.1:26
#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
@ -441,12 +441,12 @@ msgstr ""
#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
#: en/lb_chroot_sysvinit.1:26 en/lb_chroot_tasks.1:26
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:476
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:472
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:247
#: en/lb_testroot.1:29 en/live-build.7:245
#, no-wrap
msgid "HOMEPAGE"
msgstr ""
@ -454,8 +454,8 @@ 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_encryption.1:28 en/lb_binary_grub.1:28
#: en/lb_binary_grub2.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.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-hooks.1:28
#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
@ -479,12 +479,12 @@ msgstr ""
#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
#: en/lb_chroot_sysvinit.1:28 en/lb_chroot_tasks.1:28
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:478
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:474
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:249
#: en/lb_testroot.1:31 en/live-build.7:247
msgid ""
"More information about live-build and the Debian Live project can be found "
"on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@ -494,8 +494,8 @@ 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_encryption.1:29 en/lb_binary_grub.1:29
#: en/lb_binary_grub2.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.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-hooks.1:29
#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
@ -519,12 +519,12 @@ msgstr ""
#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
#: en/lb_chroot_sysvinit.1:29 en/lb_chroot_tasks.1:29
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:479
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:475
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:250
#: en/lb_testroot.1:32 en/live-build.7:248
#, no-wrap
msgid "BUGS"
msgstr ""
@ -532,8 +532,8 @@ 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_encryption.1:31 en/lb_binary_grub.1:31
#: en/lb_binary_grub2.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.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-hooks.1:31
#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
@ -557,12 +557,12 @@ msgstr ""
#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
#: en/lb_chroot_sysvinit.1:31 en/lb_chroot_tasks.1:31
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:481
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:477
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:252
#: en/lb_testroot.1:34 en/live-build.7:250
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
"the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@ -573,8 +573,8 @@ 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_encryption.1:32 en/lb_binary_grub.1:32
#: en/lb_binary_grub2.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.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-hooks.1:32
#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
@ -598,12 +598,12 @@ msgstr ""
#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
#: en/lb_chroot_sysvinit.1:32 en/lb_chroot_tasks.1:32
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:482
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:478
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:253
#: en/lb_testroot.1:35 en/live-build.7:251
#, no-wrap
msgid "AUTHOR"
msgstr ""
@ -611,8 +611,8 @@ 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_encryption.1:33 en/lb_binary_grub.1:33
#: en/lb_binary_grub2.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.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-hooks.1:33
#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
@ -636,12 +636,12 @@ msgstr ""
#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
#: en/lb_chroot_sysvinit.1:33 en/lb_chroot_tasks.1:33
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:483
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:479
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:254
#: en/lb_testroot.1:36 en/live-build.7:252
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for "
"the Debian project."
@ -651,13 +651,13 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
#: en/lb_binary_encryption.1:19 en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19
#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-hooks.1:19
#: en/lb_binary_local-includes.1:19 en/lb_binary_local-packagelists.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
#: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
#: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
#: en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@ -679,31 +679,31 @@ msgstr ""
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
#: en/live-build.7:239
#: en/live-build.7:237
#, no-wrap
msgid "B<n/a>"
msgstr ""
#. type: IP
#: en/lb_config.1:310 en/live-build.7:36
#: en/lb_config.1:308 en/live-build.7:36
#, no-wrap
msgid "B<--debug>"
msgstr ""
#. type: IP
#: en/lb_config.1:320 en/live-build.7:38
#: en/lb_config.1:316 en/live-build.7:38
#, no-wrap
msgid "B<--force>"
msgstr ""
#. type: IP
#: en/lb_config.1:413 en/live-build.7:40
#: en/lb_config.1:409 en/live-build.7:40
#, no-wrap
msgid "B<--quiet>"
msgstr ""
#. type: IP
#: en/lb_config.1:453 en/live-build.7:42
#: en/lb_config.1:449 en/live-build.7:42
#, no-wrap
msgid "B<--verbose>"
msgstr ""
@ -1452,344 +1452,333 @@ msgstr ""
#. type: IP
#: en/live-build.7:161
#, no-wrap
msgid "B<lb_binary_encryption>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:163
msgid "encrypts rootfs"
msgstr ""
#. type: IP
#: en/live-build.7:163
#, no-wrap
msgid "B<lb_binary_grub>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:165
#: en/live-build.7:163
msgid "installs grub into binary"
msgstr ""
#. type: IP
#: en/live-build.7:165
#: en/live-build.7:163
#, no-wrap
msgid "B<lb_binary_grub2>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:167
#: en/live-build.7:165
msgid "installs grub2 into binary"
msgstr ""
#. type: IP
#: en/live-build.7:167
#: en/live-build.7:165
#, no-wrap
msgid "B<lb_binary_includes>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:169 en/live-build.7:177
#: en/live-build.7:167 en/live-build.7:175
msgid "copy files into binary"
msgstr ""
#. type: IP
#: en/live-build.7:169
#: en/live-build.7:167
#, no-wrap
msgid "B<lb_binary_iso>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:171
#: en/live-build.7:169
msgid "build iso binary image"
msgstr ""
#. type: IP
#: en/live-build.7:171
#: en/live-build.7:169
#, no-wrap
msgid "B<lb_binary_linux-image>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:173
#: en/live-build.7:171
msgid "install linux-image into binary"
msgstr ""
#. type: IP
#: en/live-build.7:173
#: en/live-build.7:171
#, no-wrap
msgid "B<lb_binary_local-hooks>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:175
#: en/live-build.7:173
msgid "execute local hooks in binary"
msgstr ""
#. type: IP
#: en/live-build.7:175
#: en/live-build.7:173
#, no-wrap
msgid "B<lb_binary_local-includes>(1)"
msgstr ""
#. type: IP
#: en/live-build.7:177
#: en/live-build.7:175
#, no-wrap
msgid "B<lb_binary_local-packagelists>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:179
#: en/live-build.7:177
msgid "install local package lists into binary"
msgstr ""
#. type: IP
#: en/live-build.7:179
#: en/live-build.7:177
#, no-wrap
msgid "B<lb_binary_manifest>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:181
#: en/live-build.7:179
msgid "create manifest"
msgstr ""
#. type: IP
#: en/live-build.7:181
#: en/live-build.7:179
#, no-wrap
msgid "B<lb_binary_checksums>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:183
#: en/live-build.7:181
msgid "create binary checksums (md5, sha1, and/or sha256)"
msgstr ""
#. type: IP
#: en/live-build.7:183
#: en/live-build.7:181
#, no-wrap
msgid "B<lb_binary_memtest>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:185
#: en/live-build.7:183
msgid "installs a memtest into binary"
msgstr ""
#. type: IP
#: en/live-build.7:185
#: en/live-build.7:183
#, no-wrap
msgid "B<lb_binary_net>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:187
#: en/live-build.7:185
msgid "build netboot binary image"
msgstr ""
#. type: IP
#: en/live-build.7:187
#: en/live-build.7:185
#, no-wrap
msgid "B<lb_binary_rootfs>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:189
#: en/live-build.7:187
msgid "build rootfs image"
msgstr ""
#. type: IP
#: en/live-build.7:189
#: en/live-build.7:187
#, no-wrap
msgid "B<lb_binary_silo>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:191
#: en/live-build.7:189
msgid "installs silo into binary"
msgstr ""
#. type: IP
#: en/live-build.7:191
#: en/live-build.7:189
#, no-wrap
msgid "B<lb_binary_syslinux>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:193
#: en/live-build.7:191
msgid "installs syslinux into binary"
msgstr ""
#. type: IP
#: en/live-build.7:193
#: en/live-build.7:191
#, no-wrap
msgid "B<lb_binary_tar>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:195
#: en/live-build.7:193
msgid "build harddisk binary image"
msgstr ""
#. type: IP
#: en/live-build.7:195
#: en/live-build.7:193
#, no-wrap
msgid "B<lb_binary_usb>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:197
#: en/live-build.7:195
msgid "build binary usb-hdd image"
msgstr ""
#. type: IP
#: en/live-build.7:197
#: en/live-build.7:195
#, no-wrap
msgid "B<lb_binary_virtual-hdd>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:199
#: en/live-build.7:197
msgid "build binary virtual-hdd image"
msgstr ""
#. type: IP
#: en/live-build.7:199
#: en/live-build.7:197
#, no-wrap
msgid "B<lb_binary_win32-loader>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:201
#: en/live-build.7:199
msgid "installs win32-loader into binary"
msgstr ""
#. type: IP
#: en/live-build.7:201
#: en/live-build.7:199
#, no-wrap
msgid "B<lb_binary_yaboot>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:203
#: en/live-build.7:201
msgid "installs yaboot into binary"
msgstr ""
#. type: SS
#: en/live-build.7:203
#: en/live-build.7:201
#, no-wrap
msgid "Source commands"
msgstr ""
#. type: IP
#: en/live-build.7:204
#: en/live-build.7:202
#, no-wrap
msgid "B<lb_source_debian>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:206
#: en/live-build.7:204
msgid "download sources"
msgstr ""
#. type: IP
#: en/live-build.7:206
#: en/live-build.7:204
#, no-wrap
msgid "B<lb_source_debian-live>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:208
#: en/live-build.7:206
msgid "copy debian-live config into source"
msgstr ""
#. type: IP
#: en/live-build.7:208
#: en/live-build.7:206
#, no-wrap
msgid "B<lb_source_disk>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:210
#: en/live-build.7:208
msgid "install disk information into source"
msgstr ""
#. type: IP
#: en/live-build.7:210
#: en/live-build.7:208
#, no-wrap
msgid "B<lb_source_iso>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:212
#: en/live-build.7:210
msgid "build iso source image"
msgstr ""
#. type: IP
#: en/live-build.7:212
#: en/live-build.7:210
#, no-wrap
msgid "B<lb_source_checksums>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:214
#: en/live-build.7:212
msgid "create source checksums (md5, sha1, and/or sha256)"
msgstr ""
#. type: IP
#: en/live-build.7:214
#: en/live-build.7:212
#, no-wrap
msgid "B<lb_source_net>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:216
#: en/live-build.7:214
msgid "build source net image"
msgstr ""
#. type: IP
#: en/live-build.7:216
#: en/live-build.7:214
#, no-wrap
msgid "B<lb_source_tar>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:218
#: en/live-build.7:216
msgid "build source tarball"
msgstr ""
#. type: IP
#: en/live-build.7:218
#: en/live-build.7:216
#, no-wrap
msgid "B<lb_source_usb>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:220
#: en/live-build.7:218
msgid "build source usb-hdd image"
msgstr ""
#. type: IP
#: en/live-build.7:220
#: en/live-build.7:218
#, no-wrap
msgid "B<lb_source_virtual-hdd>(1)"
msgstr ""
#. FIXME
#. type: Plain text
#: en/live-build.7:223
#: en/live-build.7:221
msgid "build source virtual-hdd image"
msgstr ""
#. type: SH
#: en/live-build.7:224
#: en/live-build.7:222
#, no-wrap
msgid "CONFIG FILES"
msgstr ""
#. FIXME
#. type: Plain text
#: en/live-build.7:227
#: en/live-build.7:225
msgid ""
"Many live-build commands make use of files in the I<config/> directory to "
"control what they do. Besides the common I<config/common>, which is used by "
@ -1801,7 +1790,7 @@ msgid ""
msgstr ""
#. type: Plain text
#: en/live-build.7:229
#: en/live-build.7:227
msgid ""
"For example, lb_bootstrap_debootstrap uses files named config/bootstrap and "
"config/bootstrap_debootstrap to read the options it will use. See the man "
@ -1812,7 +1801,7 @@ msgid ""
msgstr ""
#. type: Plain text
#: en/live-build.7:231
#: en/live-build.7:229
msgid ""
"Note that live-build will respect environment variables which are present in "
"the context of the shell it is running. If variables can be read from config "
@ -1823,7 +1812,7 @@ msgid ""
msgstr ""
#. type: Plain text
#: en/live-build.7:233
#: en/live-build.7:231
msgid ""
"In some rare cases, you may want to have different versions of these files "
"for different architectures or distributions. If files named config/stage."
@ -1836,7 +1825,7 @@ msgstr ""
#. FIXME
#. type: Plain text
#: en/live-build.7:236
#: en/live-build.7:234
msgid ""
"All config files are shell scripts which are sourced by a live-build "
"program. That means they have to follow the normal shell syntax. You can "
@ -1844,6 +1833,6 @@ msgid ""
msgstr ""
#. type: Plain text
#: en/live-build.7:244
#: en/live-build.7:242
msgid "I<live-initramfs>(7)"
msgstr ""

View File

@ -6,7 +6,6 @@
[type: man] en/lb_binary_chroot.1 $lang:$lang/lb_binary_chroot.$lang.1
[type: man] en/lb_binary_debian-installer.1 $lang:$lang/lb_binary_debian-installer.$lang.1
[type: man] en/lb_binary_disk.1 $lang:$lang/lb_binary_disk.$lang.1
[type: man] en/lb_binary_encryption.1 $lang:$lang/lb_binary_encryption.$lang.1
[type: man] en/lb_binary_grub.1 $lang:$lang/lb_binary_grub.$lang.1
[type: man] en/lb_binary_grub2.1 $lang:$lang/lb_binary_grub2.$lang.1
[type: man] en/lb_binary_includes.1 $lang:$lang/lb_binary_includes.$lang.1

View File

@ -1,747 +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 <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
"POT-Creation-Date: 2011-01-02 00:30+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"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_encryption.1:1 en/lb_binary_grub.1:1
#: en/lb_binary_grub2.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-hooks.1:1
#: en/lb_binary_local-includes.1:1 en/lb_binary_local-packagelists.1:1
#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.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_usb.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_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-hooks.1:1 en/lb_chroot_local-includes.1:1
#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_sysvinit.1:1
#: en/lb_chroot_tasks.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_iso.1:1
#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.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_encryption.1:1 en/lb_binary_grub.1:1
#: en/lb_binary_grub2.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-hooks.1:1
#: en/lb_binary_local-includes.1:1 en/lb_binary_local-packagelists.1:1
#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.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_usb.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_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-hooks.1:1 en/lb_chroot_local-includes.1:1
#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_sysvinit.1:1
#: en/lb_chroot_tasks.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_iso.1:1
#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "2011-01-02"
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_encryption.1:1 en/lb_binary_grub.1:1
#: en/lb_binary_grub2.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-hooks.1:1
#: en/lb_binary_local-includes.1:1 en/lb_binary_local-packagelists.1:1
#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.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_usb.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_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-hooks.1:1 en/lb_chroot_local-includes.1:1
#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_sysvinit.1:1
#: en/lb_chroot_tasks.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_iso.1:1
#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.1:1
#: en/lb_source_virtual-hdd.1:1 en/lb_testroot.1:1 en/live-build.7:1
#, no-wrap
msgid "3.0~a10"
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_encryption.1:1 en/lb_binary_grub.1:1
#: en/lb_binary_grub2.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-hooks.1:1
#: en/lb_binary_local-includes.1:1 en/lb_binary_local-packagelists.1:1
#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.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_usb.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_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-hooks.1:1 en/lb_chroot_local-includes.1:1
#: en/lb_chroot_local-packagelists.1:1 en/lb_chroot_local-packages.1:1
#: en/lb_chroot_local-patches.1:1 en/lb_chroot_local-preseed.1:1
#: en/lb_chroot_localization.1:1 en/lb_chroot_packagelists.1:1
#: en/lb_chroot_packages.1:1 en/lb_chroot_preseed.1:1 en/lb_chroot_proc.1:1
#: en/lb_chroot_resolv.1:1 en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sources.1:1
#: en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1 en/lb_chroot_sysvinit.1:1
#: en/lb_chroot_tasks.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_iso.1:1
#: en/lb_source_net.1:1 en/lb_source_tar.1:1 en/lb_source_usb.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_encryption.1:3 en/lb_binary_grub.1:3
#: en/lb_binary_grub2.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-hooks.1:3
#: en/lb_binary_local-includes.1:3 en/lb_binary_local-packagelists.1:3
#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.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_usb.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_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-hooks.1:3 en/lb_chroot_local-includes.1:3
#: en/lb_chroot_local-packagelists.1:3 en/lb_chroot_local-packages.1:3
#: en/lb_chroot_local-patches.1:3 en/lb_chroot_local-preseed.1:3
#: en/lb_chroot_localization.1:3 en/lb_chroot_packagelists.1:3
#: en/lb_chroot_packages.1:3 en/lb_chroot_preseed.1:3 en/lb_chroot_proc.1:3
#: en/lb_chroot_resolv.1:3 en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sources.1:3
#: en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3 en/lb_chroot_sysvinit.1:3
#: en/lb_chroot_tasks.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_iso.1:3
#: en/lb_source_net.1:3 en/lb_source_tar.1:3 en/lb_source_usb.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_encryption.1:6 en/lb_binary_grub.1:6
#: en/lb_binary_grub2.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-hooks.1:6
#: en/lb_binary_local-includes.1:6 en/lb_binary_local-packagelists.1:6
#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.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_usb.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_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-hooks.1:6 en/lb_chroot_local-includes.1:6
#: en/lb_chroot_local-packagelists.1:6 en/lb_chroot_local-packages.1:6
#: en/lb_chroot_local-patches.1:6 en/lb_chroot_local-preseed.1:6
#: en/lb_chroot_localization.1:6 en/lb_chroot_packagelists.1:6
#: en/lb_chroot_packages.1:6 en/lb_chroot_preseed.1:6 en/lb_chroot_proc.1:6
#: en/lb_chroot_resolv.1:6 en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sources.1:6
#: en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6 en/lb_chroot_sysvinit.1:6
#: en/lb_chroot_tasks.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_iso.1:6
#: en/lb_source_net.1:6 en/lb_source_tar.1:6 en/lb_source_usb.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_encryption.1:9 en/lb_binary_grub.1:9
#: en/lb_binary_grub2.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-hooks.1:9
#: en/lb_binary_local-includes.1:9 en/lb_binary_local-packagelists.1:9
#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.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_usb.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_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-hooks.1:9 en/lb_chroot_local-includes.1:9
#: en/lb_chroot_local-packagelists.1:9 en/lb_chroot_local-packages.1:9
#: en/lb_chroot_local-patches.1:9 en/lb_chroot_local-preseed.1:9
#: en/lb_chroot_localization.1:9 en/lb_chroot_packagelists.1:9
#: en/lb_chroot_packages.1:9 en/lb_chroot_preseed.1:9 en/lb_chroot_proc.1:9
#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_sysvinit.1:9
#: en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
#: en/lb_config.1:225 en/lb_local.1:9 en/lb_source.1:9
#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
#: 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_encryption.1:14 en/lb_binary_grub.1:14
#: en/lb_binary_grub2.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-hooks.1:14
#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.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_usb.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_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-hooks.1:14
#: en/lb_chroot_local-includes.1:14 en/lb_chroot_local-packagelists.1:14
#: en/lb_chroot_local-packages.1:14 en/lb_chroot_local-patches.1:14
#: en/lb_chroot_local-preseed.1:14 en/lb_chroot_localization.1:14
#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
#: en/lb_chroot_preseed.1:14 en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14
#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
#: en/lb_chroot_sysvinit.1:14 en/lb_chroot_tasks.1:14
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:234
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
#: en/lb_source_tar.1:14 en/lb_source_usb.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_encryption.1:17 en/lb_binary_grub.1:17
#: en/lb_binary_grub2.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-hooks.1:17
#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.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_usb.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_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-hooks.1:17
#: en/lb_chroot_local-includes.1:17 en/lb_chroot_local-packagelists.1:17
#: en/lb_chroot_local-packages.1:17 en/lb_chroot_local-patches.1:17
#: en/lb_chroot_local-preseed.1:17 en/lb_chroot_localization.1:17
#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
#: en/lb_chroot_preseed.1:17 en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17
#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
#: en/lb_chroot_sysvinit.1:17 en/lb_chroot_tasks.1:17
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:464
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:237
#, no-wrap
msgid "FILES"
msgstr ""
#. FIXME
#. 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_encryption.1:21 en/lb_binary_grub.1:21
#: en/lb_binary_grub2.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-hooks.1:21
#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.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_usb.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_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-hooks.1:21
#: en/lb_chroot_local-includes.1:21 en/lb_chroot_local-packagelists.1:21
#: en/lb_chroot_local-packages.1:21 en/lb_chroot_local-patches.1:21
#: en/lb_chroot_local-preseed.1:21 en/lb_chroot_localization.1:21
#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
#: en/lb_chroot_preseed.1:21 en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21
#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
#: en/lb_chroot_sysvinit.1:21 en/lb_chroot_tasks.1:21
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:471
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:242
#, 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_encryption.1:23 en/lb_binary_grub.1:23
#: en/lb_binary_grub2.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-hooks.1:23
#: en/lb_binary_local-includes.1:23 en/lb_binary_local-packagelists.1:23
#: en/lb_binary_manifest.1:23 en/lb_binary_memtest.1:23 en/lb_binary_net.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_usb.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_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-hooks.1:23
#: en/lb_chroot_local-includes.1:23 en/lb_chroot_local-packagelists.1:23
#: en/lb_chroot_local-packages.1:23 en/lb_chroot_local-patches.1:23
#: en/lb_chroot_local-preseed.1:23 en/lb_chroot_localization.1:23
#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
#: en/lb_chroot_preseed.1:23 en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23
#: en/lb_chroot_selinuxfs.1:23 en/lb_chroot_sources.1:23
#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
#: en/lb_chroot_sysvinit.1:23 en/lb_chroot_tasks.1:23
#: en/lb_chroot_upstart.1:23 en/lb_clean.1:45 en/lb_config.1:473
#: en/lb_local.1:22 en/lb_source.1:22 en/lb_source_checksums.1:23
#: en/lb_source_debian-live.1:23 en/lb_source_debian.1:23
#: en/lb_source_disk.1:23 en/lb_source_iso.1:23 en/lb_source_net.1:23
#: en/lb_source_tar.1:23 en/lb_source_usb.1:23 en/lb_source_virtual-hdd.1:23
#: en/lb_testroot.1:26
msgid "I<live-build>(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_encryption.1:25 en/lb_binary_grub.1:25
#: en/lb_binary_grub2.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-hooks.1:25
#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.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_usb.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_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-hooks.1:25
#: en/lb_chroot_local-includes.1:25 en/lb_chroot_local-packagelists.1:25
#: en/lb_chroot_local-packages.1:25 en/lb_chroot_local-patches.1:25
#: en/lb_chroot_local-preseed.1:25 en/lb_chroot_localization.1:25
#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
#: en/lb_chroot_preseed.1:25 en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25
#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
#: en/lb_chroot_sysvinit.1:25 en/lb_chroot_tasks.1:25
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:475
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:246
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_encryption.1:26 en/lb_binary_grub.1:26
#: en/lb_binary_grub2.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-hooks.1:26
#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.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_usb.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_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-hooks.1:26
#: en/lb_chroot_local-includes.1:26 en/lb_chroot_local-packagelists.1:26
#: en/lb_chroot_local-packages.1:26 en/lb_chroot_local-patches.1:26
#: en/lb_chroot_local-preseed.1:26 en/lb_chroot_localization.1:26
#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
#: en/lb_chroot_preseed.1:26 en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26
#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
#: en/lb_chroot_sysvinit.1:26 en/lb_chroot_tasks.1:26
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:476
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:247
#, 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_encryption.1:28 en/lb_binary_grub.1:28
#: en/lb_binary_grub2.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-hooks.1:28
#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.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_usb.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_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-hooks.1:28
#: en/lb_chroot_local-includes.1:28 en/lb_chroot_local-packagelists.1:28
#: en/lb_chroot_local-packages.1:28 en/lb_chroot_local-patches.1:28
#: en/lb_chroot_local-preseed.1:28 en/lb_chroot_localization.1:28
#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
#: en/lb_chroot_preseed.1:28 en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28
#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
#: en/lb_chroot_sysvinit.1:28 en/lb_chroot_tasks.1:28
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:478
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:249
msgid ""
"More information about live-build and the Debian Live project can be found "
"on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
"E<lt>I<http://live.debian.net/manual/>E<gt>."
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_encryption.1:29 en/lb_binary_grub.1:29
#: en/lb_binary_grub2.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-hooks.1:29
#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.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_usb.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_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-hooks.1:29
#: en/lb_chroot_local-includes.1:29 en/lb_chroot_local-packagelists.1:29
#: en/lb_chroot_local-packages.1:29 en/lb_chroot_local-patches.1:29
#: en/lb_chroot_local-preseed.1:29 en/lb_chroot_localization.1:29
#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
#: en/lb_chroot_preseed.1:29 en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29
#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
#: en/lb_chroot_sysvinit.1:29 en/lb_chroot_tasks.1:29
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:479
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:250
#, 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_encryption.1:31 en/lb_binary_grub.1:31
#: en/lb_binary_grub2.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-hooks.1:31
#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.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_usb.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_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-hooks.1:31
#: en/lb_chroot_local-includes.1:31 en/lb_chroot_local-packagelists.1:31
#: en/lb_chroot_local-packages.1:31 en/lb_chroot_local-patches.1:31
#: en/lb_chroot_local-preseed.1:31 en/lb_chroot_localization.1:31
#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
#: en/lb_chroot_preseed.1:31 en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31
#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
#: en/lb_chroot_sysvinit.1:31 en/lb_chroot_tasks.1:31
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:481
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:252
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
"the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
"writing a mail to the Debian Live mailing list at E<lt>I<debian-live@lists."
"debian.org>E<gt>."
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_encryption.1:32 en/lb_binary_grub.1:32
#: en/lb_binary_grub2.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-hooks.1:32
#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.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_usb.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_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-hooks.1:32
#: en/lb_chroot_local-includes.1:32 en/lb_chroot_local-packagelists.1:32
#: en/lb_chroot_local-packages.1:32 en/lb_chroot_local-patches.1:32
#: en/lb_chroot_local-preseed.1:32 en/lb_chroot_localization.1:32
#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
#: en/lb_chroot_preseed.1:32 en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32
#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
#: en/lb_chroot_sysvinit.1:32 en/lb_chroot_tasks.1:32
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:482
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:253
#, 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_encryption.1:33 en/lb_binary_grub.1:33
#: en/lb_binary_grub2.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-hooks.1:33
#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.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_usb.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_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-hooks.1:33
#: en/lb_chroot_local-includes.1:33 en/lb_chroot_local-packagelists.1:33
#: en/lb_chroot_local-packages.1:33 en/lb_chroot_local-patches.1:33
#: en/lb_chroot_local-preseed.1:33 en/lb_chroot_localization.1:33
#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
#: en/lb_chroot_preseed.1:33 en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33
#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
#: en/lb_chroot_sysvinit.1:33 en/lb_chroot_tasks.1:33
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:483
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:254
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for "
"the Debian project."
msgstr ""
#. FIXME
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
#: en/lb_binary_encryption.1:19 en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19
#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-hooks.1:19
#: en/lb_binary_local-includes.1:19 en/lb_binary_local-packagelists.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
#: en/lb_chroot_apt.1:19 en/lb_chroot_cache.1:19
#: en/lb_chroot_debianchroot.1:19 en/lb_chroot_devpts.1:19
#: en/lb_chroot_dpkg.1:19 en/lb_chroot_hacks.1:19 en/lb_chroot_hooks.1:19
#: en/lb_chroot_hostname.1:19 en/lb_chroot_hosts.1:19
#: en/lb_chroot_install-packages.1:19 en/lb_chroot_interactive.1:19
#: en/lb_chroot_linux-image.1:19 en/lb_chroot_local-hooks.1:19
#: en/lb_chroot_local-includes.1:19 en/lb_chroot_local-packagelists.1:19
#: en/lb_chroot_local-packages.1:19 en/lb_chroot_local-patches.1:19
#: en/lb_chroot_local-preseed.1:19 en/lb_chroot_localization.1:19
#: en/lb_chroot_packagelists.1:19 en/lb_chroot_packages.1:19
#: en/lb_chroot_preseed.1:19 en/lb_chroot_proc.1:19 en/lb_chroot_resolv.1:19
#: en/lb_chroot_selinuxfs.1:19 en/lb_chroot_sources.1:19
#: en/lb_chroot_sysfs.1:19 en/lb_chroot_sysv-rc.1:19
#: en/lb_chroot_sysvinit.1:19 en/lb_chroot_tasks.1:19
#: en/lb_chroot_upstart.1:19 en/lb_source_checksums.1:19
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
#: en/live-build.7:239
#, no-wrap
msgid "B<n/a>"
msgstr ""
#. type: Plain text
#: en/lb_binary_encryption.1:5
msgid "B<lb binary_encryption> - Complete the binary stage"
msgstr ""
#. type: Plain text
#: en/lb_binary_encryption.1:8
msgid "B<lb binary_encryption> [I<live-build options>]"
msgstr ""
#. type: Plain text
#: en/lb_binary_encryption.1:11
msgid ""
"B<lb binary_encryption> is a low-level command (plumbing) of I<live-build>"
"(7), the Debian Live tool suite."
msgstr ""
#. type: Plain text
#: en/lb_binary_encryption.1:16
msgid ""
"B<lb binary_encryption> has no specific options but understands all generic "
"live-build options. See I<live-build>(7) for a complete list of all generic "
"live-build options."
msgstr ""

File diff suppressed because it is too large Load Diff

View File

@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: live-build VERSION\n"
"POT-Creation-Date: 2011-01-02 00:30+0100\n"
"POT-Creation-Date: 2011-01-02 00:47+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -19,13 +19,13 @@ 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_encryption.1:1 en/lb_binary_grub.1:1
#: en/lb_binary_grub2.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-hooks.1:1
#: en/lb_binary_local-includes.1:1 en/lb_binary_local-packagelists.1:1
#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.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_usb.1:1 en/lb_binary_virtual-hdd.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.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-hooks.1:1 en/lb_binary_local-includes.1:1
#: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
#: en/lb_binary_memtest.1:1 en/lb_binary_net.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_usb.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
@ -54,13 +54,13 @@ 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_encryption.1:1 en/lb_binary_grub.1:1
#: en/lb_binary_grub2.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-hooks.1:1
#: en/lb_binary_local-includes.1:1 en/lb_binary_local-packagelists.1:1
#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.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_usb.1:1 en/lb_binary_virtual-hdd.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.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-hooks.1:1 en/lb_binary_local-includes.1:1
#: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
#: en/lb_binary_memtest.1:1 en/lb_binary_net.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_usb.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
@ -89,13 +89,13 @@ 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_encryption.1:1 en/lb_binary_grub.1:1
#: en/lb_binary_grub2.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-hooks.1:1
#: en/lb_binary_local-includes.1:1 en/lb_binary_local-packagelists.1:1
#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.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_usb.1:1 en/lb_binary_virtual-hdd.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.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-hooks.1:1 en/lb_binary_local-includes.1:1
#: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
#: en/lb_binary_memtest.1:1 en/lb_binary_net.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_usb.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
@ -124,13 +124,13 @@ 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_encryption.1:1 en/lb_binary_grub.1:1
#: en/lb_binary_grub2.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-hooks.1:1
#: en/lb_binary_local-includes.1:1 en/lb_binary_local-packagelists.1:1
#: en/lb_binary_manifest.1:1 en/lb_binary_memtest.1:1 en/lb_binary_net.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_usb.1:1 en/lb_binary_virtual-hdd.1:1
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.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-hooks.1:1 en/lb_binary_local-includes.1:1
#: en/lb_binary_local-packagelists.1:1 en/lb_binary_manifest.1:1
#: en/lb_binary_memtest.1:1 en/lb_binary_net.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_usb.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
@ -159,13 +159,13 @@ 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_encryption.1:3 en/lb_binary_grub.1:3
#: en/lb_binary_grub2.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-hooks.1:3
#: en/lb_binary_local-includes.1:3 en/lb_binary_local-packagelists.1:3
#: en/lb_binary_manifest.1:3 en/lb_binary_memtest.1:3 en/lb_binary_net.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_usb.1:3 en/lb_binary_virtual-hdd.1:3
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.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-hooks.1:3 en/lb_binary_local-includes.1:3
#: en/lb_binary_local-packagelists.1:3 en/lb_binary_manifest.1:3
#: en/lb_binary_memtest.1:3 en/lb_binary_net.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_usb.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
@ -194,13 +194,13 @@ 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_encryption.1:6 en/lb_binary_grub.1:6
#: en/lb_binary_grub2.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-hooks.1:6
#: en/lb_binary_local-includes.1:6 en/lb_binary_local-packagelists.1:6
#: en/lb_binary_manifest.1:6 en/lb_binary_memtest.1:6 en/lb_binary_net.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_usb.1:6 en/lb_binary_virtual-hdd.1:6
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.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-hooks.1:6 en/lb_binary_local-includes.1:6
#: en/lb_binary_local-packagelists.1:6 en/lb_binary_manifest.1:6
#: en/lb_binary_memtest.1:6 en/lb_binary_net.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_usb.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
@ -229,13 +229,13 @@ 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_encryption.1:9 en/lb_binary_grub.1:9
#: en/lb_binary_grub2.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-hooks.1:9
#: en/lb_binary_local-includes.1:9 en/lb_binary_local-packagelists.1:9
#: en/lb_binary_manifest.1:9 en/lb_binary_memtest.1:9 en/lb_binary_net.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_usb.1:9 en/lb_binary_virtual-hdd.1:9
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.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-hooks.1:9 en/lb_binary_local-includes.1:9
#: en/lb_binary_local-packagelists.1:9 en/lb_binary_manifest.1:9
#: en/lb_binary_memtest.1:9 en/lb_binary_net.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_usb.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
@ -252,7 +252,7 @@ msgstr ""
#: en/lb_chroot_resolv.1:9 en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sources.1:9
#: en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9 en/lb_chroot_sysvinit.1:9
#: en/lb_chroot_tasks.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
#: en/lb_config.1:225 en/lb_local.1:9 en/lb_source.1:9
#: en/lb_config.1:223 en/lb_local.1:9 en/lb_source.1:9
#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_iso.1:9
#: en/lb_source_net.1:9 en/lb_source_tar.1:9 en/lb_source_usb.1:9
@ -264,8 +264,8 @@ 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_encryption.1:14 en/lb_binary_grub.1:14
#: en/lb_binary_grub2.1:14 en/lb_binary_includes.1:14 en/lb_binary_iso.1:14
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.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-hooks.1:14
#: en/lb_binary_local-includes.1:14 en/lb_binary_local-packagelists.1:14
#: en/lb_binary_manifest.1:14 en/lb_binary_memtest.1:14 en/lb_binary_net.1:14
@ -289,7 +289,7 @@ msgstr ""
#: en/lb_chroot_selinuxfs.1:14 en/lb_chroot_sources.1:14
#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
#: en/lb_chroot_sysvinit.1:14 en/lb_chroot_tasks.1:14
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:234
#: en/lb_chroot_upstart.1:14 en/lb_clean.1:16 en/lb_config.1:232
#: en/lb_local.1:14 en/lb_source.1:14 en/lb_source_checksums.1:14
#: en/lb_source_debian-live.1:14 en/lb_source_debian.1:14
#: en/lb_source_disk.1:14 en/lb_source_iso.1:14 en/lb_source_net.1:14
@ -302,8 +302,8 @@ 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_encryption.1:17 en/lb_binary_grub.1:17
#: en/lb_binary_grub2.1:17 en/lb_binary_includes.1:17 en/lb_binary_iso.1:17
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.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-hooks.1:17
#: en/lb_binary_local-includes.1:17 en/lb_binary_local-packagelists.1:17
#: en/lb_binary_manifest.1:17 en/lb_binary_memtest.1:17 en/lb_binary_net.1:17
@ -327,12 +327,12 @@ msgstr ""
#: en/lb_chroot_selinuxfs.1:17 en/lb_chroot_sources.1:17
#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
#: en/lb_chroot_sysvinit.1:17 en/lb_chroot_tasks.1:17
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:464
#: en/lb_chroot_upstart.1:17 en/lb_clean.1:38 en/lb_config.1:460
#: en/lb_local.1:17 en/lb_source.1:17 en/lb_source_checksums.1:17
#: en/lb_source_debian-live.1:17 en/lb_source_debian.1:17
#: en/lb_source_disk.1:17 en/lb_source_iso.1:17 en/lb_source_net.1:17
#: en/lb_source_tar.1:17 en/lb_source_usb.1:17 en/lb_source_virtual-hdd.1:17
#: en/lb_testroot.1:21 en/live-build.7:237
#: en/lb_testroot.1:21 en/live-build.7:235
#, no-wrap
msgid "FILES"
msgstr ""
@ -341,8 +341,8 @@ 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_encryption.1:21 en/lb_binary_grub.1:21
#: en/lb_binary_grub2.1:21 en/lb_binary_includes.1:21 en/lb_binary_iso.1:21
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.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-hooks.1:21
#: en/lb_binary_local-includes.1:21 en/lb_binary_local-packagelists.1:21
#: en/lb_binary_manifest.1:21 en/lb_binary_memtest.1:21 en/lb_binary_net.1:21
@ -366,12 +366,12 @@ msgstr ""
#: en/lb_chroot_selinuxfs.1:21 en/lb_chroot_sources.1:21
#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
#: en/lb_chroot_sysvinit.1:21 en/lb_chroot_tasks.1:21
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:471
#: en/lb_chroot_upstart.1:21 en/lb_clean.1:43 en/lb_config.1:467
#: en/lb_local.1:20 en/lb_source.1:20 en/lb_source_checksums.1:21
#: en/lb_source_debian-live.1:21 en/lb_source_debian.1:21
#: en/lb_source_disk.1:21 en/lb_source_iso.1:21 en/lb_source_net.1:21
#: en/lb_source_tar.1:21 en/lb_source_usb.1:21 en/lb_source_virtual-hdd.1:21
#: en/lb_testroot.1:24 en/live-build.7:242
#: en/lb_testroot.1:24 en/live-build.7:240
#, no-wrap
msgid "SEE ALSO"
msgstr ""
@ -379,8 +379,8 @@ 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_encryption.1:25 en/lb_binary_grub.1:25
#: en/lb_binary_grub2.1:25 en/lb_binary_includes.1:25 en/lb_binary_iso.1:25
#: en/lb_binary_disk.1:25 en/lb_binary_grub.1:25 en/lb_binary_grub2.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-hooks.1:25
#: en/lb_binary_local-includes.1:25 en/lb_binary_local-packagelists.1:25
#: en/lb_binary_manifest.1:25 en/lb_binary_memtest.1:25 en/lb_binary_net.1:25
@ -404,20 +404,20 @@ msgstr ""
#: en/lb_chroot_selinuxfs.1:25 en/lb_chroot_sources.1:25
#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
#: en/lb_chroot_sysvinit.1:25 en/lb_chroot_tasks.1:25
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:475
#: en/lb_chroot_upstart.1:25 en/lb_clean.1:47 en/lb_config.1:471
#: en/lb_local.1:24 en/lb_source.1:24 en/lb_source_checksums.1:25
#: en/lb_source_debian-live.1:25 en/lb_source_debian.1:25
#: en/lb_source_disk.1:25 en/lb_source_iso.1:25 en/lb_source_net.1:25
#: en/lb_source_tar.1:25 en/lb_source_usb.1:25 en/lb_source_virtual-hdd.1:25
#: en/lb_testroot.1:28 en/live-build.7:246
#: en/lb_testroot.1:28 en/live-build.7:244
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_encryption.1:26 en/lb_binary_grub.1:26
#: en/lb_binary_grub2.1:26 en/lb_binary_includes.1:26 en/lb_binary_iso.1:26
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.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-hooks.1:26
#: en/lb_binary_local-includes.1:26 en/lb_binary_local-packagelists.1:26
#: en/lb_binary_manifest.1:26 en/lb_binary_memtest.1:26 en/lb_binary_net.1:26
@ -441,12 +441,12 @@ msgstr ""
#: en/lb_chroot_selinuxfs.1:26 en/lb_chroot_sources.1:26
#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
#: en/lb_chroot_sysvinit.1:26 en/lb_chroot_tasks.1:26
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:476
#: en/lb_chroot_upstart.1:26 en/lb_clean.1:48 en/lb_config.1:472
#: en/lb_local.1:25 en/lb_source.1:25 en/lb_source_checksums.1:26
#: en/lb_source_debian-live.1:26 en/lb_source_debian.1:26
#: en/lb_source_disk.1:26 en/lb_source_iso.1:26 en/lb_source_net.1:26
#: en/lb_source_tar.1:26 en/lb_source_usb.1:26 en/lb_source_virtual-hdd.1:26
#: en/lb_testroot.1:29 en/live-build.7:247
#: en/lb_testroot.1:29 en/live-build.7:245
#, no-wrap
msgid "HOMEPAGE"
msgstr ""
@ -454,8 +454,8 @@ 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_encryption.1:28 en/lb_binary_grub.1:28
#: en/lb_binary_grub2.1:28 en/lb_binary_includes.1:28 en/lb_binary_iso.1:28
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.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-hooks.1:28
#: en/lb_binary_local-includes.1:28 en/lb_binary_local-packagelists.1:28
#: en/lb_binary_manifest.1:28 en/lb_binary_memtest.1:28 en/lb_binary_net.1:28
@ -479,12 +479,12 @@ msgstr ""
#: en/lb_chroot_selinuxfs.1:28 en/lb_chroot_sources.1:28
#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
#: en/lb_chroot_sysvinit.1:28 en/lb_chroot_tasks.1:28
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:478
#: en/lb_chroot_upstart.1:28 en/lb_clean.1:50 en/lb_config.1:474
#: en/lb_local.1:27 en/lb_source.1:27 en/lb_source_checksums.1:28
#: en/lb_source_debian-live.1:28 en/lb_source_debian.1:28
#: en/lb_source_disk.1:28 en/lb_source_iso.1:28 en/lb_source_net.1:28
#: en/lb_source_tar.1:28 en/lb_source_usb.1:28 en/lb_source_virtual-hdd.1:28
#: en/lb_testroot.1:31 en/live-build.7:249
#: en/lb_testroot.1:31 en/live-build.7:247
msgid ""
"More information about live-build and the Debian Live project can be found "
"on the homepage at E<lt>I<http://live.debian.net/>E<gt> and in the manual at "
@ -494,8 +494,8 @@ 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_encryption.1:29 en/lb_binary_grub.1:29
#: en/lb_binary_grub2.1:29 en/lb_binary_includes.1:29 en/lb_binary_iso.1:29
#: en/lb_binary_disk.1:29 en/lb_binary_grub.1:29 en/lb_binary_grub2.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-hooks.1:29
#: en/lb_binary_local-includes.1:29 en/lb_binary_local-packagelists.1:29
#: en/lb_binary_manifest.1:29 en/lb_binary_memtest.1:29 en/lb_binary_net.1:29
@ -519,12 +519,12 @@ msgstr ""
#: en/lb_chroot_selinuxfs.1:29 en/lb_chroot_sources.1:29
#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
#: en/lb_chroot_sysvinit.1:29 en/lb_chroot_tasks.1:29
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:479
#: en/lb_chroot_upstart.1:29 en/lb_clean.1:51 en/lb_config.1:475
#: en/lb_local.1:28 en/lb_source.1:28 en/lb_source_checksums.1:29
#: en/lb_source_debian-live.1:29 en/lb_source_debian.1:29
#: en/lb_source_disk.1:29 en/lb_source_iso.1:29 en/lb_source_net.1:29
#: en/lb_source_tar.1:29 en/lb_source_usb.1:29 en/lb_source_virtual-hdd.1:29
#: en/lb_testroot.1:32 en/live-build.7:250
#: en/lb_testroot.1:32 en/live-build.7:248
#, no-wrap
msgid "BUGS"
msgstr ""
@ -532,8 +532,8 @@ 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_encryption.1:31 en/lb_binary_grub.1:31
#: en/lb_binary_grub2.1:31 en/lb_binary_includes.1:31 en/lb_binary_iso.1:31
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.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-hooks.1:31
#: en/lb_binary_local-includes.1:31 en/lb_binary_local-packagelists.1:31
#: en/lb_binary_manifest.1:31 en/lb_binary_memtest.1:31 en/lb_binary_net.1:31
@ -557,12 +557,12 @@ msgstr ""
#: en/lb_chroot_selinuxfs.1:31 en/lb_chroot_sources.1:31
#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
#: en/lb_chroot_sysvinit.1:31 en/lb_chroot_tasks.1:31
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:481
#: en/lb_chroot_upstart.1:31 en/lb_clean.1:53 en/lb_config.1:477
#: en/lb_local.1:30 en/lb_source.1:30 en/lb_source_checksums.1:31
#: en/lb_source_debian-live.1:31 en/lb_source_debian.1:31
#: en/lb_source_disk.1:31 en/lb_source_iso.1:31 en/lb_source_net.1:31
#: en/lb_source_tar.1:31 en/lb_source_usb.1:31 en/lb_source_virtual-hdd.1:31
#: en/lb_testroot.1:34 en/live-build.7:252
#: en/lb_testroot.1:34 en/live-build.7:250
msgid ""
"Bugs can be reported by submitting a bugreport for the live-build package in "
"the Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@ -573,8 +573,8 @@ 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_encryption.1:32 en/lb_binary_grub.1:32
#: en/lb_binary_grub2.1:32 en/lb_binary_includes.1:32 en/lb_binary_iso.1:32
#: en/lb_binary_disk.1:32 en/lb_binary_grub.1:32 en/lb_binary_grub2.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-hooks.1:32
#: en/lb_binary_local-includes.1:32 en/lb_binary_local-packagelists.1:32
#: en/lb_binary_manifest.1:32 en/lb_binary_memtest.1:32 en/lb_binary_net.1:32
@ -598,12 +598,12 @@ msgstr ""
#: en/lb_chroot_selinuxfs.1:32 en/lb_chroot_sources.1:32
#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
#: en/lb_chroot_sysvinit.1:32 en/lb_chroot_tasks.1:32
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:482
#: en/lb_chroot_upstart.1:32 en/lb_clean.1:54 en/lb_config.1:478
#: en/lb_local.1:31 en/lb_source.1:31 en/lb_source_checksums.1:32
#: en/lb_source_debian-live.1:32 en/lb_source_debian.1:32
#: en/lb_source_disk.1:32 en/lb_source_iso.1:32 en/lb_source_net.1:32
#: en/lb_source_tar.1:32 en/lb_source_usb.1:32 en/lb_source_virtual-hdd.1:32
#: en/lb_testroot.1:35 en/live-build.7:253
#: en/lb_testroot.1:35 en/live-build.7:251
#, no-wrap
msgid "AUTHOR"
msgstr ""
@ -611,8 +611,8 @@ 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_encryption.1:33 en/lb_binary_grub.1:33
#: en/lb_binary_grub2.1:33 en/lb_binary_includes.1:33 en/lb_binary_iso.1:33
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.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-hooks.1:33
#: en/lb_binary_local-includes.1:33 en/lb_binary_local-packagelists.1:33
#: en/lb_binary_manifest.1:33 en/lb_binary_memtest.1:33 en/lb_binary_net.1:33
@ -636,12 +636,12 @@ msgstr ""
#: en/lb_chroot_selinuxfs.1:33 en/lb_chroot_sources.1:33
#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
#: en/lb_chroot_sysvinit.1:33 en/lb_chroot_tasks.1:33
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:483
#: en/lb_chroot_upstart.1:33 en/lb_clean.1:55 en/lb_config.1:479
#: en/lb_local.1:32 en/lb_source.1:32 en/lb_source_checksums.1:33
#: en/lb_source_debian-live.1:33 en/lb_source_debian.1:33
#: en/lb_source_disk.1:33 en/lb_source_iso.1:33 en/lb_source_net.1:33
#: en/lb_source_tar.1:33 en/lb_source_usb.1:33 en/lb_source_virtual-hdd.1:33
#: en/lb_testroot.1:36 en/live-build.7:254
#: en/lb_testroot.1:36 en/live-build.7:252
msgid ""
"live-build was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for "
"the Debian project."
@ -651,13 +651,13 @@ msgstr ""
#. type: IP
#: en/lb_binary_checksums.1:19 en/lb_binary_chroot.1:19
#: en/lb_binary_debian-installer.1:19 en/lb_binary_disk.1:19
#: en/lb_binary_encryption.1:19 en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19
#: en/lb_binary_includes.1:19 en/lb_binary_iso.1:19
#: en/lb_binary_linux-image.1:19 en/lb_binary_local-hooks.1:19
#: en/lb_binary_local-includes.1:19 en/lb_binary_local-packagelists.1:19
#: en/lb_binary_manifest.1:19 en/lb_binary_memtest.1:19 en/lb_binary_net.1:19
#: en/lb_binary_rootfs.1:19 en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19
#: en/lb_binary_tar.1:19 en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_grub.1:19 en/lb_binary_grub2.1:19 en/lb_binary_includes.1:19
#: en/lb_binary_iso.1:19 en/lb_binary_linux-image.1:19
#: en/lb_binary_local-hooks.1:19 en/lb_binary_local-includes.1:19
#: en/lb_binary_local-packagelists.1:19 en/lb_binary_manifest.1:19
#: en/lb_binary_memtest.1:19 en/lb_binary_net.1:19 en/lb_binary_rootfs.1:19
#: en/lb_binary_silo.1:19 en/lb_binary_syslinux.1:19 en/lb_binary_tar.1:19
#: en/lb_binary_usb.1:19 en/lb_binary_virtual-hdd.1:19
#: en/lb_binary_win32-loader.1:19 en/lb_binary_yaboot.1:19
#: en/lb_bootstrap_cache.1:19 en/lb_bootstrap_cdebootstrap.1:19
#: en/lb_bootstrap_copy.1:19 en/lb_bootstrap_debootstrap.1:19
@ -679,31 +679,31 @@ msgstr ""
#: en/lb_source_debian-live.1:19 en/lb_source_debian.1:19
#: en/lb_source_disk.1:19 en/lb_source_iso.1:19 en/lb_source_net.1:19
#: en/lb_source_tar.1:19 en/lb_source_usb.1:19 en/lb_source_virtual-hdd.1:19
#: en/live-build.7:239
#: en/live-build.7:237
#, no-wrap
msgid "B<n/a>"
msgstr ""
#. type: IP
#: en/lb_config.1:310 en/live-build.7:36
#: en/lb_config.1:308 en/live-build.7:36
#, no-wrap
msgid "B<--debug>"
msgstr ""
#. type: IP
#: en/lb_config.1:320 en/live-build.7:38
#: en/lb_config.1:316 en/live-build.7:38
#, no-wrap
msgid "B<--force>"
msgstr ""
#. type: IP
#: en/lb_config.1:413 en/live-build.7:40
#: en/lb_config.1:409 en/live-build.7:40
#, no-wrap
msgid "B<--quiet>"
msgstr ""
#. type: IP
#: en/lb_config.1:453 en/live-build.7:42
#: en/lb_config.1:449 en/live-build.7:42
#, no-wrap
msgid "B<--verbose>"
msgstr ""
@ -1452,344 +1452,333 @@ msgstr ""
#. type: IP
#: en/live-build.7:161
#, no-wrap
msgid "B<lb_binary_encryption>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:163
msgid "encrypts rootfs"
msgstr ""
#. type: IP
#: en/live-build.7:163
#, no-wrap
msgid "B<lb_binary_grub>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:165
#: en/live-build.7:163
msgid "installs grub into binary"
msgstr ""
#. type: IP
#: en/live-build.7:165
#: en/live-build.7:163
#, no-wrap
msgid "B<lb_binary_grub2>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:167
#: en/live-build.7:165
msgid "installs grub2 into binary"
msgstr ""
#. type: IP
#: en/live-build.7:167
#: en/live-build.7:165
#, no-wrap
msgid "B<lb_binary_includes>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:169 en/live-build.7:177
#: en/live-build.7:167 en/live-build.7:175
msgid "copy files into binary"
msgstr ""
#. type: IP
#: en/live-build.7:169
#: en/live-build.7:167
#, no-wrap
msgid "B<lb_binary_iso>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:171
#: en/live-build.7:169
msgid "build iso binary image"
msgstr ""
#. type: IP
#: en/live-build.7:171
#: en/live-build.7:169
#, no-wrap
msgid "B<lb_binary_linux-image>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:173
#: en/live-build.7:171
msgid "install linux-image into binary"
msgstr ""
#. type: IP
#: en/live-build.7:173
#: en/live-build.7:171
#, no-wrap
msgid "B<lb_binary_local-hooks>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:175
#: en/live-build.7:173
msgid "execute local hooks in binary"
msgstr ""
#. type: IP
#: en/live-build.7:175
#: en/live-build.7:173
#, no-wrap
msgid "B<lb_binary_local-includes>(1)"
msgstr ""
#. type: IP
#: en/live-build.7:177
#: en/live-build.7:175
#, no-wrap
msgid "B<lb_binary_local-packagelists>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:179
#: en/live-build.7:177
msgid "install local package lists into binary"
msgstr ""
#. type: IP
#: en/live-build.7:179
#: en/live-build.7:177
#, no-wrap
msgid "B<lb_binary_manifest>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:181
#: en/live-build.7:179
msgid "create manifest"
msgstr ""
#. type: IP
#: en/live-build.7:181
#: en/live-build.7:179
#, no-wrap
msgid "B<lb_binary_checksums>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:183
#: en/live-build.7:181
msgid "create binary checksums (md5, sha1, and/or sha256)"
msgstr ""
#. type: IP
#: en/live-build.7:183
#: en/live-build.7:181
#, no-wrap
msgid "B<lb_binary_memtest>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:185
#: en/live-build.7:183
msgid "installs a memtest into binary"
msgstr ""
#. type: IP
#: en/live-build.7:185
#: en/live-build.7:183
#, no-wrap
msgid "B<lb_binary_net>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:187
#: en/live-build.7:185
msgid "build netboot binary image"
msgstr ""
#. type: IP
#: en/live-build.7:187
#: en/live-build.7:185
#, no-wrap
msgid "B<lb_binary_rootfs>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:189
#: en/live-build.7:187
msgid "build rootfs image"
msgstr ""
#. type: IP
#: en/live-build.7:189
#: en/live-build.7:187
#, no-wrap
msgid "B<lb_binary_silo>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:191
#: en/live-build.7:189
msgid "installs silo into binary"
msgstr ""
#. type: IP
#: en/live-build.7:191
#: en/live-build.7:189
#, no-wrap
msgid "B<lb_binary_syslinux>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:193
#: en/live-build.7:191
msgid "installs syslinux into binary"
msgstr ""
#. type: IP
#: en/live-build.7:193
#: en/live-build.7:191
#, no-wrap
msgid "B<lb_binary_tar>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:195
#: en/live-build.7:193
msgid "build harddisk binary image"
msgstr ""
#. type: IP
#: en/live-build.7:195
#: en/live-build.7:193
#, no-wrap
msgid "B<lb_binary_usb>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:197
#: en/live-build.7:195
msgid "build binary usb-hdd image"
msgstr ""
#. type: IP
#: en/live-build.7:197
#: en/live-build.7:195
#, no-wrap
msgid "B<lb_binary_virtual-hdd>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:199
#: en/live-build.7:197
msgid "build binary virtual-hdd image"
msgstr ""
#. type: IP
#: en/live-build.7:199
#: en/live-build.7:197
#, no-wrap
msgid "B<lb_binary_win32-loader>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:201
#: en/live-build.7:199
msgid "installs win32-loader into binary"
msgstr ""
#. type: IP
#: en/live-build.7:201
#: en/live-build.7:199
#, no-wrap
msgid "B<lb_binary_yaboot>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:203
#: en/live-build.7:201
msgid "installs yaboot into binary"
msgstr ""
#. type: SS
#: en/live-build.7:203
#: en/live-build.7:201
#, no-wrap
msgid "Source commands"
msgstr ""
#. type: IP
#: en/live-build.7:204
#: en/live-build.7:202
#, no-wrap
msgid "B<lb_source_debian>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:206
#: en/live-build.7:204
msgid "download sources"
msgstr ""
#. type: IP
#: en/live-build.7:206
#: en/live-build.7:204
#, no-wrap
msgid "B<lb_source_debian-live>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:208
#: en/live-build.7:206
msgid "copy debian-live config into source"
msgstr ""
#. type: IP
#: en/live-build.7:208
#: en/live-build.7:206
#, no-wrap
msgid "B<lb_source_disk>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:210
#: en/live-build.7:208
msgid "install disk information into source"
msgstr ""
#. type: IP
#: en/live-build.7:210
#: en/live-build.7:208
#, no-wrap
msgid "B<lb_source_iso>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:212
#: en/live-build.7:210
msgid "build iso source image"
msgstr ""
#. type: IP
#: en/live-build.7:212
#: en/live-build.7:210
#, no-wrap
msgid "B<lb_source_checksums>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:214
#: en/live-build.7:212
msgid "create source checksums (md5, sha1, and/or sha256)"
msgstr ""
#. type: IP
#: en/live-build.7:214
#: en/live-build.7:212
#, no-wrap
msgid "B<lb_source_net>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:216
#: en/live-build.7:214
msgid "build source net image"
msgstr ""
#. type: IP
#: en/live-build.7:216
#: en/live-build.7:214
#, no-wrap
msgid "B<lb_source_tar>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:218
#: en/live-build.7:216
msgid "build source tarball"
msgstr ""
#. type: IP
#: en/live-build.7:218
#: en/live-build.7:216
#, no-wrap
msgid "B<lb_source_usb>(1)"
msgstr ""
#. type: Plain text
#: en/live-build.7:220
#: en/live-build.7:218
msgid "build source usb-hdd image"
msgstr ""
#. type: IP
#: en/live-build.7:220
#: en/live-build.7:218
#, no-wrap
msgid "B<lb_source_virtual-hdd>(1)"
msgstr ""
#. FIXME
#. type: Plain text
#: en/live-build.7:223
#: en/live-build.7:221
msgid "build source virtual-hdd image"
msgstr ""
#. type: SH
#: en/live-build.7:224
#: en/live-build.7:222
#, no-wrap
msgid "CONFIG FILES"
msgstr ""
#. FIXME
#. type: Plain text
#: en/live-build.7:227
#: en/live-build.7:225
msgid ""
"Many live-build commands make use of files in the I<config/> directory to "
"control what they do. Besides the common I<config/common>, which is used by "
@ -1801,7 +1790,7 @@ msgid ""
msgstr ""
#. type: Plain text
#: en/live-build.7:229
#: en/live-build.7:227
msgid ""
"For example, lb_bootstrap_debootstrap uses files named config/bootstrap and "
"config/bootstrap_debootstrap to read the options it will use. See the man "
@ -1812,7 +1801,7 @@ msgid ""
msgstr ""
#. type: Plain text
#: en/live-build.7:231
#: en/live-build.7:229
msgid ""
"Note that live-build will respect environment variables which are present in "
"the context of the shell it is running. If variables can be read from config "
@ -1823,7 +1812,7 @@ msgid ""
msgstr ""
#. type: Plain text
#: en/live-build.7:233
#: en/live-build.7:231
msgid ""
"In some rare cases, you may want to have different versions of these files "
"for different architectures or distributions. If files named config/stage."
@ -1836,7 +1825,7 @@ msgstr ""
#. FIXME
#. type: Plain text
#: en/live-build.7:236
#: en/live-build.7:234
msgid ""
"All config files are shell scripts which are sourced by a live-build "
"program. That means they have to follow the normal shell syntax. You can "
@ -1844,6 +1833,6 @@ msgid ""
msgstr ""
#. type: Plain text
#: en/live-build.7:244
#: en/live-build.7:242
msgid "I<live-initramfs>(7)"
msgstr ""

View File

@ -56,7 +56,6 @@ fi
# Building root filesystem
lb binary_rootfs ${*}
lb binary_manifest ${*}
lb binary_encryption ${*}
# Prepare images
lb binary_local-packagelists ${*}

View File

@ -1,147 +0,0 @@
#!/bin/sh
## live-build(7) - System Build Scripts
## Copyright (C) 2006-2010 Daniel Baumann <daniel@debian.org>
##
## 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.
set -e
# Including common functions
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
# Setting static variables
DESCRIPTION="$(Echo 'encrypts rootfs')"
HELP=""
USAGE="${PROGRAM} [--force]"
Arguments "${@}"
# Reading configuration files
Read_conffiles config/all config/common config/bootstrap config/chroot config/binary config/source
Set_defaults
if [ "${LB_BINARY_IMAGES}" = "virtual-hdd" ]
then
exit 0
fi
case "${LB_ENCRYPTION}" in
aes128|aes192|aes256)
;;
""|false)
exit 0
;;
*)
Echo_error "Encryption type %s not supported." "${LB_ENCRYPTION}"
exit 1
;;
esac
case "${LB_CHROOT_FILESYSTEM}" in
ext2|squashfs)
;;
*)
Echo_error "Encryption not yet supported on %s filesystems." "${LB_CHROOT_FILESYSTEM}"
exit 1
;;
esac
Echo_message "Begin encrypting root filesystem image..."
# Requiring stage file
Require_stagefile .stage/config .stage/bootstrap .stage/binary_rootfs
# Checking stage file
Check_stagefile .stage/binary_encryption
# Checking lock file
Check_lockfile .lock
# Creating lock file
Create_lockfile .lock
case "${LB_INITRAMFS}" in
casper)
INITFS="casper"
;;
live-initramfs|live-boot)
INITFS="live"
;;
esac
# Checking depends
Check_package chroot/usr/bin/aespipe aespipe
# Restoring cache
Restore_cache cache/packages_binary
# Installing depends
Install_package
Echo_message "Encrypting binary/%s/filesystem.%s with %s..." "${INITFS}" "${LB_CHROOT_FILESYSTEM}" "${LB_ENCRYPTION}"
if [ "${LB_BUILD_WITH_CHROOT}" = "true" ]
then
# Moving image
mv binary/${INITFS}/filesystem.${LB_CHROOT_FILESYSTEM} chroot
fi
while true
do
echo
echo " **************************************"
Echo " ** Configuring encrypted filesystem **"
echo " **************************************"
Echo " (Passwords must be at least 20 characters long)"
echo
case "${LB_BUILD_WITH_CHROOT}" in
true)
if Chroot chroot aespipe -e ${LB_ENCRYPTION} -T \
< chroot/filesystem.${LB_CHROOT_FILESYSTEM} \
> chroot/filesystem.${LB_CHROOT_FILESYSTEM}.tmp
then
mv chroot/filesystem.${LB_CHROOT_FILESYSTEM}.tmp binary/${INITFS}/filesystem.${LB_CHROOT_FILESYSTEM}
break
fi
;;
false)
if aespipe -e ${LB_ENCRYPTION} -T \
< binary/${INITFS}/filesystem.${LB_CHROOT_FILESYSTEM} \
> binary/${INITFS}/filesystem.${LB_CHROOT_FILESYSTEM}.tmp
then
mv binary/${INITFS}/filesystem.${LB_CHROOT_FILESYSTEM}.tmp binary/${INITFS}/filesystem.${LB_CHROOT_FILESYSTEM}
break
fi
;;
esac
printf "\nThere was an error configuring encryption ... Retry? [Y/n] "
read ANSWER
if [ "$(echo "${ANSWER}" | cut -b1 | tr A-Z a-z)" = "n" ]
then
unset ANSWER
break
fi
done
# Cleanup temporary filesystems
rm -f chroot/filesystem.${LB_CHROOT_FILESYSTEM}
rm -f chroot/filesystem.${LB_CHROOT_FILESYSTEM}.tmp
rm -f binary/${INITFS}/filesystem.${LB_CHROOT_FILESYSTEM}.tmp
# Saving cache
Save_cache cache/packages_binary
# Removing depends
Remove_package
# Creating stage file
Create_stagefile .stage/binary_encryption

View File

@ -156,14 +156,6 @@ Check_multiarchitectures
mkdir -p "${DESTDIR_LIVE}"
# Setting boot parameters
case "${LB_ENCRYPTION}" in
""|false)
;;
*)
LB_BOOTAPPEND_LIVE="${LB_BOOTAPPEND_LIVE} encryption=${LB_ENCRYPTION}"
esac
if [ -n "${LB_USERNAME}" ]
then
case "${LB_INITRAMFS}" in

View File

@ -130,14 +130,6 @@ Check_multiarchitectures
mkdir -p "${DESTDIR_LIVE}"
# Setting boot parameters
case "${LB_ENCRYPTION}" in
""|false)
;;
*)
LB_BOOTAPPEND_LIVE="${LB_BOOTAPPEND_LIVE} encryption=${LB_ENCRYPTION}"
esac
if [ -n "${LB_USERNAME}" ]
then
case "${LB_INITRAMFS}" in

View File

@ -123,14 +123,6 @@ esac
mkdir -p "${DESTDIR_LIVE}"
# Setting boot parameters
case "${LB_ENCRYPTION}" in
""|false)
;;
*)
LB_BOOTAPPEND_LIVE="${LB_BOOTAPPEND_LIVE} encryption=${LB_ENCRYPTION}"
;;
esac
if [ -n "${LB_USERNAME}" ]
then
case "${LB_INITRAMFS}" in

View File

@ -162,14 +162,6 @@ Check_multiarchitectures
mkdir -p "${DESTDIR_LIVE}"
# Setting boot parameters
case "${LB_ENCRYPTION}" in
""|false)
;;
*)
LB_BOOTAPPEND_LIVE="${LB_BOOTAPPEND_LIVE} encryption=${LB_ENCRYPTION}"
;;
esac
if [ -n "${LB_USERNAME}" ]
then
case "${LB_INITRAMFS}" in

View File

@ -68,7 +68,6 @@ USAGE="${PROGRAM} [--apt apt|aptitude]\n\
\t [--debug]\n\
\t [-d|--distribution CODENAME]\n\
\t [--dump]\n\
\t [-e|--encryption false|aes128|aes192|aes256]\n\
\t [--fdisk fdisk|fdisk.dist]\n\
\t [--force]\n\
\t [--grub-splash FILE]\n\
@ -147,7 +146,7 @@ Local_arguments ()
packages:,package-lists:,tasks:,security:,volatile:,backports:,sysvinit:,binary-filesystem:,binary-images:,
apt-indices:,bootappend-install:,bootappend-live:,bootloader:,checksums:,compression:,build-with-chroot:,
debian-installer:,debian-installer-distribution:,debian-installer-preseedfile:,debian-installer-gui:,
encryption:,grub-splash:,hostname:,isohybrid-options:,iso-application:,iso-preparer:,iso-publisher:,
grub-splash:,hostname:,isohybrid-options:,iso-application:,iso-preparer:,iso-publisher:,
iso-volume:,jffs2-eraseblock:,memtest:,net-root-filesystem:,net-root-mountoptions:,
net-root-path:,net-root-server:,net-cow-filesystem:,net-cow-mountoptions:,net-cow-path:,
net-cow-server:,net-tarball:,syslinux-theme:,
@ -586,11 +585,6 @@ Local_arguments ()
shift 2
;;
-e|--encryption)
LB_ENCRYPTION="${2}"
shift 2
;;
--grub-splash)
LB_GRUB_SPLASH="${2}"
shift 2
@ -1174,10 +1168,6 @@ LB_DEBIAN_INSTALLER_PRESEEDFILE="${LB_DEBIAN_INSTALLER_PRESEEDFILE}"
# (Default: ${LB_DEBIAN_INSTALLER_GUI})
LB_DEBIAN_INSTALLER_GUI="${LB_DEBIAN_INSTALLER_GUI}"
# \$LB_ENCRYPTION: set encryption
# (Default: ${LB_ENCRYPTION})
LB_ENCRYPTION="${LB_ENCRYPTION}"
# \$LB_GRUB_SPLASH: set custom grub splash
# (Default: empty)
LB_GRUB_SPLASH="${LB_GRUB_SPLASH}"

View File

@ -47,7 +47,6 @@
<tr><td>--bootloader: </td><td>LB_BOOTLOADER</td></tr>
<tr><td>--debian-installer: </td><td>LB_DEBIAN_INSTALLER</td></tr>
<tr><td>--bootappend-install: </td><td>LB_BOOTAPPEND_INSTALL</td></tr>
<tr><td>--encryption: </td><td>LB_ENCRYPTION</td></tr>
<tr><td>--iso-application: </td><td>LB_ISO_APPLICATION</td></tr>
<tr><td>--iso-preparer: </td><td>LB_ISO_PREPARER</td></tr>
<tr><td>--iso-publisher: </td><td>LB_ISO_PUBLISHER</td></tr>

View File

@ -234,17 +234,6 @@
<td><label for="Bootappend_Install">--bootappend-install:</label> </td>
<td><input id="Bootappend_Install" name="bootappend_install" maxlength="256" size="50" type="text" value="" /></td>
</tr>
<tr>
<td><label for="Encryption">--encryption:</label> </td>
<td>
<select id="Encryption" name="encryption" size="1">
<option selected value="">none</option>
<option value="aes128">aes128</option>
<option value="aes192">aes192</option>
<option value="aes256">aes256</option>
</select>
</td>
</tr>
<!-- LIVE_GRUB_SPLASH -->
<tr>
<td><label for="Iso_Application">--iso-application:</label> </td>

View File

@ -47,7 +47,6 @@
<tr><td>--bootloader: </td><td>LB_BOOTLOADER</td></tr>
<tr><td>--debian-installer: </td><td>LB_DEBIAN_INSTALLER</td></tr>
<tr><td>--bootappend-install: </td><td>LB_BOOTAPPEND_INSTALL</td></tr>
<tr><td>--encryption: </td><td>LB_ENCRYPTION</td></tr>
<tr><td>--iso-application: </td><td>LB_ISO_APPLICATION</td></tr>
<tr><td>--iso-preparer: </td><td>LB_ISO_PREPARER</td></tr>
<tr><td>--iso-publisher: </td><td>LB_ISO_PUBLISHER</td></tr>

View File

@ -233,17 +233,6 @@
<td><label for="Bootappend_Install">--bootappend-install:</label> </td>
<td><input id="Bootappend_Install" name="bootappend_install" maxlength="256" size="50" type="text" value="" /></td>
</tr>
<tr>
<td><label for="Encryption">--encryption:</label> </td>
<td>
<select id="Encryption" name="encryption" size="1">
<option selected value="">none</option>
<option value="aes128">aes128</option>
<option value="aes192">aes192</option>
<option value="aes256">aes256</option>
</select>
</td>
</tr>
<!-- LIVE_GRUB_SPLASH -->
<tr>
<td><label for="Iso_Application">--iso-application:</label> </td>