Fixing up inclusion of functions while allowing local usage of live-build with different file layouts.
This commit is contained in:
parent
6c0ddb7d6d
commit
8473b925fd
11
bin/lb
11
bin/lb
|
@ -11,12 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
if [ -e "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh ]
|
||||
then
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
else
|
||||
. /usr/lib/live/build.sh
|
||||
fi
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'utility to build Debian Live systems')"
|
||||
|
@ -58,9 +53,9 @@ case "${1}" in
|
|||
fi
|
||||
done
|
||||
|
||||
if [ -x "${LB_BASE}/scripts/build/${COMMAND}" ]
|
||||
if [ -x "${LIVE_BUILD}/scripts/build/${COMMAND}" ]
|
||||
then
|
||||
SCRIPT="${LB_BASE}/scripts/build/${COMMAND}"
|
||||
SCRIPT="${LIVE_BUILD}/scripts/build/${COMMAND}"
|
||||
elif [ -x /usr/lib/live/build/${COMMAND} ]
|
||||
then
|
||||
SCRIPT=/usr/lib/live/build/"${COMMAND}"
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
if [ -x "$(which man 2>/dev/null)" ]
|
||||
then
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Reading defaults
|
||||
if [ -r /etc/default/live-build-cgi ]
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Reading defaults
|
||||
if [ -r /etc/default/live-build-cgi ]
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
|
||||
PROGRAM="live-build"
|
||||
VERSION="$(cat ${LB_BASE}/VERSION)"
|
||||
VERSION="$(if [ -e ${LIVE_BUILD}/VERSION ]; then cat ${LIVE_BUILD}/VERSION; else cat /usr/share/live/build/VERSION; fi)"
|
||||
CONFIG_VERSION="$(echo ${VERSION} | awk -F- '{ print $1 }')"
|
||||
|
||||
PATH="${PWD}/local/scripts:${PATH}"
|
||||
|
|
|
@ -14,12 +14,9 @@ Set_defaults ()
|
|||
|
||||
if [ -e local/live-build ]
|
||||
then
|
||||
LB_BASE="${LB_BASE:-${PWD}/local/live-build}"
|
||||
LIVE_BUILD="${LIVE_BUILD:-${PWD}/local/live-build}"
|
||||
PATH="${PWD}/local/live-build/scripts/build:${PATH}"
|
||||
export LB_BASE PATH
|
||||
else
|
||||
LB_BASE="${LB_BASE:-/usr/share/live/build}"
|
||||
export LB_BASE
|
||||
export LIVE_BUILD PATH
|
||||
fi
|
||||
|
||||
# Setting system type
|
||||
|
@ -322,10 +319,20 @@ Set_defaults ()
|
|||
esac
|
||||
|
||||
# Setting includes
|
||||
LB_INCLUDES="${LB_INCLUDES:-${LB_BASE}/includes}"
|
||||
if [ -n "${LIVE_BUID}" ]
|
||||
then
|
||||
LB_INCLUDES="${LB_INCLUDES:-${LIVE_BUILD}/includes}"
|
||||
else
|
||||
LB_INCLUDES="${LB_INCLUDES:-/usr/share/live/build/includes}"
|
||||
fi
|
||||
|
||||
# Setting templates
|
||||
LB_TEMPLATES="${LB_TEMPLATES:-${LB_BASE}/templates}"
|
||||
if [ -n "${LIVE_BUID}" ]
|
||||
then
|
||||
LB_TEMPLATES="${LB_TEMPLATES:-${LIVE_BUILD}/templates}"
|
||||
else
|
||||
LB_TEMPLATES="${LB_TEMPLATES:-/usr/share/live/build/templates}"
|
||||
fi
|
||||
|
||||
# Setting live build options
|
||||
_BREAKPOINTS="${_BREAKPOINTS:-false}"
|
||||
|
|
|
@ -22,7 +22,7 @@ Expand_packagelist ()
|
|||
_LB_NESTED=0
|
||||
_LB_ENABLED=1
|
||||
|
||||
for _LB_SEARCH_PATH in ${@} "${LB_BASE:-/usr/share/live/build}/package-lists"
|
||||
for _LB_SEARCH_PATH in ${@} "${LIVE_BUILD}/package-lists" /usr/share/live/build/package-lists
|
||||
do
|
||||
if [ -e "${_LB_SEARCH_PATH}/${_LB_LIST_NAME}" ]
|
||||
then
|
||||
|
|
|
@ -1,46 +0,0 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb local\fP \- wrapper for local live\-build programs
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlb local\fP [\fIlive\-build\ options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlb local\fP is a high\-level command (porcelain) of \fIlive\-build\fP(7), the
|
||||
Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlb local\fP has no specific options but understands all generic live\-build
|
||||
options. See \fIlive\-build\fP(7) for a complete list of all generic live\-build
|
||||
options.
|
||||
|
||||
.SH FILES
|
||||
.IP \fBnone\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-build\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-build.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-build and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by submitting a bugreport for the live\-build package in
|
||||
the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or by
|
||||
writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-build was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -1,32 +0,0 @@
|
|||
.TH LIVE\-BUILD 1 2012\-07\-19 3.0~a53-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb local\fR \- wrapper for local live\-build programs
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlb local\fR [\fIlive\-build\ options\fR]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlb local\fR is a high\-level command (porcelain) of \fIlive\-build\fR(7), the Debian Live tool suite.
|
||||
.PP
|
||||
.\" FIXME
|
||||
|
||||
.SH OPTIONS
|
||||
\fBlb local\fR has no specific options but understands all generic live\-build options. See \fIlive\-build\fR(7) for a complete list of all generic live\-build options.
|
||||
|
||||
.SH FILES
|
||||
.IP "\fBnone\fR" 4
|
||||
|
||||
.SH SEE ALSO
|
||||
\fIlive\-build\fR(7)
|
||||
.PP
|
||||
This program is a part of live\-build.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-build and the Debian Live project can be found on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by submitting a bugreport for the live\-build package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@lists.debian.org\fR>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-build was written by Daniel Baumann <\fIdaniel@debian.org\fR> for the Debian project.
|
|
@ -1,651 +0,0 @@
|
|||
# German translations for live-build package
|
||||
# Copyright (C) 2012 Free Software Foundation, Inc.
|
||||
# This file is distributed under the same license as the live-build package.
|
||||
# Automatically generated, 2012.
|
||||
#
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: live-build VERSION\n"
|
||||
"POT-Creation-Date: 2012-07-19 04:15+0300\n"
|
||||
"PO-Revision-Date: 2012-02-04 21:39+0100\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
"Language: de\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=ASCII\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#. type: TH
|
||||
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
|
||||
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
|
||||
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
|
||||
#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
|
||||
#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
|
||||
#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
|
||||
#: en/lb_binary_memtest.1:1 en/lb_binary_netboot.1:1 en/lb_binary_rootfs.1:1
|
||||
#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
|
||||
#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
|
||||
#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
|
||||
#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
|
||||
#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
|
||||
#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
|
||||
#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
|
||||
#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
|
||||
#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
|
||||
#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
|
||||
#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
|
||||
#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
|
||||
#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
|
||||
#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
|
||||
#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
|
||||
#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
|
||||
#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
|
||||
#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
|
||||
#: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
|
||||
#: en/lb_testroot.1:1 en/live-build.7:1
|
||||
#, no-wrap
|
||||
msgid "LIVE-BUILD"
|
||||
msgstr ""
|
||||
|
||||
#. type: TH
|
||||
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
|
||||
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
|
||||
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
|
||||
#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
|
||||
#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
|
||||
#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
|
||||
#: en/lb_binary_memtest.1:1 en/lb_binary_netboot.1:1 en/lb_binary_rootfs.1:1
|
||||
#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
|
||||
#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
|
||||
#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
|
||||
#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
|
||||
#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
|
||||
#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
|
||||
#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
|
||||
#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
|
||||
#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
|
||||
#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
|
||||
#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
|
||||
#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
|
||||
#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
|
||||
#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
|
||||
#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
|
||||
#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
|
||||
#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
|
||||
#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
|
||||
#: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
|
||||
#: en/lb_testroot.1:1 en/live-build.7:1
|
||||
#, no-wrap
|
||||
msgid "2012-07-19"
|
||||
msgstr ""
|
||||
|
||||
#. type: TH
|
||||
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
|
||||
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
|
||||
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
|
||||
#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
|
||||
#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
|
||||
#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
|
||||
#: en/lb_binary_memtest.1:1 en/lb_binary_netboot.1:1 en/lb_binary_rootfs.1:1
|
||||
#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
|
||||
#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
|
||||
#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
|
||||
#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
|
||||
#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
|
||||
#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
|
||||
#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
|
||||
#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
|
||||
#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
|
||||
#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
|
||||
#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
|
||||
#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
|
||||
#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
|
||||
#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
|
||||
#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
|
||||
#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
|
||||
#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
|
||||
#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
|
||||
#: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
|
||||
#: en/lb_testroot.1:1 en/live-build.7:1
|
||||
#, no-wrap
|
||||
msgid "3.0~a53-1"
|
||||
msgstr ""
|
||||
|
||||
#. type: TH
|
||||
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
|
||||
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
|
||||
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
|
||||
#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
|
||||
#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
|
||||
#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
|
||||
#: en/lb_binary_memtest.1:1 en/lb_binary_netboot.1:1 en/lb_binary_rootfs.1:1
|
||||
#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
|
||||
#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
|
||||
#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
|
||||
#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
|
||||
#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
|
||||
#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
|
||||
#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
|
||||
#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
|
||||
#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
|
||||
#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
|
||||
#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
|
||||
#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
|
||||
#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
|
||||
#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
|
||||
#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
|
||||
#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
|
||||
#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
|
||||
#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
|
||||
#: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
|
||||
#: en/lb_testroot.1:1 en/live-build.7:1
|
||||
#, no-wrap
|
||||
msgid "Debian Live Project"
|
||||
msgstr ""
|
||||
|
||||
#. type: SH
|
||||
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
|
||||
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
|
||||
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
|
||||
#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
|
||||
#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
|
||||
#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
|
||||
#: en/lb_binary_memtest.1:3 en/lb_binary_netboot.1:3 en/lb_binary_rootfs.1:3
|
||||
#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
|
||||
#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
|
||||
#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
|
||||
#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
|
||||
#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
|
||||
#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
|
||||
#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
|
||||
#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
|
||||
#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
|
||||
#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
|
||||
#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
|
||||
#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
|
||||
#: en/lb_chroot_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
|
||||
#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
|
||||
#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
|
||||
#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
|
||||
#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
|
||||
#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
|
||||
#: en/lb_source_iso.1:3 en/lb_source_tar.1:3 en/lb_source_virtual-hdd.1:3
|
||||
#: en/lb_testroot.1:3 en/live-build.7:3
|
||||
#, no-wrap
|
||||
msgid "NAME"
|
||||
msgstr ""
|
||||
|
||||
#. type: SH
|
||||
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
|
||||
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
|
||||
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
|
||||
#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
|
||||
#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
|
||||
#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
|
||||
#: en/lb_binary_memtest.1:6 en/lb_binary_netboot.1:6 en/lb_binary_rootfs.1:6
|
||||
#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
|
||||
#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
|
||||
#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
|
||||
#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
|
||||
#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
|
||||
#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
|
||||
#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
|
||||
#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
|
||||
#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
|
||||
#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
|
||||
#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
|
||||
#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
|
||||
#: en/lb_chroot_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
|
||||
#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
|
||||
#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
|
||||
#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
|
||||
#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
|
||||
#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
|
||||
#: en/lb_source_iso.1:6 en/lb_source_tar.1:6 en/lb_source_virtual-hdd.1:6
|
||||
#: en/lb_testroot.1:6 en/live-build.7:6
|
||||
#, no-wrap
|
||||
msgid "SYNOPSIS"
|
||||
msgstr ""
|
||||
|
||||
#. type: SH
|
||||
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
|
||||
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
|
||||
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
|
||||
#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
|
||||
#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
|
||||
#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
|
||||
#: en/lb_binary_memtest.1:9 en/lb_binary_netboot.1:9 en/lb_binary_rootfs.1:9
|
||||
#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
|
||||
#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
|
||||
#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
|
||||
#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
|
||||
#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
|
||||
#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
|
||||
#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
|
||||
#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
|
||||
#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
|
||||
#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
|
||||
#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
|
||||
#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
|
||||
#: en/lb_chroot_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
|
||||
#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
|
||||
#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
|
||||
#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
|
||||
#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
|
||||
#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
|
||||
#: en/lb_source_iso.1:9 en/lb_source_tar.1:9 en/lb_source_virtual-hdd.1:9
|
||||
#: en/lb_testroot.1:9 en/live-build.7:11
|
||||
#, no-wrap
|
||||
msgid "DESCRIPTION"
|
||||
msgstr ""
|
||||
|
||||
#. type: SH
|
||||
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
|
||||
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
|
||||
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
|
||||
#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
|
||||
#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
|
||||
#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
|
||||
#: en/lb_binary_memtest.1:14 en/lb_binary_netboot.1:14
|
||||
#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
|
||||
#: en/lb_binary_tar.1:14 en/lb_binary_virtual-hdd.1:14
|
||||
#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
|
||||
#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
|
||||
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
|
||||
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
|
||||
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
|
||||
#: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
|
||||
#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
|
||||
#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
|
||||
#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
|
||||
#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
|
||||
#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
|
||||
#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
|
||||
#: en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
|
||||
#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
|
||||
#: en/lb_chroot_task-lists.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
|
||||
#: en/lb_config.1:252 en/lb_local.1:14 en/lb_source.1:14
|
||||
#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
|
||||
#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_hdd.1:14
|
||||
#: en/lb_source_iso.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
|
||||
#: en/lb_testroot.1:18 en/live-build.7:20
|
||||
#, no-wrap
|
||||
msgid "OPTIONS"
|
||||
msgstr ""
|
||||
|
||||
#. type: SH
|
||||
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
|
||||
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
|
||||
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
|
||||
#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
|
||||
#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
|
||||
#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
|
||||
#: en/lb_binary_memtest.1:17 en/lb_binary_netboot.1:17
|
||||
#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
|
||||
#: en/lb_binary_tar.1:17 en/lb_binary_virtual-hdd.1:17
|
||||
#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
|
||||
#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
|
||||
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
|
||||
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
|
||||
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
|
||||
#: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
|
||||
#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
|
||||
#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
|
||||
#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
|
||||
#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
|
||||
#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
|
||||
#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
|
||||
#: en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
|
||||
#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
|
||||
#: en/lb_chroot_task-lists.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
|
||||
#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
|
||||
#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
|
||||
#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_hdd.1:17
|
||||
#: en/lb_source_iso.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
|
||||
#: en/lb_testroot.1:21 en/live-build.7:225
|
||||
#, no-wrap
|
||||
msgid "FILES"
|
||||
msgstr ""
|
||||
|
||||
#. type: IP
|
||||
#: en/lb.1:20 en/lb_binary.1:18 en/lb_bootstrap.1:18 en/lb_chroot.1:18
|
||||
#: en/lb_local.1:18 en/lb_source.1:18 en/lb_testroot.1:22
|
||||
#, no-wrap
|
||||
msgid "B<none>"
|
||||
msgstr ""
|
||||
|
||||
#. type: SH
|
||||
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
|
||||
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
|
||||
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
|
||||
#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
|
||||
#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
|
||||
#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
|
||||
#: en/lb_binary_memtest.1:21 en/lb_binary_netboot.1:21
|
||||
#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
|
||||
#: en/lb_binary_tar.1:21 en/lb_binary_virtual-hdd.1:21
|
||||
#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
|
||||
#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
|
||||
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
|
||||
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
|
||||
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
|
||||
#: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
|
||||
#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
|
||||
#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
|
||||
#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
|
||||
#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
|
||||
#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
|
||||
#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
|
||||
#: en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
|
||||
#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
|
||||
#: en/lb_chroot_task-lists.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
|
||||
#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
|
||||
#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
|
||||
#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_hdd.1:21
|
||||
#: en/lb_source_iso.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
|
||||
#: en/lb_testroot.1:24 en/live-build.7:229
|
||||
#, no-wrap
|
||||
msgid "SEE ALSO"
|
||||
msgstr ""
|
||||
|
||||
#. type: Plain text
|
||||
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
|
||||
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
|
||||
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
|
||||
#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
|
||||
#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
|
||||
#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
|
||||
#: en/lb_binary_memtest.1:23 en/lb_binary_netboot.1:23
|
||||
#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
|
||||
#: en/lb_binary_tar.1:23 en/lb_binary_virtual-hdd.1:23
|
||||
#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
|
||||
#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
|
||||
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
|
||||
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
|
||||
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
|
||||
#: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
|
||||
#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
|
||||
#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
|
||||
#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
|
||||
#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
|
||||
#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
|
||||
#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
|
||||
#: en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
|
||||
#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
|
||||
#: en/lb_chroot_task-lists.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
|
||||
#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
|
||||
#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
|
||||
#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_hdd.1:23
|
||||
#: en/lb_source_iso.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
|
||||
#: en/lb_testroot.1:26
|
||||
msgid "I<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_grub.1:25 en/lb_binary_grub2.1:25
|
||||
#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
|
||||
#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
|
||||
#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
|
||||
#: en/lb_binary_memtest.1:25 en/lb_binary_netboot.1:25
|
||||
#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
|
||||
#: en/lb_binary_tar.1:25 en/lb_binary_virtual-hdd.1:25
|
||||
#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
|
||||
#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
|
||||
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
|
||||
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
|
||||
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
|
||||
#: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
|
||||
#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
|
||||
#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
|
||||
#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
|
||||
#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
|
||||
#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
|
||||
#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
|
||||
#: en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
|
||||
#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
|
||||
#: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
|
||||
#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
|
||||
#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
|
||||
#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_hdd.1:25
|
||||
#: en/lb_source_iso.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
|
||||
#: en/lb_testroot.1:28 en/live-build.7:235
|
||||
msgid "This program is a part of live-build."
|
||||
msgstr ""
|
||||
|
||||
#. type: SH
|
||||
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
|
||||
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
|
||||
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
|
||||
#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
|
||||
#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
|
||||
#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
|
||||
#: en/lb_binary_memtest.1:26 en/lb_binary_netboot.1:26
|
||||
#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
|
||||
#: en/lb_binary_tar.1:26 en/lb_binary_virtual-hdd.1:26
|
||||
#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
|
||||
#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
|
||||
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
|
||||
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
|
||||
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
|
||||
#: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
|
||||
#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
|
||||
#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
|
||||
#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
|
||||
#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
|
||||
#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
|
||||
#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
|
||||
#: en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
|
||||
#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
|
||||
#: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
|
||||
#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
|
||||
#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
|
||||
#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_hdd.1:26
|
||||
#: en/lb_source_iso.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
|
||||
#: en/lb_testroot.1:29 en/live-build.7:236
|
||||
#, no-wrap
|
||||
msgid "HOMEPAGE"
|
||||
msgstr ""
|
||||
|
||||
#. type: Plain text
|
||||
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
|
||||
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
|
||||
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
|
||||
#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
|
||||
#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
|
||||
#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
|
||||
#: en/lb_binary_memtest.1:28 en/lb_binary_netboot.1:28
|
||||
#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
|
||||
#: en/lb_binary_tar.1:28 en/lb_binary_virtual-hdd.1:28
|
||||
#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
|
||||
#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
|
||||
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
|
||||
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
|
||||
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
|
||||
#: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
|
||||
#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
|
||||
#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
|
||||
#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
|
||||
#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
|
||||
#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
|
||||
#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
|
||||
#: en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
|
||||
#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
|
||||
#: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
|
||||
#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
|
||||
#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
|
||||
#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_hdd.1:28
|
||||
#: en/lb_source_iso.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
|
||||
#: en/lb_testroot.1:31 en/live-build.7:238
|
||||
msgid ""
|
||||
"More information about live-build and the Debian Live project can be found "
|
||||
"on the homepage at 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_grub.1:29 en/lb_binary_grub2.1:29
|
||||
#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
|
||||
#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
|
||||
#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
|
||||
#: en/lb_binary_memtest.1:29 en/lb_binary_netboot.1:29
|
||||
#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
|
||||
#: en/lb_binary_tar.1:29 en/lb_binary_virtual-hdd.1:29
|
||||
#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
|
||||
#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
|
||||
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
|
||||
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
|
||||
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
|
||||
#: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
|
||||
#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
|
||||
#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
|
||||
#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
|
||||
#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
|
||||
#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
|
||||
#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
|
||||
#: en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
|
||||
#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
|
||||
#: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
|
||||
#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
|
||||
#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
|
||||
#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_hdd.1:29
|
||||
#: en/lb_source_iso.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
|
||||
#: en/lb_testroot.1:32 en/live-build.7:239
|
||||
#, no-wrap
|
||||
msgid "BUGS"
|
||||
msgstr ""
|
||||
|
||||
#. type: Plain text
|
||||
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
|
||||
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
|
||||
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
|
||||
#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
|
||||
#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
|
||||
#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
|
||||
#: en/lb_binary_memtest.1:31 en/lb_binary_netboot.1:31
|
||||
#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
|
||||
#: en/lb_binary_tar.1:31 en/lb_binary_virtual-hdd.1:31
|
||||
#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
|
||||
#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
|
||||
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
|
||||
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
|
||||
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
|
||||
#: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
|
||||
#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
|
||||
#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
|
||||
#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
|
||||
#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
|
||||
#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
|
||||
#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
|
||||
#: en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
|
||||
#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
|
||||
#: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
|
||||
#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
|
||||
#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
|
||||
#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_hdd.1:31
|
||||
#: en/lb_source_iso.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
|
||||
#: en/lb_testroot.1:34 en/live-build.7:241
|
||||
msgid ""
|
||||
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
||||
"the Debian Bug Tracking System at 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_grub.1:32 en/lb_binary_grub2.1:32
|
||||
#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
|
||||
#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
|
||||
#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
|
||||
#: en/lb_binary_memtest.1:32 en/lb_binary_netboot.1:32
|
||||
#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
|
||||
#: en/lb_binary_tar.1:32 en/lb_binary_virtual-hdd.1:32
|
||||
#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
|
||||
#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
|
||||
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
|
||||
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
|
||||
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
|
||||
#: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
|
||||
#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
|
||||
#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
|
||||
#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
|
||||
#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
|
||||
#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
|
||||
#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
|
||||
#: en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
|
||||
#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
|
||||
#: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
|
||||
#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
|
||||
#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
|
||||
#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_hdd.1:32
|
||||
#: en/lb_source_iso.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
|
||||
#: en/lb_testroot.1:35 en/live-build.7:242
|
||||
#, no-wrap
|
||||
msgid "AUTHOR"
|
||||
msgstr ""
|
||||
|
||||
#. type: Plain text
|
||||
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
|
||||
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
|
||||
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
|
||||
#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
|
||||
#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
|
||||
#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
|
||||
#: en/lb_binary_memtest.1:33 en/lb_binary_netboot.1:33
|
||||
#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
|
||||
#: en/lb_binary_tar.1:33 en/lb_binary_virtual-hdd.1:33
|
||||
#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
|
||||
#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
|
||||
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
|
||||
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
|
||||
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
|
||||
#: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
|
||||
#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
|
||||
#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
|
||||
#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
|
||||
#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
|
||||
#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
|
||||
#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
|
||||
#: en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
|
||||
#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
|
||||
#: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
|
||||
#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
|
||||
#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
|
||||
#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_hdd.1:33
|
||||
#: en/lb_source_iso.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
|
||||
#: en/lb_testroot.1:36 en/live-build.7:243
|
||||
msgid ""
|
||||
"live-build was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for "
|
||||
"the Debian project."
|
||||
msgstr ""
|
||||
|
||||
#. type: Plain text
|
||||
#: en/lb_local.1:5
|
||||
msgid "B<lb local> - wrapper for local live-build programs"
|
||||
msgstr ""
|
||||
|
||||
#. type: Plain text
|
||||
#: en/lb_local.1:8
|
||||
msgid "B<lb local> [I<live-build\\ options>]"
|
||||
msgstr ""
|
||||
|
||||
#. type: Plain text
|
||||
#: en/lb_local.1:11
|
||||
msgid ""
|
||||
"B<lb local> is a high-level command (porcelain) of I<live-build>(7), the "
|
||||
"Debian Live tool suite."
|
||||
msgstr ""
|
||||
|
||||
#. type: Plain text
|
||||
#: en/lb_local.1:16
|
||||
msgid ""
|
||||
"B<lb local> 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 ""
|
|
@ -58,7 +58,6 @@
|
|||
[type: man] en/lb_chroot_upstart.1 $lang:$lang/lb_chroot_upstart.$lang.1
|
||||
[type: man] en/lb_clean.1 $lang:$lang/lb_clean.$lang.1
|
||||
[type: man] en/lb_config.1 $lang:$lang/lb_config.$lang.1
|
||||
[type: man] en/lb_local.1 $lang:$lang/lb_local.$lang.1
|
||||
[type: man] en/lb_source.1 $lang:$lang/lb_source.$lang.1
|
||||
[type: man] en/lb_source_checksums.1 $lang:$lang/lb_source_checksums.$lang.1
|
||||
[type: man] en/lb_source_debian-live.1 $lang:$lang/lb_source_debian-live.$lang.1
|
||||
|
|
|
@ -1,651 +0,0 @@
|
|||
# SOME DESCRIPTIVE TITLE
|
||||
# Copyright (C) YEAR Free Software Foundation, Inc.
|
||||
# This file is distributed under the same license as the live-build package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: live-build VERSION\n"
|
||||
"POT-Creation-Date: 2012-07-19 04:15+0300\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <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_grub.1:1 en/lb_binary_grub2.1:1
|
||||
#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
|
||||
#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
|
||||
#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
|
||||
#: en/lb_binary_memtest.1:1 en/lb_binary_netboot.1:1 en/lb_binary_rootfs.1:1
|
||||
#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
|
||||
#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
|
||||
#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
|
||||
#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
|
||||
#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
|
||||
#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
|
||||
#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
|
||||
#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
|
||||
#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
|
||||
#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
|
||||
#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
|
||||
#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
|
||||
#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
|
||||
#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
|
||||
#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
|
||||
#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
|
||||
#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
|
||||
#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
|
||||
#: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
|
||||
#: en/lb_testroot.1:1 en/live-build.7:1
|
||||
#, no-wrap
|
||||
msgid "LIVE-BUILD"
|
||||
msgstr ""
|
||||
|
||||
#. type: TH
|
||||
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
|
||||
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
|
||||
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
|
||||
#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
|
||||
#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
|
||||
#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
|
||||
#: en/lb_binary_memtest.1:1 en/lb_binary_netboot.1:1 en/lb_binary_rootfs.1:1
|
||||
#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
|
||||
#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
|
||||
#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
|
||||
#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
|
||||
#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
|
||||
#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
|
||||
#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
|
||||
#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
|
||||
#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
|
||||
#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
|
||||
#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
|
||||
#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
|
||||
#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
|
||||
#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
|
||||
#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
|
||||
#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
|
||||
#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
|
||||
#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
|
||||
#: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
|
||||
#: en/lb_testroot.1:1 en/live-build.7:1
|
||||
#, no-wrap
|
||||
msgid "2012-07-19"
|
||||
msgstr ""
|
||||
|
||||
#. type: TH
|
||||
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
|
||||
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
|
||||
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
|
||||
#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
|
||||
#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
|
||||
#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
|
||||
#: en/lb_binary_memtest.1:1 en/lb_binary_netboot.1:1 en/lb_binary_rootfs.1:1
|
||||
#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
|
||||
#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
|
||||
#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
|
||||
#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
|
||||
#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
|
||||
#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
|
||||
#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
|
||||
#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
|
||||
#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
|
||||
#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
|
||||
#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
|
||||
#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
|
||||
#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
|
||||
#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
|
||||
#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
|
||||
#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
|
||||
#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
|
||||
#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
|
||||
#: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
|
||||
#: en/lb_testroot.1:1 en/live-build.7:1
|
||||
#, no-wrap
|
||||
msgid "3.0~a53-1"
|
||||
msgstr ""
|
||||
|
||||
#. type: TH
|
||||
#: en/lb.1:1 en/lb_binary.1:1 en/lb_binary_checksums.1:1
|
||||
#: en/lb_binary_chroot.1:1 en/lb_binary_debian-installer.1:1
|
||||
#: en/lb_binary_disk.1:1 en/lb_binary_grub.1:1 en/lb_binary_grub2.1:1
|
||||
#: en/lb_binary_hdd.1:1 en/lb_binary_hooks.1:1 en/lb_binary_includes.1:1
|
||||
#: en/lb_binary_iso.1:1 en/lb_binary_linux-image.1:1
|
||||
#: en/lb_binary_local-includes.1:1 en/lb_binary_manifest.1:1
|
||||
#: en/lb_binary_memtest.1:1 en/lb_binary_netboot.1:1 en/lb_binary_rootfs.1:1
|
||||
#: en/lb_binary_silo.1:1 en/lb_binary_syslinux.1:1 en/lb_binary_tar.1:1
|
||||
#: en/lb_binary_virtual-hdd.1:1 en/lb_binary_win32-loader.1:1
|
||||
#: en/lb_binary_yaboot.1:1 en/lb_bootstrap.1:1 en/lb_bootstrap_cache.1:1
|
||||
#: en/lb_bootstrap_cdebootstrap.1:1 en/lb_bootstrap_copy.1:1
|
||||
#: en/lb_bootstrap_debootstrap.1:1 en/lb_build.1:1 en/lb_chroot.1:1
|
||||
#: en/lb_chroot_apt.1:1 en/lb_chroot_archives.1:1 en/lb_chroot_cache.1:1
|
||||
#: en/lb_chroot_debianchroot.1:1 en/lb_chroot_devpts.1:1 en/lb_chroot_dpkg.1:1
|
||||
#: en/lb_chroot_hacks.1:1 en/lb_chroot_hooks.1:1 en/lb_chroot_hostname.1:1
|
||||
#: en/lb_chroot_hosts.1:1 en/lb_chroot_install-packages.1:1
|
||||
#: en/lb_chroot_interactive.1:1 en/lb_chroot_linux-image.1:1
|
||||
#: en/lb_chroot_local-includes.1:1 en/lb_chroot_local-patches.1:1
|
||||
#: en/lb_chroot_local-preseed.1:1 en/lb_chroot_packagelists.1:1
|
||||
#: en/lb_chroot_packages.1:1 en/lb_chroot_proc.1:1 en/lb_chroot_resolv.1:1
|
||||
#: en/lb_chroot_selinuxfs.1:1 en/lb_chroot_sysfs.1:1 en/lb_chroot_sysv-rc.1:1
|
||||
#: en/lb_chroot_task-lists.1:1 en/lb_chroot_upstart.1:1 en/lb_clean.1:1
|
||||
#: en/lb_config.1:1 en/lb_local.1:1 en/lb_source.1:1
|
||||
#: en/lb_source_checksums.1:1 en/lb_source_debian-live.1:1
|
||||
#: en/lb_source_debian.1:1 en/lb_source_disk.1:1 en/lb_source_hdd.1:1
|
||||
#: en/lb_source_iso.1:1 en/lb_source_tar.1:1 en/lb_source_virtual-hdd.1:1
|
||||
#: en/lb_testroot.1:1 en/live-build.7:1
|
||||
#, no-wrap
|
||||
msgid "Debian Live Project"
|
||||
msgstr ""
|
||||
|
||||
#. type: SH
|
||||
#: en/lb.1:3 en/lb_binary.1:3 en/lb_binary_checksums.1:3
|
||||
#: en/lb_binary_chroot.1:3 en/lb_binary_debian-installer.1:3
|
||||
#: en/lb_binary_disk.1:3 en/lb_binary_grub.1:3 en/lb_binary_grub2.1:3
|
||||
#: en/lb_binary_hdd.1:3 en/lb_binary_hooks.1:3 en/lb_binary_includes.1:3
|
||||
#: en/lb_binary_iso.1:3 en/lb_binary_linux-image.1:3
|
||||
#: en/lb_binary_local-includes.1:3 en/lb_binary_manifest.1:3
|
||||
#: en/lb_binary_memtest.1:3 en/lb_binary_netboot.1:3 en/lb_binary_rootfs.1:3
|
||||
#: en/lb_binary_silo.1:3 en/lb_binary_syslinux.1:3 en/lb_binary_tar.1:3
|
||||
#: en/lb_binary_virtual-hdd.1:3 en/lb_binary_win32-loader.1:3
|
||||
#: en/lb_binary_yaboot.1:3 en/lb_bootstrap.1:3 en/lb_bootstrap_cache.1:3
|
||||
#: en/lb_bootstrap_cdebootstrap.1:3 en/lb_bootstrap_copy.1:3
|
||||
#: en/lb_bootstrap_debootstrap.1:3 en/lb_build.1:3 en/lb_chroot.1:3
|
||||
#: en/lb_chroot_apt.1:3 en/lb_chroot_archives.1:3 en/lb_chroot_cache.1:3
|
||||
#: en/lb_chroot_debianchroot.1:3 en/lb_chroot_devpts.1:3 en/lb_chroot_dpkg.1:3
|
||||
#: en/lb_chroot_hacks.1:3 en/lb_chroot_hooks.1:3 en/lb_chroot_hostname.1:3
|
||||
#: en/lb_chroot_hosts.1:3 en/lb_chroot_install-packages.1:3
|
||||
#: en/lb_chroot_interactive.1:3 en/lb_chroot_linux-image.1:3
|
||||
#: en/lb_chroot_local-includes.1:3 en/lb_chroot_local-patches.1:3
|
||||
#: en/lb_chroot_local-preseed.1:3 en/lb_chroot_packagelists.1:3
|
||||
#: en/lb_chroot_packages.1:3 en/lb_chroot_proc.1:3 en/lb_chroot_resolv.1:3
|
||||
#: en/lb_chroot_selinuxfs.1:3 en/lb_chroot_sysfs.1:3 en/lb_chroot_sysv-rc.1:3
|
||||
#: en/lb_chroot_task-lists.1:3 en/lb_chroot_upstart.1:3 en/lb_clean.1:3
|
||||
#: en/lb_config.1:3 en/lb_local.1:3 en/lb_source.1:3
|
||||
#: en/lb_source_checksums.1:3 en/lb_source_debian-live.1:3
|
||||
#: en/lb_source_debian.1:3 en/lb_source_disk.1:3 en/lb_source_hdd.1:3
|
||||
#: en/lb_source_iso.1:3 en/lb_source_tar.1:3 en/lb_source_virtual-hdd.1:3
|
||||
#: en/lb_testroot.1:3 en/live-build.7:3
|
||||
#, no-wrap
|
||||
msgid "NAME"
|
||||
msgstr ""
|
||||
|
||||
#. type: SH
|
||||
#: en/lb.1:6 en/lb_binary.1:6 en/lb_binary_checksums.1:6
|
||||
#: en/lb_binary_chroot.1:6 en/lb_binary_debian-installer.1:6
|
||||
#: en/lb_binary_disk.1:6 en/lb_binary_grub.1:6 en/lb_binary_grub2.1:6
|
||||
#: en/lb_binary_hdd.1:6 en/lb_binary_hooks.1:6 en/lb_binary_includes.1:6
|
||||
#: en/lb_binary_iso.1:6 en/lb_binary_linux-image.1:6
|
||||
#: en/lb_binary_local-includes.1:6 en/lb_binary_manifest.1:6
|
||||
#: en/lb_binary_memtest.1:6 en/lb_binary_netboot.1:6 en/lb_binary_rootfs.1:6
|
||||
#: en/lb_binary_silo.1:6 en/lb_binary_syslinux.1:6 en/lb_binary_tar.1:6
|
||||
#: en/lb_binary_virtual-hdd.1:6 en/lb_binary_win32-loader.1:6
|
||||
#: en/lb_binary_yaboot.1:6 en/lb_bootstrap.1:6 en/lb_bootstrap_cache.1:6
|
||||
#: en/lb_bootstrap_cdebootstrap.1:6 en/lb_bootstrap_copy.1:6
|
||||
#: en/lb_bootstrap_debootstrap.1:6 en/lb_build.1:6 en/lb_chroot.1:6
|
||||
#: en/lb_chroot_apt.1:6 en/lb_chroot_archives.1:6 en/lb_chroot_cache.1:6
|
||||
#: en/lb_chroot_debianchroot.1:6 en/lb_chroot_devpts.1:6 en/lb_chroot_dpkg.1:6
|
||||
#: en/lb_chroot_hacks.1:6 en/lb_chroot_hooks.1:6 en/lb_chroot_hostname.1:6
|
||||
#: en/lb_chroot_hosts.1:6 en/lb_chroot_install-packages.1:6
|
||||
#: en/lb_chroot_interactive.1:6 en/lb_chroot_linux-image.1:6
|
||||
#: en/lb_chroot_local-includes.1:6 en/lb_chroot_local-patches.1:6
|
||||
#: en/lb_chroot_local-preseed.1:6 en/lb_chroot_packagelists.1:6
|
||||
#: en/lb_chroot_packages.1:6 en/lb_chroot_proc.1:6 en/lb_chroot_resolv.1:6
|
||||
#: en/lb_chroot_selinuxfs.1:6 en/lb_chroot_sysfs.1:6 en/lb_chroot_sysv-rc.1:6
|
||||
#: en/lb_chroot_task-lists.1:6 en/lb_chroot_upstart.1:6 en/lb_clean.1:6
|
||||
#: en/lb_config.1:6 en/lb_local.1:6 en/lb_source.1:6
|
||||
#: en/lb_source_checksums.1:6 en/lb_source_debian-live.1:6
|
||||
#: en/lb_source_debian.1:6 en/lb_source_disk.1:6 en/lb_source_hdd.1:6
|
||||
#: en/lb_source_iso.1:6 en/lb_source_tar.1:6 en/lb_source_virtual-hdd.1:6
|
||||
#: en/lb_testroot.1:6 en/live-build.7:6
|
||||
#, no-wrap
|
||||
msgid "SYNOPSIS"
|
||||
msgstr ""
|
||||
|
||||
#. type: SH
|
||||
#: en/lb.1:11 en/lb_binary.1:9 en/lb_binary_checksums.1:9
|
||||
#: en/lb_binary_chroot.1:9 en/lb_binary_debian-installer.1:9
|
||||
#: en/lb_binary_disk.1:9 en/lb_binary_grub.1:9 en/lb_binary_grub2.1:9
|
||||
#: en/lb_binary_hdd.1:9 en/lb_binary_hooks.1:9 en/lb_binary_includes.1:9
|
||||
#: en/lb_binary_iso.1:9 en/lb_binary_linux-image.1:9
|
||||
#: en/lb_binary_local-includes.1:9 en/lb_binary_manifest.1:9
|
||||
#: en/lb_binary_memtest.1:9 en/lb_binary_netboot.1:9 en/lb_binary_rootfs.1:9
|
||||
#: en/lb_binary_silo.1:9 en/lb_binary_syslinux.1:9 en/lb_binary_tar.1:9
|
||||
#: en/lb_binary_virtual-hdd.1:9 en/lb_binary_win32-loader.1:9
|
||||
#: en/lb_binary_yaboot.1:9 en/lb_bootstrap.1:9 en/lb_bootstrap_cache.1:9
|
||||
#: en/lb_bootstrap_cdebootstrap.1:9 en/lb_bootstrap_copy.1:9
|
||||
#: en/lb_bootstrap_debootstrap.1:9 en/lb_build.1:9 en/lb_chroot.1:9
|
||||
#: en/lb_chroot_apt.1:9 en/lb_chroot_archives.1:9 en/lb_chroot_cache.1:9
|
||||
#: en/lb_chroot_debianchroot.1:9 en/lb_chroot_devpts.1:9 en/lb_chroot_dpkg.1:9
|
||||
#: en/lb_chroot_hacks.1:9 en/lb_chroot_hooks.1:9 en/lb_chroot_hostname.1:9
|
||||
#: en/lb_chroot_hosts.1:9 en/lb_chroot_install-packages.1:9
|
||||
#: en/lb_chroot_interactive.1:9 en/lb_chroot_linux-image.1:9
|
||||
#: en/lb_chroot_local-includes.1:9 en/lb_chroot_local-patches.1:9
|
||||
#: en/lb_chroot_local-preseed.1:9 en/lb_chroot_packagelists.1:9
|
||||
#: en/lb_chroot_packages.1:9 en/lb_chroot_proc.1:9 en/lb_chroot_resolv.1:9
|
||||
#: en/lb_chroot_selinuxfs.1:9 en/lb_chroot_sysfs.1:9 en/lb_chroot_sysv-rc.1:9
|
||||
#: en/lb_chroot_task-lists.1:9 en/lb_chroot_upstart.1:9 en/lb_clean.1:9
|
||||
#: en/lb_config.1:243 en/lb_local.1:9 en/lb_source.1:9
|
||||
#: en/lb_source_checksums.1:9 en/lb_source_debian-live.1:9
|
||||
#: en/lb_source_debian.1:9 en/lb_source_disk.1:9 en/lb_source_hdd.1:9
|
||||
#: en/lb_source_iso.1:9 en/lb_source_tar.1:9 en/lb_source_virtual-hdd.1:9
|
||||
#: en/lb_testroot.1:9 en/live-build.7:11
|
||||
#, no-wrap
|
||||
msgid "DESCRIPTION"
|
||||
msgstr ""
|
||||
|
||||
#. type: SH
|
||||
#: en/lb.1:16 en/lb_binary.1:14 en/lb_binary_checksums.1:14
|
||||
#: en/lb_binary_chroot.1:14 en/lb_binary_debian-installer.1:14
|
||||
#: en/lb_binary_disk.1:14 en/lb_binary_grub.1:14 en/lb_binary_grub2.1:14
|
||||
#: en/lb_binary_hdd.1:14 en/lb_binary_hooks.1:14 en/lb_binary_includes.1:14
|
||||
#: en/lb_binary_iso.1:14 en/lb_binary_linux-image.1:14
|
||||
#: en/lb_binary_local-includes.1:14 en/lb_binary_manifest.1:14
|
||||
#: en/lb_binary_memtest.1:14 en/lb_binary_netboot.1:14
|
||||
#: en/lb_binary_rootfs.1:14 en/lb_binary_silo.1:14 en/lb_binary_syslinux.1:14
|
||||
#: en/lb_binary_tar.1:14 en/lb_binary_virtual-hdd.1:14
|
||||
#: en/lb_binary_win32-loader.1:14 en/lb_binary_yaboot.1:14
|
||||
#: en/lb_bootstrap.1:14 en/lb_bootstrap_cache.1:14
|
||||
#: en/lb_bootstrap_cdebootstrap.1:14 en/lb_bootstrap_copy.1:14
|
||||
#: en/lb_bootstrap_debootstrap.1:14 en/lb_build.1:14 en/lb_chroot.1:14
|
||||
#: en/lb_chroot_apt.1:14 en/lb_chroot_archives.1:14 en/lb_chroot_cache.1:14
|
||||
#: en/lb_chroot_debianchroot.1:14 en/lb_chroot_devpts.1:14
|
||||
#: en/lb_chroot_dpkg.1:14 en/lb_chroot_hacks.1:14 en/lb_chroot_hooks.1:14
|
||||
#: en/lb_chroot_hostname.1:14 en/lb_chroot_hosts.1:14
|
||||
#: en/lb_chroot_install-packages.1:14 en/lb_chroot_interactive.1:14
|
||||
#: en/lb_chroot_linux-image.1:14 en/lb_chroot_local-includes.1:14
|
||||
#: en/lb_chroot_local-patches.1:14 en/lb_chroot_local-preseed.1:14
|
||||
#: en/lb_chroot_packagelists.1:14 en/lb_chroot_packages.1:14
|
||||
#: en/lb_chroot_proc.1:14 en/lb_chroot_resolv.1:14 en/lb_chroot_selinuxfs.1:14
|
||||
#: en/lb_chroot_sysfs.1:14 en/lb_chroot_sysv-rc.1:14
|
||||
#: en/lb_chroot_task-lists.1:14 en/lb_chroot_upstart.1:14 en/lb_clean.1:16
|
||||
#: en/lb_config.1:252 en/lb_local.1:14 en/lb_source.1:14
|
||||
#: en/lb_source_checksums.1:14 en/lb_source_debian-live.1:14
|
||||
#: en/lb_source_debian.1:14 en/lb_source_disk.1:14 en/lb_source_hdd.1:14
|
||||
#: en/lb_source_iso.1:14 en/lb_source_tar.1:14 en/lb_source_virtual-hdd.1:14
|
||||
#: en/lb_testroot.1:18 en/live-build.7:20
|
||||
#, no-wrap
|
||||
msgid "OPTIONS"
|
||||
msgstr ""
|
||||
|
||||
#. type: SH
|
||||
#: en/lb.1:19 en/lb_binary.1:17 en/lb_binary_checksums.1:17
|
||||
#: en/lb_binary_chroot.1:17 en/lb_binary_debian-installer.1:17
|
||||
#: en/lb_binary_disk.1:17 en/lb_binary_grub.1:17 en/lb_binary_grub2.1:17
|
||||
#: en/lb_binary_hdd.1:17 en/lb_binary_hooks.1:17 en/lb_binary_includes.1:17
|
||||
#: en/lb_binary_iso.1:17 en/lb_binary_linux-image.1:17
|
||||
#: en/lb_binary_local-includes.1:17 en/lb_binary_manifest.1:17
|
||||
#: en/lb_binary_memtest.1:17 en/lb_binary_netboot.1:17
|
||||
#: en/lb_binary_rootfs.1:17 en/lb_binary_silo.1:17 en/lb_binary_syslinux.1:17
|
||||
#: en/lb_binary_tar.1:17 en/lb_binary_virtual-hdd.1:17
|
||||
#: en/lb_binary_win32-loader.1:17 en/lb_binary_yaboot.1:17
|
||||
#: en/lb_bootstrap.1:17 en/lb_bootstrap_cache.1:17
|
||||
#: en/lb_bootstrap_cdebootstrap.1:17 en/lb_bootstrap_copy.1:17
|
||||
#: en/lb_bootstrap_debootstrap.1:17 en/lb_build.1:17 en/lb_chroot.1:17
|
||||
#: en/lb_chroot_apt.1:17 en/lb_chroot_archives.1:17 en/lb_chroot_cache.1:17
|
||||
#: en/lb_chroot_debianchroot.1:17 en/lb_chroot_devpts.1:17
|
||||
#: en/lb_chroot_dpkg.1:17 en/lb_chroot_hacks.1:17 en/lb_chroot_hooks.1:17
|
||||
#: en/lb_chroot_hostname.1:17 en/lb_chroot_hosts.1:17
|
||||
#: en/lb_chroot_install-packages.1:17 en/lb_chroot_interactive.1:17
|
||||
#: en/lb_chroot_linux-image.1:17 en/lb_chroot_local-includes.1:17
|
||||
#: en/lb_chroot_local-patches.1:17 en/lb_chroot_local-preseed.1:17
|
||||
#: en/lb_chroot_packagelists.1:17 en/lb_chroot_packages.1:17
|
||||
#: en/lb_chroot_proc.1:17 en/lb_chroot_resolv.1:17 en/lb_chroot_selinuxfs.1:17
|
||||
#: en/lb_chroot_sysfs.1:17 en/lb_chroot_sysv-rc.1:17
|
||||
#: en/lb_chroot_task-lists.1:17 en/lb_chroot_upstart.1:17 en/lb_clean.1:38
|
||||
#: en/lb_config.1:502 en/lb_local.1:17 en/lb_source.1:17
|
||||
#: en/lb_source_checksums.1:17 en/lb_source_debian-live.1:17
|
||||
#: en/lb_source_debian.1:17 en/lb_source_disk.1:17 en/lb_source_hdd.1:17
|
||||
#: en/lb_source_iso.1:17 en/lb_source_tar.1:17 en/lb_source_virtual-hdd.1:17
|
||||
#: en/lb_testroot.1:21 en/live-build.7:225
|
||||
#, no-wrap
|
||||
msgid "FILES"
|
||||
msgstr ""
|
||||
|
||||
#. type: IP
|
||||
#: en/lb.1:20 en/lb_binary.1:18 en/lb_bootstrap.1:18 en/lb_chroot.1:18
|
||||
#: en/lb_local.1:18 en/lb_source.1:18 en/lb_testroot.1:22
|
||||
#, no-wrap
|
||||
msgid "B<none>"
|
||||
msgstr ""
|
||||
|
||||
#. type: SH
|
||||
#: en/lb.1:22 en/lb_binary.1:20 en/lb_binary_checksums.1:21
|
||||
#: en/lb_binary_chroot.1:21 en/lb_binary_debian-installer.1:21
|
||||
#: en/lb_binary_disk.1:21 en/lb_binary_grub.1:21 en/lb_binary_grub2.1:21
|
||||
#: en/lb_binary_hdd.1:21 en/lb_binary_hooks.1:21 en/lb_binary_includes.1:21
|
||||
#: en/lb_binary_iso.1:21 en/lb_binary_linux-image.1:21
|
||||
#: en/lb_binary_local-includes.1:21 en/lb_binary_manifest.1:21
|
||||
#: en/lb_binary_memtest.1:21 en/lb_binary_netboot.1:21
|
||||
#: en/lb_binary_rootfs.1:21 en/lb_binary_silo.1:21 en/lb_binary_syslinux.1:21
|
||||
#: en/lb_binary_tar.1:21 en/lb_binary_virtual-hdd.1:21
|
||||
#: en/lb_binary_win32-loader.1:21 en/lb_binary_yaboot.1:21
|
||||
#: en/lb_bootstrap.1:20 en/lb_bootstrap_cache.1:21
|
||||
#: en/lb_bootstrap_cdebootstrap.1:21 en/lb_bootstrap_copy.1:21
|
||||
#: en/lb_bootstrap_debootstrap.1:21 en/lb_build.1:22 en/lb_chroot.1:20
|
||||
#: en/lb_chroot_apt.1:21 en/lb_chroot_archives.1:21 en/lb_chroot_cache.1:21
|
||||
#: en/lb_chroot_debianchroot.1:21 en/lb_chroot_devpts.1:21
|
||||
#: en/lb_chroot_dpkg.1:21 en/lb_chroot_hacks.1:21 en/lb_chroot_hooks.1:21
|
||||
#: en/lb_chroot_hostname.1:21 en/lb_chroot_hosts.1:21
|
||||
#: en/lb_chroot_install-packages.1:21 en/lb_chroot_interactive.1:21
|
||||
#: en/lb_chroot_linux-image.1:21 en/lb_chroot_local-includes.1:21
|
||||
#: en/lb_chroot_local-patches.1:21 en/lb_chroot_local-preseed.1:21
|
||||
#: en/lb_chroot_packagelists.1:21 en/lb_chroot_packages.1:21
|
||||
#: en/lb_chroot_proc.1:21 en/lb_chroot_resolv.1:21 en/lb_chroot_selinuxfs.1:21
|
||||
#: en/lb_chroot_sysfs.1:21 en/lb_chroot_sysv-rc.1:21
|
||||
#: en/lb_chroot_task-lists.1:21 en/lb_chroot_upstart.1:21 en/lb_clean.1:43
|
||||
#: en/lb_config.1:509 en/lb_local.1:20 en/lb_source.1:20
|
||||
#: en/lb_source_checksums.1:21 en/lb_source_debian-live.1:21
|
||||
#: en/lb_source_debian.1:21 en/lb_source_disk.1:21 en/lb_source_hdd.1:21
|
||||
#: en/lb_source_iso.1:21 en/lb_source_tar.1:21 en/lb_source_virtual-hdd.1:21
|
||||
#: en/lb_testroot.1:24 en/live-build.7:229
|
||||
#, no-wrap
|
||||
msgid "SEE ALSO"
|
||||
msgstr ""
|
||||
|
||||
#. type: Plain text
|
||||
#: en/lb.1:24 en/lb_binary.1:22 en/lb_binary_checksums.1:23
|
||||
#: en/lb_binary_chroot.1:23 en/lb_binary_debian-installer.1:23
|
||||
#: en/lb_binary_disk.1:23 en/lb_binary_grub.1:23 en/lb_binary_grub2.1:23
|
||||
#: en/lb_binary_hdd.1:23 en/lb_binary_hooks.1:23 en/lb_binary_includes.1:23
|
||||
#: en/lb_binary_iso.1:23 en/lb_binary_linux-image.1:23
|
||||
#: en/lb_binary_local-includes.1:23 en/lb_binary_manifest.1:23
|
||||
#: en/lb_binary_memtest.1:23 en/lb_binary_netboot.1:23
|
||||
#: en/lb_binary_rootfs.1:23 en/lb_binary_silo.1:23 en/lb_binary_syslinux.1:23
|
||||
#: en/lb_binary_tar.1:23 en/lb_binary_virtual-hdd.1:23
|
||||
#: en/lb_binary_win32-loader.1:23 en/lb_binary_yaboot.1:23
|
||||
#: en/lb_bootstrap.1:22 en/lb_bootstrap_cache.1:23
|
||||
#: en/lb_bootstrap_cdebootstrap.1:23 en/lb_bootstrap_copy.1:23
|
||||
#: en/lb_bootstrap_debootstrap.1:23 en/lb_build.1:24 en/lb_chroot.1:22
|
||||
#: en/lb_chroot_apt.1:23 en/lb_chroot_archives.1:23 en/lb_chroot_cache.1:23
|
||||
#: en/lb_chroot_debianchroot.1:23 en/lb_chroot_devpts.1:23
|
||||
#: en/lb_chroot_dpkg.1:23 en/lb_chroot_hacks.1:23 en/lb_chroot_hooks.1:23
|
||||
#: en/lb_chroot_hostname.1:23 en/lb_chroot_hosts.1:23
|
||||
#: en/lb_chroot_install-packages.1:23 en/lb_chroot_interactive.1:23
|
||||
#: en/lb_chroot_linux-image.1:23 en/lb_chroot_local-includes.1:23
|
||||
#: en/lb_chroot_local-patches.1:23 en/lb_chroot_local-preseed.1:23
|
||||
#: en/lb_chroot_packagelists.1:23 en/lb_chroot_packages.1:23
|
||||
#: en/lb_chroot_proc.1:23 en/lb_chroot_resolv.1:23 en/lb_chroot_selinuxfs.1:23
|
||||
#: en/lb_chroot_sysfs.1:23 en/lb_chroot_sysv-rc.1:23
|
||||
#: en/lb_chroot_task-lists.1:23 en/lb_chroot_upstart.1:23 en/lb_clean.1:45
|
||||
#: en/lb_config.1:511 en/lb_local.1:22 en/lb_source.1:22
|
||||
#: en/lb_source_checksums.1:23 en/lb_source_debian-live.1:23
|
||||
#: en/lb_source_debian.1:23 en/lb_source_disk.1:23 en/lb_source_hdd.1:23
|
||||
#: en/lb_source_iso.1:23 en/lb_source_tar.1:23 en/lb_source_virtual-hdd.1:23
|
||||
#: en/lb_testroot.1:26
|
||||
msgid "I<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_grub.1:25 en/lb_binary_grub2.1:25
|
||||
#: en/lb_binary_hdd.1:25 en/lb_binary_hooks.1:25 en/lb_binary_includes.1:25
|
||||
#: en/lb_binary_iso.1:25 en/lb_binary_linux-image.1:25
|
||||
#: en/lb_binary_local-includes.1:25 en/lb_binary_manifest.1:25
|
||||
#: en/lb_binary_memtest.1:25 en/lb_binary_netboot.1:25
|
||||
#: en/lb_binary_rootfs.1:25 en/lb_binary_silo.1:25 en/lb_binary_syslinux.1:25
|
||||
#: en/lb_binary_tar.1:25 en/lb_binary_virtual-hdd.1:25
|
||||
#: en/lb_binary_win32-loader.1:25 en/lb_binary_yaboot.1:25
|
||||
#: en/lb_bootstrap.1:24 en/lb_bootstrap_cache.1:25
|
||||
#: en/lb_bootstrap_cdebootstrap.1:25 en/lb_bootstrap_copy.1:25
|
||||
#: en/lb_bootstrap_debootstrap.1:25 en/lb_build.1:26 en/lb_chroot.1:24
|
||||
#: en/lb_chroot_apt.1:25 en/lb_chroot_archives.1:25 en/lb_chroot_cache.1:25
|
||||
#: en/lb_chroot_debianchroot.1:25 en/lb_chroot_devpts.1:25
|
||||
#: en/lb_chroot_dpkg.1:25 en/lb_chroot_hacks.1:25 en/lb_chroot_hooks.1:25
|
||||
#: en/lb_chroot_hostname.1:25 en/lb_chroot_hosts.1:25
|
||||
#: en/lb_chroot_install-packages.1:25 en/lb_chroot_interactive.1:25
|
||||
#: en/lb_chroot_linux-image.1:25 en/lb_chroot_local-includes.1:25
|
||||
#: en/lb_chroot_local-patches.1:25 en/lb_chroot_local-preseed.1:25
|
||||
#: en/lb_chroot_packagelists.1:25 en/lb_chroot_packages.1:25
|
||||
#: en/lb_chroot_proc.1:25 en/lb_chroot_resolv.1:25 en/lb_chroot_selinuxfs.1:25
|
||||
#: en/lb_chroot_sysfs.1:25 en/lb_chroot_sysv-rc.1:25
|
||||
#: en/lb_chroot_task-lists.1:25 en/lb_chroot_upstart.1:25 en/lb_clean.1:47
|
||||
#: en/lb_config.1:517 en/lb_local.1:24 en/lb_source.1:24
|
||||
#: en/lb_source_checksums.1:25 en/lb_source_debian-live.1:25
|
||||
#: en/lb_source_debian.1:25 en/lb_source_disk.1:25 en/lb_source_hdd.1:25
|
||||
#: en/lb_source_iso.1:25 en/lb_source_tar.1:25 en/lb_source_virtual-hdd.1:25
|
||||
#: en/lb_testroot.1:28 en/live-build.7:235
|
||||
msgid "This program is a part of live-build."
|
||||
msgstr ""
|
||||
|
||||
#. type: SH
|
||||
#: en/lb.1:27 en/lb_binary.1:25 en/lb_binary_checksums.1:26
|
||||
#: en/lb_binary_chroot.1:26 en/lb_binary_debian-installer.1:26
|
||||
#: en/lb_binary_disk.1:26 en/lb_binary_grub.1:26 en/lb_binary_grub2.1:26
|
||||
#: en/lb_binary_hdd.1:26 en/lb_binary_hooks.1:26 en/lb_binary_includes.1:26
|
||||
#: en/lb_binary_iso.1:26 en/lb_binary_linux-image.1:26
|
||||
#: en/lb_binary_local-includes.1:26 en/lb_binary_manifest.1:26
|
||||
#: en/lb_binary_memtest.1:26 en/lb_binary_netboot.1:26
|
||||
#: en/lb_binary_rootfs.1:26 en/lb_binary_silo.1:26 en/lb_binary_syslinux.1:26
|
||||
#: en/lb_binary_tar.1:26 en/lb_binary_virtual-hdd.1:26
|
||||
#: en/lb_binary_win32-loader.1:26 en/lb_binary_yaboot.1:26
|
||||
#: en/lb_bootstrap.1:25 en/lb_bootstrap_cache.1:26
|
||||
#: en/lb_bootstrap_cdebootstrap.1:26 en/lb_bootstrap_copy.1:26
|
||||
#: en/lb_bootstrap_debootstrap.1:26 en/lb_build.1:27 en/lb_chroot.1:25
|
||||
#: en/lb_chroot_apt.1:26 en/lb_chroot_archives.1:26 en/lb_chroot_cache.1:26
|
||||
#: en/lb_chroot_debianchroot.1:26 en/lb_chroot_devpts.1:26
|
||||
#: en/lb_chroot_dpkg.1:26 en/lb_chroot_hacks.1:26 en/lb_chroot_hooks.1:26
|
||||
#: en/lb_chroot_hostname.1:26 en/lb_chroot_hosts.1:26
|
||||
#: en/lb_chroot_install-packages.1:26 en/lb_chroot_interactive.1:26
|
||||
#: en/lb_chroot_linux-image.1:26 en/lb_chroot_local-includes.1:26
|
||||
#: en/lb_chroot_local-patches.1:26 en/lb_chroot_local-preseed.1:26
|
||||
#: en/lb_chroot_packagelists.1:26 en/lb_chroot_packages.1:26
|
||||
#: en/lb_chroot_proc.1:26 en/lb_chroot_resolv.1:26 en/lb_chroot_selinuxfs.1:26
|
||||
#: en/lb_chroot_sysfs.1:26 en/lb_chroot_sysv-rc.1:26
|
||||
#: en/lb_chroot_task-lists.1:26 en/lb_chroot_upstart.1:26 en/lb_clean.1:48
|
||||
#: en/lb_config.1:518 en/lb_local.1:25 en/lb_source.1:25
|
||||
#: en/lb_source_checksums.1:26 en/lb_source_debian-live.1:26
|
||||
#: en/lb_source_debian.1:26 en/lb_source_disk.1:26 en/lb_source_hdd.1:26
|
||||
#: en/lb_source_iso.1:26 en/lb_source_tar.1:26 en/lb_source_virtual-hdd.1:26
|
||||
#: en/lb_testroot.1:29 en/live-build.7:236
|
||||
#, no-wrap
|
||||
msgid "HOMEPAGE"
|
||||
msgstr ""
|
||||
|
||||
#. type: Plain text
|
||||
#: en/lb.1:29 en/lb_binary.1:27 en/lb_binary_checksums.1:28
|
||||
#: en/lb_binary_chroot.1:28 en/lb_binary_debian-installer.1:28
|
||||
#: en/lb_binary_disk.1:28 en/lb_binary_grub.1:28 en/lb_binary_grub2.1:28
|
||||
#: en/lb_binary_hdd.1:28 en/lb_binary_hooks.1:28 en/lb_binary_includes.1:28
|
||||
#: en/lb_binary_iso.1:28 en/lb_binary_linux-image.1:28
|
||||
#: en/lb_binary_local-includes.1:28 en/lb_binary_manifest.1:28
|
||||
#: en/lb_binary_memtest.1:28 en/lb_binary_netboot.1:28
|
||||
#: en/lb_binary_rootfs.1:28 en/lb_binary_silo.1:28 en/lb_binary_syslinux.1:28
|
||||
#: en/lb_binary_tar.1:28 en/lb_binary_virtual-hdd.1:28
|
||||
#: en/lb_binary_win32-loader.1:28 en/lb_binary_yaboot.1:28
|
||||
#: en/lb_bootstrap.1:27 en/lb_bootstrap_cache.1:28
|
||||
#: en/lb_bootstrap_cdebootstrap.1:28 en/lb_bootstrap_copy.1:28
|
||||
#: en/lb_bootstrap_debootstrap.1:28 en/lb_build.1:29 en/lb_chroot.1:27
|
||||
#: en/lb_chroot_apt.1:28 en/lb_chroot_archives.1:28 en/lb_chroot_cache.1:28
|
||||
#: en/lb_chroot_debianchroot.1:28 en/lb_chroot_devpts.1:28
|
||||
#: en/lb_chroot_dpkg.1:28 en/lb_chroot_hacks.1:28 en/lb_chroot_hooks.1:28
|
||||
#: en/lb_chroot_hostname.1:28 en/lb_chroot_hosts.1:28
|
||||
#: en/lb_chroot_install-packages.1:28 en/lb_chroot_interactive.1:28
|
||||
#: en/lb_chroot_linux-image.1:28 en/lb_chroot_local-includes.1:28
|
||||
#: en/lb_chroot_local-patches.1:28 en/lb_chroot_local-preseed.1:28
|
||||
#: en/lb_chroot_packagelists.1:28 en/lb_chroot_packages.1:28
|
||||
#: en/lb_chroot_proc.1:28 en/lb_chroot_resolv.1:28 en/lb_chroot_selinuxfs.1:28
|
||||
#: en/lb_chroot_sysfs.1:28 en/lb_chroot_sysv-rc.1:28
|
||||
#: en/lb_chroot_task-lists.1:28 en/lb_chroot_upstart.1:28 en/lb_clean.1:50
|
||||
#: en/lb_config.1:520 en/lb_local.1:27 en/lb_source.1:27
|
||||
#: en/lb_source_checksums.1:28 en/lb_source_debian-live.1:28
|
||||
#: en/lb_source_debian.1:28 en/lb_source_disk.1:28 en/lb_source_hdd.1:28
|
||||
#: en/lb_source_iso.1:28 en/lb_source_tar.1:28 en/lb_source_virtual-hdd.1:28
|
||||
#: en/lb_testroot.1:31 en/live-build.7:238
|
||||
msgid ""
|
||||
"More information about live-build and the Debian Live project can be found "
|
||||
"on the homepage at 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_grub.1:29 en/lb_binary_grub2.1:29
|
||||
#: en/lb_binary_hdd.1:29 en/lb_binary_hooks.1:29 en/lb_binary_includes.1:29
|
||||
#: en/lb_binary_iso.1:29 en/lb_binary_linux-image.1:29
|
||||
#: en/lb_binary_local-includes.1:29 en/lb_binary_manifest.1:29
|
||||
#: en/lb_binary_memtest.1:29 en/lb_binary_netboot.1:29
|
||||
#: en/lb_binary_rootfs.1:29 en/lb_binary_silo.1:29 en/lb_binary_syslinux.1:29
|
||||
#: en/lb_binary_tar.1:29 en/lb_binary_virtual-hdd.1:29
|
||||
#: en/lb_binary_win32-loader.1:29 en/lb_binary_yaboot.1:29
|
||||
#: en/lb_bootstrap.1:28 en/lb_bootstrap_cache.1:29
|
||||
#: en/lb_bootstrap_cdebootstrap.1:29 en/lb_bootstrap_copy.1:29
|
||||
#: en/lb_bootstrap_debootstrap.1:29 en/lb_build.1:30 en/lb_chroot.1:28
|
||||
#: en/lb_chroot_apt.1:29 en/lb_chroot_archives.1:29 en/lb_chroot_cache.1:29
|
||||
#: en/lb_chroot_debianchroot.1:29 en/lb_chroot_devpts.1:29
|
||||
#: en/lb_chroot_dpkg.1:29 en/lb_chroot_hacks.1:29 en/lb_chroot_hooks.1:29
|
||||
#: en/lb_chroot_hostname.1:29 en/lb_chroot_hosts.1:29
|
||||
#: en/lb_chroot_install-packages.1:29 en/lb_chroot_interactive.1:29
|
||||
#: en/lb_chroot_linux-image.1:29 en/lb_chroot_local-includes.1:29
|
||||
#: en/lb_chroot_local-patches.1:29 en/lb_chroot_local-preseed.1:29
|
||||
#: en/lb_chroot_packagelists.1:29 en/lb_chroot_packages.1:29
|
||||
#: en/lb_chroot_proc.1:29 en/lb_chroot_resolv.1:29 en/lb_chroot_selinuxfs.1:29
|
||||
#: en/lb_chroot_sysfs.1:29 en/lb_chroot_sysv-rc.1:29
|
||||
#: en/lb_chroot_task-lists.1:29 en/lb_chroot_upstart.1:29 en/lb_clean.1:51
|
||||
#: en/lb_config.1:521 en/lb_local.1:28 en/lb_source.1:28
|
||||
#: en/lb_source_checksums.1:29 en/lb_source_debian-live.1:29
|
||||
#: en/lb_source_debian.1:29 en/lb_source_disk.1:29 en/lb_source_hdd.1:29
|
||||
#: en/lb_source_iso.1:29 en/lb_source_tar.1:29 en/lb_source_virtual-hdd.1:29
|
||||
#: en/lb_testroot.1:32 en/live-build.7:239
|
||||
#, no-wrap
|
||||
msgid "BUGS"
|
||||
msgstr ""
|
||||
|
||||
#. type: Plain text
|
||||
#: en/lb.1:32 en/lb_binary.1:30 en/lb_binary_checksums.1:31
|
||||
#: en/lb_binary_chroot.1:31 en/lb_binary_debian-installer.1:31
|
||||
#: en/lb_binary_disk.1:31 en/lb_binary_grub.1:31 en/lb_binary_grub2.1:31
|
||||
#: en/lb_binary_hdd.1:31 en/lb_binary_hooks.1:31 en/lb_binary_includes.1:31
|
||||
#: en/lb_binary_iso.1:31 en/lb_binary_linux-image.1:31
|
||||
#: en/lb_binary_local-includes.1:31 en/lb_binary_manifest.1:31
|
||||
#: en/lb_binary_memtest.1:31 en/lb_binary_netboot.1:31
|
||||
#: en/lb_binary_rootfs.1:31 en/lb_binary_silo.1:31 en/lb_binary_syslinux.1:31
|
||||
#: en/lb_binary_tar.1:31 en/lb_binary_virtual-hdd.1:31
|
||||
#: en/lb_binary_win32-loader.1:31 en/lb_binary_yaboot.1:31
|
||||
#: en/lb_bootstrap.1:30 en/lb_bootstrap_cache.1:31
|
||||
#: en/lb_bootstrap_cdebootstrap.1:31 en/lb_bootstrap_copy.1:31
|
||||
#: en/lb_bootstrap_debootstrap.1:31 en/lb_build.1:32 en/lb_chroot.1:30
|
||||
#: en/lb_chroot_apt.1:31 en/lb_chroot_archives.1:31 en/lb_chroot_cache.1:31
|
||||
#: en/lb_chroot_debianchroot.1:31 en/lb_chroot_devpts.1:31
|
||||
#: en/lb_chroot_dpkg.1:31 en/lb_chroot_hacks.1:31 en/lb_chroot_hooks.1:31
|
||||
#: en/lb_chroot_hostname.1:31 en/lb_chroot_hosts.1:31
|
||||
#: en/lb_chroot_install-packages.1:31 en/lb_chroot_interactive.1:31
|
||||
#: en/lb_chroot_linux-image.1:31 en/lb_chroot_local-includes.1:31
|
||||
#: en/lb_chroot_local-patches.1:31 en/lb_chroot_local-preseed.1:31
|
||||
#: en/lb_chroot_packagelists.1:31 en/lb_chroot_packages.1:31
|
||||
#: en/lb_chroot_proc.1:31 en/lb_chroot_resolv.1:31 en/lb_chroot_selinuxfs.1:31
|
||||
#: en/lb_chroot_sysfs.1:31 en/lb_chroot_sysv-rc.1:31
|
||||
#: en/lb_chroot_task-lists.1:31 en/lb_chroot_upstart.1:31 en/lb_clean.1:53
|
||||
#: en/lb_config.1:523 en/lb_local.1:30 en/lb_source.1:30
|
||||
#: en/lb_source_checksums.1:31 en/lb_source_debian-live.1:31
|
||||
#: en/lb_source_debian.1:31 en/lb_source_disk.1:31 en/lb_source_hdd.1:31
|
||||
#: en/lb_source_iso.1:31 en/lb_source_tar.1:31 en/lb_source_virtual-hdd.1:31
|
||||
#: en/lb_testroot.1:34 en/live-build.7:241
|
||||
msgid ""
|
||||
"Bugs can be reported by submitting a bugreport for the live-build package in "
|
||||
"the Debian Bug Tracking System at 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_grub.1:32 en/lb_binary_grub2.1:32
|
||||
#: en/lb_binary_hdd.1:32 en/lb_binary_hooks.1:32 en/lb_binary_includes.1:32
|
||||
#: en/lb_binary_iso.1:32 en/lb_binary_linux-image.1:32
|
||||
#: en/lb_binary_local-includes.1:32 en/lb_binary_manifest.1:32
|
||||
#: en/lb_binary_memtest.1:32 en/lb_binary_netboot.1:32
|
||||
#: en/lb_binary_rootfs.1:32 en/lb_binary_silo.1:32 en/lb_binary_syslinux.1:32
|
||||
#: en/lb_binary_tar.1:32 en/lb_binary_virtual-hdd.1:32
|
||||
#: en/lb_binary_win32-loader.1:32 en/lb_binary_yaboot.1:32
|
||||
#: en/lb_bootstrap.1:31 en/lb_bootstrap_cache.1:32
|
||||
#: en/lb_bootstrap_cdebootstrap.1:32 en/lb_bootstrap_copy.1:32
|
||||
#: en/lb_bootstrap_debootstrap.1:32 en/lb_build.1:33 en/lb_chroot.1:31
|
||||
#: en/lb_chroot_apt.1:32 en/lb_chroot_archives.1:32 en/lb_chroot_cache.1:32
|
||||
#: en/lb_chroot_debianchroot.1:32 en/lb_chroot_devpts.1:32
|
||||
#: en/lb_chroot_dpkg.1:32 en/lb_chroot_hacks.1:32 en/lb_chroot_hooks.1:32
|
||||
#: en/lb_chroot_hostname.1:32 en/lb_chroot_hosts.1:32
|
||||
#: en/lb_chroot_install-packages.1:32 en/lb_chroot_interactive.1:32
|
||||
#: en/lb_chroot_linux-image.1:32 en/lb_chroot_local-includes.1:32
|
||||
#: en/lb_chroot_local-patches.1:32 en/lb_chroot_local-preseed.1:32
|
||||
#: en/lb_chroot_packagelists.1:32 en/lb_chroot_packages.1:32
|
||||
#: en/lb_chroot_proc.1:32 en/lb_chroot_resolv.1:32 en/lb_chroot_selinuxfs.1:32
|
||||
#: en/lb_chroot_sysfs.1:32 en/lb_chroot_sysv-rc.1:32
|
||||
#: en/lb_chroot_task-lists.1:32 en/lb_chroot_upstart.1:32 en/lb_clean.1:54
|
||||
#: en/lb_config.1:524 en/lb_local.1:31 en/lb_source.1:31
|
||||
#: en/lb_source_checksums.1:32 en/lb_source_debian-live.1:32
|
||||
#: en/lb_source_debian.1:32 en/lb_source_disk.1:32 en/lb_source_hdd.1:32
|
||||
#: en/lb_source_iso.1:32 en/lb_source_tar.1:32 en/lb_source_virtual-hdd.1:32
|
||||
#: en/lb_testroot.1:35 en/live-build.7:242
|
||||
#, no-wrap
|
||||
msgid "AUTHOR"
|
||||
msgstr ""
|
||||
|
||||
#. type: Plain text
|
||||
#: en/lb.1:34 en/lb_binary.1:32 en/lb_binary_checksums.1:33
|
||||
#: en/lb_binary_chroot.1:33 en/lb_binary_debian-installer.1:33
|
||||
#: en/lb_binary_disk.1:33 en/lb_binary_grub.1:33 en/lb_binary_grub2.1:33
|
||||
#: en/lb_binary_hdd.1:33 en/lb_binary_hooks.1:33 en/lb_binary_includes.1:33
|
||||
#: en/lb_binary_iso.1:33 en/lb_binary_linux-image.1:33
|
||||
#: en/lb_binary_local-includes.1:33 en/lb_binary_manifest.1:33
|
||||
#: en/lb_binary_memtest.1:33 en/lb_binary_netboot.1:33
|
||||
#: en/lb_binary_rootfs.1:33 en/lb_binary_silo.1:33 en/lb_binary_syslinux.1:33
|
||||
#: en/lb_binary_tar.1:33 en/lb_binary_virtual-hdd.1:33
|
||||
#: en/lb_binary_win32-loader.1:33 en/lb_binary_yaboot.1:33
|
||||
#: en/lb_bootstrap.1:32 en/lb_bootstrap_cache.1:33
|
||||
#: en/lb_bootstrap_cdebootstrap.1:33 en/lb_bootstrap_copy.1:33
|
||||
#: en/lb_bootstrap_debootstrap.1:33 en/lb_build.1:34 en/lb_chroot.1:32
|
||||
#: en/lb_chroot_apt.1:33 en/lb_chroot_archives.1:33 en/lb_chroot_cache.1:33
|
||||
#: en/lb_chroot_debianchroot.1:33 en/lb_chroot_devpts.1:33
|
||||
#: en/lb_chroot_dpkg.1:33 en/lb_chroot_hacks.1:33 en/lb_chroot_hooks.1:33
|
||||
#: en/lb_chroot_hostname.1:33 en/lb_chroot_hosts.1:33
|
||||
#: en/lb_chroot_install-packages.1:33 en/lb_chroot_interactive.1:33
|
||||
#: en/lb_chroot_linux-image.1:33 en/lb_chroot_local-includes.1:33
|
||||
#: en/lb_chroot_local-patches.1:33 en/lb_chroot_local-preseed.1:33
|
||||
#: en/lb_chroot_packagelists.1:33 en/lb_chroot_packages.1:33
|
||||
#: en/lb_chroot_proc.1:33 en/lb_chroot_resolv.1:33 en/lb_chroot_selinuxfs.1:33
|
||||
#: en/lb_chroot_sysfs.1:33 en/lb_chroot_sysv-rc.1:33
|
||||
#: en/lb_chroot_task-lists.1:33 en/lb_chroot_upstart.1:33 en/lb_clean.1:55
|
||||
#: en/lb_config.1:525 en/lb_local.1:32 en/lb_source.1:32
|
||||
#: en/lb_source_checksums.1:33 en/lb_source_debian-live.1:33
|
||||
#: en/lb_source_debian.1:33 en/lb_source_disk.1:33 en/lb_source_hdd.1:33
|
||||
#: en/lb_source_iso.1:33 en/lb_source_tar.1:33 en/lb_source_virtual-hdd.1:33
|
||||
#: en/lb_testroot.1:36 en/live-build.7:243
|
||||
msgid ""
|
||||
"live-build was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for "
|
||||
"the Debian project."
|
||||
msgstr ""
|
||||
|
||||
#. type: Plain text
|
||||
#: en/lb_local.1:5
|
||||
msgid "B<lb local> - wrapper for local live-build programs"
|
||||
msgstr ""
|
||||
|
||||
#. type: Plain text
|
||||
#: en/lb_local.1:8
|
||||
msgid "B<lb local> [I<live-build\\ options>]"
|
||||
msgstr ""
|
||||
|
||||
#. type: Plain text
|
||||
#: en/lb_local.1:11
|
||||
msgid ""
|
||||
"B<lb local> is a high-level command (porcelain) of I<live-build>(7), the "
|
||||
"Debian Live tool suite."
|
||||
msgstr ""
|
||||
|
||||
#. type: Plain text
|
||||
#: en/lb_local.1:16
|
||||
msgid ""
|
||||
"B<lb local> 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 ""
|
|
@ -2,18 +2,18 @@
|
|||
|
||||
if [ -e local/live-build ]
|
||||
then
|
||||
LB_BASE="${LB_BASE:-${PWD}/local/live-build}"
|
||||
LIVE_BUILD="${LIVE_BUILD:-${PWD}/local/live-build}"
|
||||
PATH="${PWD}/local/live-build/scripts/build:${PATH}"
|
||||
export LB_BASE PATH
|
||||
else
|
||||
LB_BASE="${LB_BASE:-/usr/share/live/build}"
|
||||
export LB_BASE
|
||||
export LIVE_BUILD PATH
|
||||
fi
|
||||
|
||||
# Source global functions
|
||||
for FUNCTION in "${LB_BASE}"/functions/*.sh
|
||||
for FUNCTION in "${LIVE_BUILD}"/functions/*.sh /usr/share/live/build/functions/*.sh
|
||||
do
|
||||
. "${FUNCTION}"
|
||||
if [ -e "${FUNCTION}" ]
|
||||
then
|
||||
. "${FUNCTION}"
|
||||
fi
|
||||
done
|
||||
|
||||
# Source local functions
|
||||
|
|
|
@ -11,7 +11,8 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
|
||||
# Automatically populating config tree
|
||||
if [ -x auto/config ] && [ ! -e .build/config ]
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'create binary checksums')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'copy chroot into chroot')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'install debian-installer into binary')"
|
||||
|
@ -671,9 +671,17 @@ then
|
|||
fi
|
||||
|
||||
# Excluding udebs
|
||||
grep -v "^#" "${LB_BASE}"/data/debian-cd/"${LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION}"/udeb_exclude > exclude || true
|
||||
grep -v "^#" "${LB_BASE}"/data/debian-cd/"${LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION}"/exclude-udebs >> exclude || true
|
||||
grep -v "^#" "${LB_BASE}"/data/debian-cd/"${LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION}"/exclude-udebs-${LB_ARCHITECTURES} >> exclude || true
|
||||
for LOCATION in "${LIVE_BUILD}/data/debian-cd" /usr/share/live/build/data/debian-cd
|
||||
do
|
||||
if [ -e "${LOCATION}" ]
|
||||
then
|
||||
grep -v "^#" "${LOCATION}/${LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION}/udeb_exclude" > exclude || true
|
||||
grep -v "^#" "${LOCATION}/${LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION}/exclude-udebs" >> exclude || true
|
||||
grep -v "^#" "${LOCATION}/${LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION}/exclude-udebs-${LB_ARCHITECTURES}" >> exclude || true
|
||||
|
||||
continue
|
||||
fi
|
||||
done
|
||||
|
||||
# Local exclude file
|
||||
if [ -e ../config/binary_debian-installer/udeb_exclude ]
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'install disk information into binary')"
|
||||
|
@ -135,7 +135,15 @@ case "${LB_DEBIAN_INSTALLER}" in
|
|||
|
||||
echo "${TITLE} ${VERSION} \"${DISTRIBUTION}\" - ${STRING} LIVE/CD Binary $(date +%Y%m%d-%H:%M)" > binary/.disk/info
|
||||
|
||||
cp "${LB_BASE}"/data/debian-cd/${LB_PARENT_DISTRIBUTION}/${LB_ARCHITECTURES}_udeb_include binary/.disk/udeb_include
|
||||
for LOCATION in "${LIVE_BUILD}/data/debian-cd" /usr/share/live/build/data/debian-cd
|
||||
do
|
||||
if [ -e "${LOCATION}" ]
|
||||
then
|
||||
cp "${LOCATION}/${LB_PARENT_DISTRIBUTION}/${LB_ARCHITECTURES}_udeb_include" binary/.disk/udeb_include
|
||||
|
||||
continue
|
||||
fi
|
||||
done
|
||||
;;
|
||||
|
||||
true|netinst|live)
|
||||
|
@ -152,7 +160,15 @@ case "${LB_DEBIAN_INSTALLER}" in
|
|||
echo "${TITLE} ${VERSION} \"${DISTRIBUTION}\" - ${STRING} LIVE/NETINST Binary $(date +%Y%m%d-%H:%M)" > binary/.disk/info
|
||||
fi
|
||||
|
||||
cp "${LB_BASE}"/data/debian-cd/${LB_PARENT_DISTRIBUTION}/${LB_ARCHITECTURES}_netinst_udeb_include binary/.disk/udeb_include
|
||||
for LOCATION in "${LIVE_BUILD}/data/debian-cd" /usr/share/live/build/data/debian-cd
|
||||
do
|
||||
if [ -e "${LOCATION}" ]
|
||||
then
|
||||
cp "${LOCATION}/${LB_PARENT_DISTRIBUTION}/${LB_ARCHITECTURES}_netinst_udeb_include" binary/.disk/udeb_include
|
||||
|
||||
continue
|
||||
fi
|
||||
done
|
||||
|
||||
if [ "${LB_DEBIAN_INSTALLER}" = "live" ]
|
||||
then
|
||||
|
@ -167,7 +183,15 @@ case "${LB_DEBIAN_INSTALLER}" in
|
|||
|
||||
echo "${TITLE} ${VERSION} \"${DISTRIBUTION}\" - ${STRING} LIVE/BC Binary $(date +%Y%m%d-%H:%M)" > binary/.disk/info
|
||||
|
||||
cp "${LB_BASE}"/data/debian-cd/${LB_PARENT_DISTRIBUTION}/${LB_ARCHITECTURES}_businesscard_udeb_include binary/.disk/udeb_include
|
||||
for LOCATION in "${LIVE_BUILD}/data/debian-cd" /usr/share/live/build/data/debian-cd
|
||||
do
|
||||
if [ -e "${LOCATION}" ]
|
||||
then
|
||||
cp "${LOCATION}/${LB_PARENT_DISTRIBUTION}/${LB_ARCHITECTURES}_businesscard_udeb_include" binary/.disk/udeb_include
|
||||
|
||||
continue
|
||||
fi
|
||||
done
|
||||
;;
|
||||
|
||||
false)
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'installs grub into binary')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'installs grub2 into binary')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'build binary image')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'execute hooks in binary')"
|
||||
|
@ -43,12 +43,17 @@ Create_lockfile .lock
|
|||
# Running hooks
|
||||
for _HOOK in ${LB_BINARY_HOOKS}
|
||||
do
|
||||
if [ -e "${LB_BASE}/hooks/???-${_HOOK}.binary" ]
|
||||
then
|
||||
cd binary
|
||||
./"${LB_BASE}/hooks/???-${_HOOK}.binary" || { Echo_error "${_HOOK} failed (exit non-zero). You should check for errors."; exit 1 ;}
|
||||
cd "${OLDPWD}"
|
||||
fi
|
||||
for LOCATION in "${LIVE_BUILD}/hooks" /usr/share/live/build/hooks
|
||||
do
|
||||
if [ -e "${LOCATION}/hooks/???-${_HOOK}.binary" ]
|
||||
then
|
||||
cd binary
|
||||
./"${LOCATION}/hooks/???-${_HOOK}.binary" || { Echo_error "${_HOOK} failed (exit non-zero). You should check for errors."; exit 1 ;}
|
||||
cd "${OLDPWD}"
|
||||
|
||||
continue
|
||||
fi
|
||||
done
|
||||
done
|
||||
|
||||
## Processing local hooks
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'copy files into binary')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'build iso binary image')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'install linux-image into binary')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'copy files into binary')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'create manifest')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'installs a memtest into binary')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'build netboot binary image')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'install local packages into binary')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'build rootfs image')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'installs silo into binary')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'installs syslinux into binary')"
|
||||
|
@ -158,7 +158,12 @@ then
|
|||
_SOURCE="config/bootloaders/${_BOOTLOADER}"
|
||||
else
|
||||
# Internal system copy
|
||||
_SOURCE="${LB_BASE:-/usr/share/live/build}/bootloaders/${_BOOTLOADER}"
|
||||
if [ -n "${LIVE_BUILD}" ]
|
||||
then
|
||||
_SOURCE="${LIVE_BUILD}/bootloaders/${_BOOTLOADER}"
|
||||
else
|
||||
_SOURCE="/usr/share/live/build/bootloaders/${_BOOTLOADER}"
|
||||
fi
|
||||
fi
|
||||
else
|
||||
# External copy from chroot or system
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'build harddisk binary image')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'build binary image')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'copy win32-loader into binary')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'installs yaboot into binary')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'build zsync control files')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Automatically populating config tree
|
||||
if [ -x auto/config ] && [ ! -e .build/config ]
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'cache bootstrap stage')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'bootstrap a Debian system with cdebootstrap(1)')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'bootstrap by copying the host system')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'bootstrap a Debian system with debootstrap(8)')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Automatically populating config tree
|
||||
if [ -x auto/config ] && [ ! -e .build/config ]
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Automatically populating config tree
|
||||
if [ -x auto/config ] && [ ! -e .build/config ]
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'manage /etc/apt/apt.conf')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'manage /etc/apt/sources.list')"
|
||||
|
@ -32,6 +32,14 @@ Require_stagefile .build/config .build/bootstrap
|
|||
|
||||
_LB_LOCAL_KEY_EMAIL="live-build-local-key@invalid"
|
||||
|
||||
# FIXME: this is ugly
|
||||
if [ -n "${LIVE_BUILD}" ]
|
||||
then
|
||||
_BASE="${LIVE_BUILD}"
|
||||
else
|
||||
_BASE="/usr/share/live/build"
|
||||
fi
|
||||
|
||||
case "${LB_DERIVATIVE}" in
|
||||
true)
|
||||
_PARENT_FILE="sources.list.d/debian.list"
|
||||
|
@ -207,44 +215,44 @@ EOF
|
|||
|
||||
# Prefer archives from the config tree
|
||||
# over the global ones.
|
||||
if ! ls "${LB_BASE}/archives/${REPOSITORY}"* > /dev/null 2>&1
|
||||
if ! ls "${_BASE}/archives/${REPOSITORY}"* > /dev/null 2>&1
|
||||
then
|
||||
continue
|
||||
fi
|
||||
|
||||
# Adding sources.list entries (chroot)
|
||||
if [ -e "${LB_BASE}/archives/${REPOSITORY}.chroot" ]
|
||||
if [ -e "${_BASE}/archives/${REPOSITORY}.chroot" ]
|
||||
then
|
||||
sed -e "s|@DISTRIBUTION@|${_DISTRIBUTION}|g" \
|
||||
-e "s|@ARCHIVE_AREAS@|${LB_PARENT_ARCHIVE_AREAS}|g" \
|
||||
"${LB_BASE}/archives/${REPOSITORY}.chroot" > \
|
||||
"${_BASE}/archives/${REPOSITORY}.chroot" > \
|
||||
"chroot/etc/apt/sources.list.d/${REPOSITORY}.list"
|
||||
elif [ -e "${LB_BASE}/archives/${REPOSITORY}" ]
|
||||
elif [ -e "${_BASE}/archives/${REPOSITORY}" ]
|
||||
then
|
||||
sed -e "s|@DISTRIBUTION@|${_DISTRIBUTION}|g" \
|
||||
-e "s|@ARCHIVE_AREAS@|${LB_PARENT_ARCHIVE_AREAS}|g" \
|
||||
"${LB_BASE}/archives/${REPOSITORY}" > \
|
||||
"${_BASE}/archives/${REPOSITORY}" > \
|
||||
"chroot/etc/apt/sources.list.d/${REPOSITORY}.list"
|
||||
fi
|
||||
|
||||
# Adding pinning preferences (chroot)
|
||||
if [ -e "${LB_BASE}/archives/${REPOSITORY}.pref" ]
|
||||
if [ -e "${_BASE}/archives/${REPOSITORY}.pref" ]
|
||||
then
|
||||
cp "${LB_BASE}/archives/${REPOSITORY}.pref" chroot/etc/apt/sources.list.d
|
||||
elif [ -e "${LB_BASE}/archives/${REPOSITORY}.pref.chroot" ]
|
||||
cp "${_BASE}/archives/${REPOSITORY}.pref" chroot/etc/apt/sources.list.d
|
||||
elif [ -e "${_BASE}/archives/${REPOSITORY}.pref.chroot" ]
|
||||
then
|
||||
cp "${LB_BASE}/archives/${REPOSITORY}.pref.chroot" "chroot/etc/apt/sources.list.d/${REPOSITORY}.pref"
|
||||
cp "${_BASE}/archives/${REPOSITORY}.pref.chroot" "chroot/etc/apt/sources.list.d/${REPOSITORY}.pref"
|
||||
fi
|
||||
|
||||
if [ "${LB_APT_SECURE}" != false ]
|
||||
then
|
||||
# Adding archive signing keys (chroot)
|
||||
if [ -e "${LB_BASE}/archives/${REPOSITORY}.key.chroot" ]
|
||||
if [ -e "${_BASE}/archives/${REPOSITORY}.key.chroot" ]
|
||||
then
|
||||
cat "${LB_BASE}/archives/${REPOSITORY}.key.chroot" | Chroot chroot "apt-key add -"
|
||||
elif [ -e "${LB_BASE}/archives/${REPOSITORY}.key" ]
|
||||
cat "${_BASE}/archives/${REPOSITORY}.key.chroot" | Chroot chroot "apt-key add -"
|
||||
elif [ -e "${_BASE}/archives/${REPOSITORY}.key" ]
|
||||
then
|
||||
cat "${LB_BASE}/archives/${REPOSITORY}.key" | Chroot chroot "apt-key add -"
|
||||
cat "${_BASE}/archives/${REPOSITORY}.key" | Chroot chroot "apt-key add -"
|
||||
fi
|
||||
fi
|
||||
done
|
||||
|
@ -763,44 +771,44 @@ EOF
|
|||
|
||||
# Prefer archives from the config tree
|
||||
# over the global ones.
|
||||
if ! ls "${LB_BASE}/archives/${REPOSITORY}"* > /dev/null 2>&1
|
||||
if ! ls "${_BASE}/archives/${REPOSITORY}"* > /dev/null 2>&1
|
||||
then
|
||||
continue
|
||||
fi
|
||||
|
||||
# Adding sources.list entries (binary)
|
||||
if [ -e "${LB_BASE}/archives/${REPOSITORY}.binary" ]
|
||||
if [ -e "${_BASE}/archives/${REPOSITORY}.binary" ]
|
||||
then
|
||||
sed -e "s|@DISTRIBUTION@|${LB_PARENT_DISTRIBUTION}|g" \
|
||||
-e "s|@ARCHIVE_AREAS@|${LB_PARENT_ARCHIVE_AREAS}|g" \
|
||||
"${LB_BASE}/archives/${REPOSITORY}.binary" > \
|
||||
"${_BASE}/archives/${REPOSITORY}.binary" > \
|
||||
"chroot/etc/apt/sources.list.d/${REPOSITORY}.list"
|
||||
elif [ -e "${LB_BASE}/archives/${REPOSITORY}" ]
|
||||
elif [ -e "${_BASE}/archives/${REPOSITORY}" ]
|
||||
then
|
||||
sed -e "s|@DISTRIBUTION@|${LB_PARENT_DISTRIBUTION}|g" \
|
||||
-e "s|@ARCHIVE_AREAS@|${LB_PARENT_ARCHIVE_AREAS}|g" \
|
||||
"${LB_BASE}/archives/${REPOSITORY}" > \
|
||||
"${_BASE}/archives/${REPOSITORY}" > \
|
||||
"chroot/etc/apt/sources.list.d/${REPOSITORY}.list"
|
||||
fi
|
||||
|
||||
# Adding pinning preferences (binary)
|
||||
if [ -e "${LB_BASE}/archives/${REPOSITORY}.pref" ]
|
||||
if [ -e "${_BASE}/archives/${REPOSITORY}.pref" ]
|
||||
then
|
||||
cp "${LB_BASE}/archives/${REPOSITORY}.pref" chroot/etc/apt/sources.list.d
|
||||
elif [ -e "${LB_BASE}/archives/${REPOSITORY}.pref.binary" ]
|
||||
cp "${_BASE}/archives/${REPOSITORY}.pref" chroot/etc/apt/sources.list.d
|
||||
elif [ -e "${_BASE}/archives/${REPOSITORY}.pref.binary" ]
|
||||
then
|
||||
cp "${LB_BASE}/archives/${REPOSITORY}.pref.binary" "chroot/etc/apt/sources.list.d/${REPOSITORY}.pref"
|
||||
cp "${_BASE}/archives/${REPOSITORY}.pref.binary" "chroot/etc/apt/sources.list.d/${REPOSITORY}.pref"
|
||||
fi
|
||||
|
||||
if [ "${LB_APT_SECURE}" != false ]
|
||||
then
|
||||
# Adding archive signing keys (binary)
|
||||
if [ -e "${LB_BASE}/archives/${REPOSITORY}.key.binary" ]
|
||||
if [ -e "${_BASE}/archives/${REPOSITORY}.key.binary" ]
|
||||
then
|
||||
cat "${LB_BASE}/archives/${REPOSITORY}.key.binary" | Chroot chroot "apt-key add -"
|
||||
elif [ -e "${LB_BASE}/archives/${REPOSITORY}.key" ]
|
||||
cat "${_BASE}/archives/${REPOSITORY}.key.binary" | Chroot chroot "apt-key add -"
|
||||
elif [ -e "${_BASE}/archives/${REPOSITORY}.key" ]
|
||||
then
|
||||
cat "${LB_BASE}/archives/${REPOSITORY}.key" | Chroot chroot "apt-key add -"
|
||||
cat "${_BASE}/archives/${REPOSITORY}.key" | Chroot chroot "apt-key add -"
|
||||
fi
|
||||
fi
|
||||
done
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'cache chroot stage')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'manage /etc/debian_chroot')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'mount /dev/pts')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'manage /sbin/dpkg')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'execute hacks in chroot')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'execute hooks in chroot')"
|
||||
|
@ -52,11 +52,15 @@ mount -o remount,ro,bind config chroot/root/config
|
|||
# Copying hooks
|
||||
for _HOOK in ${LB_CHROOT_HOOKS}
|
||||
do
|
||||
if [ -e "${LB_BASE}"/hooks/???-"${_HOOK}".chroot ]
|
||||
then
|
||||
mkdir -p chroot/root/lb_chroot_hooks
|
||||
cp "${LB_BASE}"/hooks/???-"${_HOOK}".chroot chroot/root/lb_chroot_hooks
|
||||
fi
|
||||
for LOCATION in "${LIVE_BUILD}/hooks" /usr/share/live/build/hooks
|
||||
do
|
||||
if [ -e "${LOCATION}/hooks/???-${_HOOK}.binary" ]
|
||||
then
|
||||
mkdir -p chroot/root/lb_chroot_hooks
|
||||
cp "${LOCATION}"/hooks/???-"${_HOOK}".chroot chroot/root/lb_chroot_hooks
|
||||
continue
|
||||
fi
|
||||
done
|
||||
done
|
||||
|
||||
# Running hooks
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'manage /bin/hostname')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'manage /etc/hosts')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'copy files into chroot')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'install queued packages into chroot')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'make build interactive')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'schedule kernel packages for installation')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'schedule live packages for installation')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'apply local patches against chroot')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'queue install of package lists into chroot')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'execute local preseed in chroot')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'mount /proc')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'manage /etc/resolv.conf')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'mount /selinux')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'mount /sys')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'manage /usr/sbin/policy-rc.d')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'install task lists into chroot')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'use tmpfs to speedup the build')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'manage /sbin/initctl')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Read meta config
|
||||
if [ "${1}" != "noauto" ] && [ -x auto/clean ]
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Read meta config
|
||||
if [ "${1}" != "noauto" ] && [ -x auto/config ]
|
||||
|
|
|
@ -1,19 +0,0 @@
|
|||
#!/bin/sh
|
||||
|
||||
## live-build(7) - System Build Scripts
|
||||
## Copyright (C) 2006-2012 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.
|
||||
|
||||
|
||||
LB_BASE="${PWD}/live-build"
|
||||
PATH="${LB_BASE}/scripts/build:${PATH}"
|
||||
|
||||
export LB_BASE PATH
|
||||
|
||||
if [ ! -z "${1}" ]
|
||||
then
|
||||
exec lb "${@}"
|
||||
fi
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Automatically populating config tree
|
||||
if [ -x auto/config ] && [ ! -e .build/config ]
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'create source checksums')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'debian sources')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'copy debian-live config into source')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'install disk information into source')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'build source image')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'build iso source image')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'build source tarball')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'build source image')"
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
set -e
|
||||
|
||||
# Including common functions
|
||||
. "${LB_BASE:-/usr/share/live/build}"/scripts/build.sh
|
||||
( . "${LIVE_BUILD}/scripts/build.sh" > /dev/null 2>&1 || true ) || . /usr/lib/live/build.sh
|
||||
|
||||
# Setting static variables
|
||||
DESCRIPTION="$(Echo 'ensure that a system is built as root')"
|
||||
|
|
Loading…
Reference in New Issue