Removing unused debian-release mode.
This commit is contained in:
parent
41a68e4819
commit
d0a5dac971
|
@ -14,7 +14,7 @@ Set_defaults ()
|
|||
|
||||
LB_BASE="${LB_BASE:-/usr/share/live/build}"
|
||||
|
||||
# Setting mode (currently: debian, debian-release, emdebian, or ubuntu)
|
||||
# Setting mode (currently: debian, emdebian, progress, and ubuntu)
|
||||
LB_MODE="${LB_MODE:-debian}"
|
||||
|
||||
# Setting distribution name
|
||||
|
@ -179,7 +179,7 @@ Set_defaults ()
|
|||
|
||||
# Setting root directory
|
||||
case "${LB_MODE}" in
|
||||
debian|debian-release)
|
||||
debian)
|
||||
LB_ROOT="${LB_ROOT:-debian-live}"
|
||||
;;
|
||||
|
||||
|
@ -257,7 +257,7 @@ Set_defaults ()
|
|||
|
||||
# Setting mirror to fetch packages from
|
||||
case "${LB_MODE}" in
|
||||
debian|debian-release|progress)
|
||||
debian|progress)
|
||||
LB_MIRROR_BOOTSTRAP="${LB_MIRROR_BOOTSTRAP:-http://ftp.de.debian.org/debian/}"
|
||||
;;
|
||||
|
||||
|
@ -282,7 +282,7 @@ Set_defaults ()
|
|||
|
||||
# Setting security mirror to fetch packages from
|
||||
case "${LB_MODE}" in
|
||||
debian|debian-release|progress)
|
||||
debian|progress)
|
||||
LB_MIRROR_CHROOT_SECURITY="${LB_MIRROR_CHROOT_SECURITY:-http://security.debian.org/}"
|
||||
;;
|
||||
|
||||
|
@ -305,7 +305,7 @@ Set_defaults ()
|
|||
|
||||
# Setting volatile mirror to fetch packages from
|
||||
case "${LB_MODE}" in
|
||||
debian|debian-release|progress)
|
||||
debian|progress)
|
||||
LB_MIRROR_CHROOT_VOLATILE="${LB_MIRROR_CHROOT_VOLATILE:-${LB_MIRROR_CHROOT}}"
|
||||
;;
|
||||
|
||||
|
@ -328,7 +328,7 @@ Set_defaults ()
|
|||
|
||||
# Setting backports mirror to fetch packages from
|
||||
case "${LB_MODE}" in
|
||||
debian|debian-release)
|
||||
debian)
|
||||
LB_MIRROR_CHROOT_BACKPORTS="${LB_MIRROR_CHROOT_BACKPORTS:-http://backports.debian.org/debian-backports/}"
|
||||
;;
|
||||
|
||||
|
@ -339,7 +339,7 @@ Set_defaults ()
|
|||
|
||||
# Setting mirror which ends up in the image
|
||||
case "${LB_MODE}" in
|
||||
debian|debian-release|progress)
|
||||
debian|progress)
|
||||
LB_MIRROR_BINARY="${LB_MIRROR_BINARY:-http://cdn.debian.net/debian/}"
|
||||
;;
|
||||
|
||||
|
@ -362,7 +362,7 @@ Set_defaults ()
|
|||
|
||||
# Setting security mirror which ends up in the image
|
||||
case "${LB_MODE}" in
|
||||
debian|debian-release|progress)
|
||||
debian|progress)
|
||||
LB_MIRROR_BINARY_SECURITY="${LB_MIRROR_BINARY_SECURITY:-http://security.debian.org/}"
|
||||
;;
|
||||
|
||||
|
@ -385,7 +385,7 @@ Set_defaults ()
|
|||
|
||||
# Setting volatile mirror which ends up in the image
|
||||
case "${LB_MODE}" in
|
||||
debian|debian-release|progress)
|
||||
debian|progress)
|
||||
LB_MIRROR_BINARY_VOLATILE="${LB_MIRROR_BINARY_VOLATILE:-${LB_MIRROR_BINARY}}"
|
||||
;;
|
||||
|
||||
|
@ -408,7 +408,7 @@ Set_defaults ()
|
|||
|
||||
# Setting backports mirror which ends up in the image
|
||||
case "${LB_MODE}" in
|
||||
debian|debian-release)
|
||||
debian)
|
||||
LB_MIRROR_BINARY_BACKPORTS="${LB_MIRROR_BINARY_BACKPORTS:-http://backports.debian.org/debian-backports/}"
|
||||
;;
|
||||
|
||||
|
@ -451,7 +451,7 @@ Set_defaults ()
|
|||
|
||||
# Setting keyring packages
|
||||
case "${LB_MODE}" in
|
||||
debian|debian-release)
|
||||
debian)
|
||||
LB_KEYRING_PACKAGES="${LB_KEYRING_PACKAGES:-debian-archive-keyring}"
|
||||
;;
|
||||
|
||||
|
@ -739,7 +739,7 @@ Set_defaults ()
|
|||
|
||||
# Setting debian-installer option
|
||||
case "${LB_MODE}" in
|
||||
debian|debian-release|progress)
|
||||
debian|progress)
|
||||
LB_DEBIAN_INSTALLER="${LB_DEBIAN_INSTALLER:-live}"
|
||||
;;
|
||||
|
||||
|
@ -753,7 +753,7 @@ Set_defaults ()
|
|||
|
||||
# Setting debian-installer-gui
|
||||
case "${LB_MODE}" in
|
||||
debian|debian-release|progress)
|
||||
debian|progress)
|
||||
LB_DEBIAN_INSTALLER_GUI="${LB_DEBIAN_INSTALLER_GUI:-true}"
|
||||
;;
|
||||
|
||||
|
@ -820,7 +820,7 @@ Set_defaults ()
|
|||
|
||||
# Setting hostname
|
||||
case "${LB_MODE}" in
|
||||
debian|debian-release)
|
||||
debian)
|
||||
LB_HOSTNAME="${LB_HOSTNAME:-debian}"
|
||||
;;
|
||||
|
||||
|
@ -831,7 +831,7 @@ Set_defaults ()
|
|||
|
||||
# Setting iso author
|
||||
case "${LB_MODE}" in
|
||||
debian|debian-release)
|
||||
debian)
|
||||
LB_ISO_APPLICATION="${LB_ISO_APPLICATION:-Debian Live}"
|
||||
;;
|
||||
|
||||
|
@ -868,18 +868,12 @@ Set_defaults ()
|
|||
LB_ISO_VOLUME="${LB_ISO_VOLUME:-Debian ${LB_DISTRIBUTION} \$(date +%Y%m%d-%H:%M)}"
|
||||
;;
|
||||
|
||||
debian-release)
|
||||
eval VERSION="$`echo RELEASE_${LB_DISTRIBUTION}`"
|
||||
LB_ISO_VOLUME="${LB_ISO_VOLUME:-Debian ${VERSION} ${LB_ARCHITECTURES} live}"
|
||||
;;
|
||||
|
||||
emdebian)
|
||||
LB_ISO_VOLUME="${LB_ISO_VOLUME:-Emdebian ${LB_DISTRIBUTION} \$(date +%Y%m%d-%H:%M)}"
|
||||
;;
|
||||
|
||||
progress)
|
||||
eval VERSION="$`echo RELEASE_${LB_DISTRIBUTION}`"
|
||||
LB_ISO_VOLUME="${LB_ISO_VOLUME:-Progress Llinux ${VERSION}}"
|
||||
LB_ISO_VOLUME="${LB_ISO_VOLUME:-Progress ${LB_DISTRIBUTION} \$(date +%Y%m%d-%H:%M)}"
|
||||
;;
|
||||
|
||||
ubuntu)
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_local\-includes\fP \- Complete the binary stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_local\-packagelists\fP \- Complete the binary stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_usb\fP \- Complete the binary stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb chroot_local\-hooks\fP \- Complete the chroot stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb chroot_local\-includes\fP \- Complete the chroot stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb chroot_local\-packagelists\fP \- Complete the chroot stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb chroot_local\-packages\fP \- Complete the chroot stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb chroot_local\-preseed\fP \- Complete the chroot stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb chroot_localization\fP \- Complete the chroot stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb chroot_packagelists\fP \- Complete the chroot stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb chroot_preseed\fP \- Complete the chroot stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb chroot_sources\fP \- Complete the chroot stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb chroot_tasks\fP \- Complete the chroot stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb config\fP \- Create config directory
|
||||
|
@ -508,10 +508,7 @@ values at latest when you distributing custom and unofficial images.
|
|||
sets the VOLUME field in the header of a resulting CD/DVD and defaults to
|
||||
\&'(\fIMODE\fP) (\fIDISTRIBUTION\fP) (\fIDATE\fP)' whereas MODE is expanded to the name
|
||||
of the mode in use, DISTRIBUTION the distribution name, and DATE with the
|
||||
current date and time of the generation. When running in debian\-release mode
|
||||
however, it will instead default to 'Debian (\fIVERSION\fP) (\fIARCHITECTURE\fP)
|
||||
live' where VERSION becomes the numerical version of the release being built
|
||||
and ARCHITECTURE becomes the name of the architecture.
|
||||
current date and time of the generation.
|
||||
.IP "\fB\-\-jffs2\-eraseblock\fP \fISIZE\fP" 4
|
||||
sets the eraseblock size for a JFFS2 (Second Journalling Flash File System)
|
||||
filesystem. The default is 64 KiB. If you use an erase block size different
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb local\fP \- wrapper for local live\-build programs
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb source_net\fP \- Complete the source stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb source_usb\fP \- Complete the source stage
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-BUILD 1 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "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 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 7 2011\-01\-07 3.0~a10 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlive\-build\fP \- the Debian Live tool suite
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-BUILD 1 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb\fR \- wrapper for live\-build programs
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-BUILD 1 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary\fR \- Complete the binary stage
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-BUILD 1 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_checksums\fR \- Complete the binary stage
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-BUILD 1 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_chroot\fR \- Complete the binary stage
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-BUILD 1 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_debian\-installer\fR \- Complete the binary stage
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-BUILD 1 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_disk\fR \- Complete the binary stage
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-BUILD 1 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_grub\fR \- Complete the binary stage
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-BUILD 1 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_grub2\fR \- Complete the binary stage
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-BUILD 1 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_includes\fR \- Complete the binary stage
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-BUILD 1 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_iso\fR \- Complete the binary stage
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-BUILD 1 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_linux\-image\fR \- Complete the binary stage
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-BUILD 1 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_local\-hooks\fR \- Complete the binary stage
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-BUILD 1 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_local\-includes\fR \- Complete the binary stage
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-BUILD 1 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_local-packagelists\fR \- Complete the binary stage
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-BUILD 1 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_manifest\fR \- Complete the binary stage
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-BUILD 1 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_memtest\fR \- Complete the binary stage
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-BUILD 1 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_net\fR \- Complete the binary stage
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-BUILD 1 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_rootfs\fR \- Complete the binary stage
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-BUILD 1 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_silo\fR \- Complete the binary stage
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-BUILD 1 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_syslinux\fR \- Complete the binary stage
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-BUILD 1 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_tar\fR \- Complete the binary stage
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-BUILD 1 2011\-01\-02 3.0~a10 "Debian Live Project"
|
||||
.TH LIVE\-BUILD 1 2011\-01\-07 3.0~a10 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlb binary_usb\fR \- Complete the binary stage
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue