Dropping global package-lists entirely, only local package lists within the config tree are support.
This commit is contained in:
parent
e81b1c6f7a
commit
81fb429453
2
Makefile
2
Makefile
|
@ -40,7 +40,7 @@ build:
|
|||
install:
|
||||
# Installing shared data
|
||||
mkdir -p $(DESTDIR)/usr/share/live/build
|
||||
cp -r frontends/cgi data functions package-lists templates VERSION $(DESTDIR)/usr/share/live/build
|
||||
cp -r frontends/cgi data functions templates VERSION $(DESTDIR)/usr/share/live/build
|
||||
cp -r share/* $(DESTDIR)/usr/share/live/build
|
||||
|
||||
# Installing executables
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
#!/bin/sh
|
||||
|
||||
lb config noauto \
|
||||
--package-lists "standard" \
|
||||
"${@}"
|
||||
|
|
|
@ -66,8 +66,6 @@ else
|
|||
# Standard options
|
||||
LB_BINARY_IMAGES=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])binary_images=[-a-z]+' | cut -f 2 -d '=' | head -n1)
|
||||
LB_DISTRIBUTION=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])distribution=[a-z]+' | cut -f 2 -d '=' | head -n1)
|
||||
LB_PACKAGE_LISTS=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])package_lists=[-0-9a-z]+' | cut -f 2 -d '=' | head -n1)
|
||||
LB_TASKS=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])tasks=[-0-9a-zA-Z. _]+' | cut -f 2 -d '=' | head -n1)
|
||||
|
||||
# Advanced bootstrap options
|
||||
LB_ARCHITECTURES=$(echo "${QUERY_STRING}" | grep -oE '(^|[?&])architectures=[0-9a-z]+' | cut -f 2 -d '=' | head -n1)
|
||||
|
@ -129,8 +127,6 @@ else
|
|||
-e "s/QUEUENUM/${_QUEUENUM}/" \
|
||||
-e "s/LB_BINARY_IMAGES/${LB_BINARY_IMAGES}/" \
|
||||
-e "s/LB_DISTRIBUTION/${LB_DISTRIBUTION}/" \
|
||||
-e "s/LB_PACKAGE_LISTS/${LB_PACKAGE_LISTS}/" \
|
||||
-e "s/LB_TASKS/${LB_TASKS}/" \
|
||||
-e "s/_LB_CGIPACKAGES/${_LB_CGIPACKAGES}/" \
|
||||
-e "s/LB_ARCHITECTURES/${LB_ARCHITECTURES}/" \
|
||||
-e "s/LB_BOOTSTRAP_FLAVOUR/${LB_BOOTSTRAP_FLAVOUR}/" \
|
||||
|
@ -176,8 +172,6 @@ _LB_CGIPACKAGES="${_LB_CGIPACKAGES}"
|
|||
# Standard options
|
||||
LB_BINARY_IMAGES="${LB_BINARY_IMAGES}"
|
||||
LB_DISTRIBUTION="${LB_DISTRIBUTION}"
|
||||
LB_PACKAGE_LISTS="${LB_PACKAGE_LISTS}"
|
||||
LB_TASKS="${LB_TASKS}"
|
||||
|
||||
# Advanced bootstrap options
|
||||
LB_ARCHITECTURES="${LB_ARCHITECTURES}"
|
||||
|
@ -219,7 +213,7 @@ LB_MODE="debian"
|
|||
EOF
|
||||
|
||||
echo "$(date +%b\ %d\ %H:%M:%S) ${_HOSTNAME} live-build-cgi: add web build (${_BUILD}) from ${REMOTE_ADDR}." >> /var/log/live
|
||||
echo "$(date +%b\ %d\ %H:%M:%S) ${_HOSTNAME} live-build-cgi: options ${_BUILD} |email ${_EMAIL}|binary_images ${LB_BINARY_IMAGES}|distribution ${LB_DISTRIBUTION}|package_lists ${LB_PACKAGE_LISTS}|tasks ${LB_TASKS}|cgipackages ${_LB_CGIPACKAGES}|architectures ${LB_ARCHITECTURES}|archive_areas ${LB_ARCHIVE_AREAS}|chroot_filesystem ${LB_CHROOT_FILESYSTEM}|linux_flavours ${LB_LINUX_FLAVOURS}|security ${LB_SECURITY}|binary_indices ${LB_BINARY_INDICES}|bootappend_install ${LB_BOOTAPPEND_INSTALL}|bootappend_live ${LB_BOOTAPPEND_LIVE}|bootloader ${LB_BOOTLOADER}|debian_installer ${LB_DEBIAN_INSTALLER}|iso_application ${LB_ISO_APPLICATION}|iso_preparer ${LB_ISO_PREPARER}|iso_publisher ${LB_ISO_PUBLISHER}|iso_volume ${LB_ISO_VOLUME}|memtest ${LB_MEMTEST}|net_path ${LB_NET_ROOT_PATH}|net_server ${LB_NET_ROOT_SERVER}|source_images ${LB_SOURCE_IMAGES}|sources ${LB_SOURCE}|custom_bootstrap ${_CUSTOM_BOOTSTRAP}|custom_binary ${_CUSTOM_BINARY}" >> /var/log/live
|
||||
echo "$(date +%b\ %d\ %H:%M:%S) ${_HOSTNAME} live-build-cgi: options ${_BUILD} |email ${_EMAIL}|binary_images ${LB_BINARY_IMAGES}|distribution ${LB_DISTRIBUTION}|cgipackages ${_LB_CGIPACKAGES}|architectures ${LB_ARCHITECTURES}|archive_areas ${LB_ARCHIVE_AREAS}|chroot_filesystem ${LB_CHROOT_FILESYSTEM}|linux_flavours ${LB_LINUX_FLAVOURS}|security ${LB_SECURITY}|binary_indices ${LB_BINARY_INDICES}|bootappend_install ${LB_BOOTAPPEND_INSTALL}|bootappend_live ${LB_BOOTAPPEND_LIVE}|bootloader ${LB_BOOTLOADER}|debian_installer ${LB_DEBIAN_INSTALLER}|iso_application ${LB_ISO_APPLICATION}|iso_preparer ${LB_ISO_PREPARER}|iso_publisher ${LB_ISO_PUBLISHER}|iso_volume ${LB_ISO_VOLUME}|memtest ${LB_MEMTEST}|net_path ${LB_NET_ROOT_PATH}|net_server ${LB_NET_ROOT_SERVER}|source_images ${LB_SOURCE_IMAGES}|sources ${LB_SOURCE}|custom_bootstrap ${_CUSTOM_BOOTSTRAP}|custom_binary ${_CUSTOM_BINARY}" >> /var/log/live
|
||||
fi
|
||||
|
||||
sed -e "s/VERSION/${VERSION}/" "${_TEMPLATES}"/footer.html
|
||||
|
|
|
@ -72,7 +72,6 @@ then
|
|||
_REMOTE_ADDR=`awk -F\" '/^REMOTE_ADDR=/{print $2}' ${_FILE}`
|
||||
_LB_ARCHITECTURES=`awk -F\" '/^LB_ARCHITECTURES=/{print $2}' ${_FILE}`
|
||||
_LB_DISTRIBUTION=`awk -F\" '/^LB_DISTRIBUTION=/{print $2}' ${_FILE}`
|
||||
_LB_PACKAGE_LISTS=`awk -F\" '/^LB_PACKAGE_LISTS=/{print $2}' ${_FILE}`i
|
||||
# Pull in the custom bootstrap
|
||||
_CUSTOM_BOOTSTRAP=`awk -F\" '/^_CUSTOM_BOOTSTRAP=/{print $2}' ${_FILE}`
|
||||
# Pull in the custom binary
|
||||
|
@ -124,10 +123,10 @@ then
|
|||
if [ "${_ERRORCONFIG}" -eq "0" ] && [ "${_ERRORBUILD}" -eq "0" ]
|
||||
then
|
||||
_STATUS="maybe-successful"
|
||||
echo "${_REMOTE_ADDR} - - `date +[%d/%b/%Y:%H:%m:%S\ %z]` \"${_BUILD} ${_LB_ARCHITECTURES}/${_LB_DISTRIBUTION}/${_LB_PACKAGE_LISTS}/${_LB_CGIPACKAGES}\" 200 - \"-\" \"\"">>/var/log/live-cgi.builds
|
||||
echo "${_REMOTE_ADDR} - - `date +[%d/%b/%Y:%H:%m:%S\ %z]` \"${_BUILD} ${_LB_ARCHITECTURES}/${_LB_DISTRIBUTION}/${_LB_CGIPACKAGES}\" 200 - \"-\" \"\"">>/var/log/live-cgi.builds
|
||||
else
|
||||
_STATUS="maybe-failed"
|
||||
echo "${_REMOTE_ADDR} - - `date +[%d/%b/%Y:%H:%m:%S\ %z]` \"${_BUILD} ${_LB_ARCHITECTURES}/${_LB_DISTRIBUTION}/${_LB_PACKAGE_LISTS}/${_LB_CGIPACKAGES}\" 404 - \"-\" \"\"">>/var/log/live-cgi.builds
|
||||
echo "${_REMOTE_ADDR} - - `date +[%d/%b/%Y:%H:%m:%S\ %z]` \"${_BUILD} ${_LB_ARCHITECTURES}/${_LB_DISTRIBUTION}/${_LB_CGIPACKAGES}\" 404 - \"-\" \"\"">>/var/log/live-cgi.builds
|
||||
fi
|
||||
|
||||
sed -e "s/BUILD/${_BUILD}/g" \
|
||||
|
|
|
@ -870,9 +870,6 @@ Set_defaults ()
|
|||
;;
|
||||
esac
|
||||
|
||||
# Setting package list
|
||||
LB_PACKAGE_LISTS="${LB_PACKAGE_LISTS:-standard}"
|
||||
|
||||
# Setting security updates option
|
||||
case "${LB_PARENT_DISTRIBUTION}" in
|
||||
jessie|sid)
|
||||
|
@ -1276,15 +1273,6 @@ Check_defaults ()
|
|||
fi
|
||||
fi
|
||||
|
||||
if echo ${LB_PACKAGE_LISTS} | grep -qs -E "(stripped|minimal)\b"
|
||||
then
|
||||
# aptitude + stripped|minimal
|
||||
if [ "${LB_APT}" = "aptitude" ]
|
||||
then
|
||||
Echo_warning "You selected LB_PACKAGE_LISTS='%s' and LB_APT='aptitude'" "${LB_PACKAGE_LIST}. This configuration is potentially unsafe, as aptitude is not used in the stripped/minimal package lists."
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ "${LB_DEBIAN_INSTALLER}" != "false" ]
|
||||
then
|
||||
# d-i true, no caching
|
||||
|
@ -1338,14 +1326,6 @@ Check_defaults ()
|
|||
Echo_warning "You have specified a value of LB_ISO_VOLUME that is too long; the maximum length is 32 characters."
|
||||
fi
|
||||
|
||||
if echo ${LB_PACKAGE_LISTS} | grep -qs -E "(stripped|minimal)\b"
|
||||
then
|
||||
if [ "${LB_APT_INDICES}" = "true" ]
|
||||
then
|
||||
Echo_warning "You have selected hook to minimise image size but you are still including package indices with your value of LB_APT_INDICES."
|
||||
fi
|
||||
fi
|
||||
|
||||
# Architectures to use foreign bootstrap for
|
||||
LB_BOOTSTRAP_QEMU_ARCHITECTURES="${LB_BOOTSTRAP_QEMU_ARCHITECTURES:-}"
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@ Expand_packagelist ()
|
|||
_LB_NESTED=0
|
||||
_LB_ENABLED=1
|
||||
|
||||
for _LB_SEARCH_PATH in ${@} "${LIVE_BUILD}/package-lists" /usr/share/live/build/package-lists
|
||||
for _LB_SEARCH_PATH in ${@}
|
||||
do
|
||||
if [ -e "${_LB_SEARCH_PATH}/${_LB_LIST_NAME}" ]
|
||||
then
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb\fP \- wrapper for live\-build programs
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary\fP \- Complete the binary stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_checksums\fP \- Complete the binary stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_chroot\fP \- Complete the binary stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_debian\-installer\fP \- Complete the binary stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_disk\fP \- Complete the binary stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_grub\fP \- Complete the binary stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_grub2\fP \- Complete the binary stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_hdd\fP \- Complete the binary stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_local\-hooks\fP \- Complete the binary stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_includes\fP \- Complete the binary stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_iso\fP \- Complete the binary stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_linux\-image\fP \- Complete the binary stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_manifest\fP \- Complete the binary stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_memtest\fP \- Complete the binary stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_net\fP \- Complete the binary stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_rootfs\fP \- Complete the binary stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_silo\fP \- Complete the binary stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_syslinux\fP \- Complete the binary stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_tar\fP \- Complete the binary stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_virtual\-hdd\fP \- Complete the binary stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_win32\-loader\fP \- Complete the binary stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_yaboot\fP \- Complete the binary stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb bootstrap\fP \- Complete the bootstrap stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb bootstrap_cache\fP \- Complete the bootstrap stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb bootstrap_cdebootstrap\fP \- Complete the bootstrap stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb bootstrap_copy\fP \- Complete the bootstrap stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb bootstrap_debootstrap\fP \- Complete the bootstrap stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb build\fP \- Complete the bootstrap, chroot, binary, and source stages
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb chroot\fP \- Complete the chroot stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb chroot_apt\fP \- Complete the chroot stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb chroot_archives\fP \- Complete the chroot stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb chroot_cache\fP \- Complete the chroot stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb chroot_debianchroot\fP \- Complete the chroot stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb chroot_devpts\fP \- Complete the chroot stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb chroot_dpkg\fP \- Complete the chroot stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb chroot_hacks\fP \- Complete the chroot stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb chroot_hooks\fP \- Complete the chroot stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb chroot_hostname\fP \- Complete the chroot stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb chroot_hosts\fP \- Complete the chroot stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb chroot_install\-packages\fP \- Complete the chroot stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb chroot_interactive\fP \- Complete the chroot stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb chroot_linux\-image\fP \- Complete the chroot stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb chroot_local\-patches\fP \- Complete the chroot stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb chroot_local\-preseed\fP \- Complete the chroot stage
|
||||
|
|
|
@ -1,47 +0,0 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb chroot_packagelists\fP \- Complete the chroot stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlb chroot_packagelists\fP [\fIlive\-build options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlb chroot_packagelists\fP is a low\-level command (plumbing) of
|
||||
\fIlive\-build\fP(7), the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlb chroot_packagelists\fP has no specific options but understands all
|
||||
generic live\-build options. See \fIlive\-build\fP(7) for a complete list of all
|
||||
generic live\-build options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-build\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-build.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-build and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by submitting a bugreport for the live\-build package in
|
||||
the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or by
|
||||
writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-build was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb chroot_packages\fP \- Complete the chroot stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb chroot_proc\fP \- Complete the chroot stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb chroot_resolv\fP \- Complete the chroot stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb chroot_selinuxfs\fP \- Complete the chroot stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb chroot_sysfs\fP \- Complete the chroot stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb chroot_sysv\-rc\fP \- Complete the chroot stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb chroot_upstart\fP \- Complete the chroot stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb clean\fP \- Clean build directory
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb config\fP \- Create config directory
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb source\fP \- Complete the source stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb source_checksums\fP \- Complete the source stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb source_debian\-live\fP \- Complete the source stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb source_debian\fP \- Complete the source stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb source_disk\fP \- Complete the source stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb source_hdd\fP \- Complete the source stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb source_iso\fP \- Complete the source stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb source_tar\fP \- Complete the source stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb source_virtual\-hdd\fP \- Complete the source stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb testroot\fP \- Ensure that a system is built as root
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 7 2012\-07\-28 3.0~a54\-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 7 2012\-07\-29 3.0~a54\-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlive\-build\fP \- the Debian Live tool suite
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb\fR \- wrapper for live\-build programs
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary\fR \- Complete the binary stage
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_checksums\fR \- Complete the binary stage
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_chroot\fR \- Complete the binary stage
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_debian\-installer\fR \- Complete the binary stage
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_disk\fR \- Complete the binary stage
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_grub\fR \- Complete the binary stage
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_grub2\fR \- Complete the binary stage
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_hdd\fR \- Complete the binary stage
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_local\-hooks\fR \- Complete the binary stage
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_includes\fR \- Complete the binary stage
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_iso\fR \- Complete the binary stage
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_linux\-image\fR \- Complete the binary stage
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_manifest\fR \- Complete the binary stage
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_memtest\fR \- Complete the binary stage
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_net\fR \- Complete the binary stage
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_rootfs\fR \- Complete the binary stage
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_silo\fR \- Complete the binary stage
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_syslinux\fR \- Complete the binary stage
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_tar\fR \- Complete the binary stage
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_virtual\-hdd\fR \- Complete the binary stage
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_win32\-loader\fR \- Complete the binary stage
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_yaboot\fR \- Complete the binary stage
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb bootstrap\fR \- Complete the bootstrap stage
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb bootstrap_cache\fR \- Complete the bootstrap stage
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb bootstrap_cdebootstrap\fR \- Complete the bootstrap stage
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb bootstrap_copy\fR \- Complete the bootstrap stage
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-BUILD 1 2012\-07\-28 3.0~a54-1 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2012\-07\-29 3.0~a54-1 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb bootstrap_debootstrap\fR \- Complete the bootstrap stage
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue