Renaming --chroot-build to --build-with-chroot.
This commit is contained in:
parent
7b0ae09852
commit
bbce078bb7
|
@ -817,7 +817,7 @@ Set_defaults ()
|
|||
LH_CHECKSUMS="${LH_CHECKSUMS:-md5}"
|
||||
|
||||
# Setting chroot option
|
||||
LH_CHROOT_BUILD="${LH_CHROOT_BUILD:-true}"
|
||||
LH_BUILD_WITH_CHROOT="${LH_BUILD_WITH_CHROOT:-true}"
|
||||
|
||||
# Setting debian-installer option
|
||||
LH_DEBIAN_INSTALLER="${LH_DEBIAN_INSTALLER:-false}"
|
||||
|
|
|
@ -28,7 +28,7 @@ Check_package ()
|
|||
|
||||
Install_package ()
|
||||
{
|
||||
if [ -n "${_LH_PACKAGES}" ] && [ "${LH_CHROOT_BUILD}" != "false" ]
|
||||
if [ -n "${_LH_PACKAGES}" ] && [ "${LH_BUILD_WITH_CHROOT}" != "false" ]
|
||||
then
|
||||
case "${LH_APT}" in
|
||||
apt|apt-get)
|
||||
|
@ -44,7 +44,7 @@ Install_package ()
|
|||
|
||||
Remove_package ()
|
||||
{
|
||||
if [ -n "${_LH_PACKAGES}" ] && [ "${LH_CHROOT_BUILD}" != "false" ]
|
||||
if [ -n "${_LH_PACKAGES}" ] && [ "${LH_BUILD_WITH_CHROOT}" != "false" ]
|
||||
then
|
||||
case "${LH_APT}" in
|
||||
apt|apt-get)
|
||||
|
@ -68,7 +68,7 @@ Check_installed ()
|
|||
FILE="${1}"
|
||||
PACKAGE="${2}"
|
||||
|
||||
case "${LH_CHROOT_BUILD}" in
|
||||
case "${LH_BUILD_WITH_CHROOT}" in
|
||||
true)
|
||||
if Chroot chroot "dpkg-query -s ${PACKAGE}" 2> /dev/null | grep -qs "Status: install"
|
||||
then
|
||||
|
|
|
@ -29,7 +29,7 @@ Setup_cleanup
|
|||
# Preparing root filesystem
|
||||
lh binary_chroot ${*}
|
||||
|
||||
if [ "${LH_CHROOT_BUILD}" = "true" ]
|
||||
if [ "${LH_BUILD_WITH_CHROOT}" = "true" ]
|
||||
then
|
||||
# Configuring chroot
|
||||
lh chroot_devpts install ${*}
|
||||
|
@ -67,7 +67,7 @@ lh binary_local-includes ${*}
|
|||
lh binary_local-hooks ${*}
|
||||
lh binary_checksums ${*}
|
||||
|
||||
if [ "${LH_CHROOT_BUILD}" != "true" ]
|
||||
if [ "${LH_BUILD_WITH_CHROOT}" != "true" ]
|
||||
then
|
||||
lh chroot_devpts install ${*}
|
||||
lh chroot_proc install ${*}
|
||||
|
@ -82,7 +82,7 @@ lh binary_tar ${*}
|
|||
lh binary_usb ${*}
|
||||
lh binary_virtual-hdd ${*}
|
||||
|
||||
if [ "${LH_CHROOT_BUILD}" = "true" ]
|
||||
if [ "${LH_BUILD_WITH_CHROOT}" = "true" ]
|
||||
then
|
||||
# Deconfiguring chroot
|
||||
rm -f .stage/chroot_sources
|
||||
|
|
|
@ -67,7 +67,7 @@ then
|
|||
find /dev | cpio -dmpu chroot
|
||||
fi
|
||||
|
||||
if [ "${LH_CHROOT_BUILD}" = "false" ]
|
||||
if [ "${LH_BUILD_WITH_CHROOT}" = "false" ]
|
||||
then
|
||||
exit 0
|
||||
fi
|
||||
|
|
|
@ -85,7 +85,7 @@ Install_package
|
|||
|
||||
Echo_message "Encrypting binary/%s/filesystem.%s with %s..." "${INITFS}" "${LH_CHROOT_FILESYSTEM}" "${LH_ENCRYPTION}"
|
||||
|
||||
if [ "${LH_CHROOT_BUILD}" = "true" ]
|
||||
if [ "${LH_BUILD_WITH_CHROOT}" = "true" ]
|
||||
then
|
||||
# Moving image
|
||||
mv binary/${INITFS}/filesystem.${LH_CHROOT_FILESYSTEM} chroot
|
||||
|
@ -100,7 +100,7 @@ do
|
|||
Echo " (Passwords must be at least 20 characters long)"
|
||||
echo
|
||||
|
||||
case "${LH_CHROOT_BUILD}" in
|
||||
case "${LH_BUILD_WITH_CHROOT}" in
|
||||
true)
|
||||
if Chroot chroot aespipe -e ${LH_ENCRYPTION} -T \
|
||||
< chroot/filesystem.${LH_CHROOT_FILESYSTEM} \
|
||||
|
|
|
@ -285,7 +285,7 @@ case ${LH_BINARY_IMAGES} in
|
|||
;;
|
||||
esac
|
||||
|
||||
if [ "${LH_CHROOT_BUILD}" = "false" ]
|
||||
if [ "${LH_BUILD_WITH_CHROOT}" = "false" ]
|
||||
then
|
||||
FILES="$(echo ${FILES} | sed -e 's|chroot||g')"
|
||||
fi
|
||||
|
|
|
@ -258,7 +258,7 @@ case ${LH_BINARY_IMAGES} in
|
|||
;;
|
||||
esac
|
||||
|
||||
if [ "${LH_CHROOT_BUILD}" = "false" ]
|
||||
if [ "${LH_BUILD_WITH_CHROOT}" = "false" ]
|
||||
then
|
||||
FILES="$(echo ${FILES} | sed -e 's|chroot||g')"
|
||||
fi
|
||||
|
|
|
@ -199,7 +199,7 @@ EOF
|
|||
|
||||
fi
|
||||
|
||||
case "${LH_CHROOT_BUILD}" in
|
||||
case "${LH_BUILD_WITH_CHROOT}" in
|
||||
true)
|
||||
# Moving image
|
||||
mv binary.sh chroot
|
||||
|
|
|
@ -48,7 +48,7 @@ then
|
|||
exit 0
|
||||
fi
|
||||
|
||||
if [ "${LH_CHROOT_BUILD}" = "true" ]
|
||||
if [ "${LH_BUILD_WITH_CHROOT}" = "true" ]
|
||||
then
|
||||
|
||||
if [ -f chroot/usr/sbin/grub ] && [ ! -f chroot/boot/grub/menu.lst ]
|
||||
|
@ -94,7 +94,7 @@ Check_multiarchitecture
|
|||
mkdir -p "${DESTDIR}"
|
||||
|
||||
# Installing memtest
|
||||
case "${LH_CHROOT_BUILD}" in
|
||||
case "${LH_BUILD_WITH_CHROOT}" in
|
||||
true)
|
||||
cp chroot/boot/${LH_MEMTEST}.bin "${DESTDIR}"/memtest
|
||||
;;
|
||||
|
|
|
@ -83,7 +83,7 @@ do
|
|||
done
|
||||
|
||||
# Handling chroot excludes
|
||||
if [ "${LH_CHROOT_BUILD}" = "true" ]
|
||||
if [ "${LH_BUILD_WITH_CHROOT}" = "true" ]
|
||||
then
|
||||
if [ -f config/binary_rootfs/excludes ]
|
||||
then
|
||||
|
@ -135,7 +135,7 @@ case "${LH_CHROOT_FILESYSTEM}" in
|
|||
|
||||
RESERVED_PERCENTAGE="--reserved-percentage"
|
||||
|
||||
case "${LH_CHROOT_BUILD}" in
|
||||
case "${LH_BUILD_WITH_CHROOT}" in
|
||||
true)
|
||||
Chroot chroot "genext2fs --size-in-blocks=${REAL_DIM} ${RESERVED_PERCENTAGE}=0 --root=chroot filesystem.${LH_CHROOT_FILESYSTEM}"
|
||||
|
||||
|
@ -219,7 +219,7 @@ case "${LH_CHROOT_FILESYSTEM}" in
|
|||
JFFS2_OPTIONS="--eraseblock=${LH_JFFS2_ERASEBLOCK}"
|
||||
fi
|
||||
|
||||
case "${LH_CHROOT_BUILD}" in
|
||||
case "${LH_BUILD_WITH_CHROOT}" in
|
||||
true)
|
||||
Chroot chroot "mkfs.jffs2 ${JFFS2_OPTIONS} --root=chroot --output filesystem.jffs2"
|
||||
|
||||
|
@ -288,7 +288,7 @@ case "${LH_CHROOT_FILESYSTEM}" in
|
|||
rm -rf binary/${INITFS}/filesystem.dir
|
||||
fi
|
||||
|
||||
case "${LH_CHROOT_BUILD}" in
|
||||
case "${LH_BUILD_WITH_CHROOT}" in
|
||||
true)
|
||||
mv chroot/chroot binary/${INITFS}/filesystem.dir
|
||||
;;
|
||||
|
@ -334,7 +334,7 @@ case "${LH_CHROOT_FILESYSTEM}" in
|
|||
cp config/binary_rootfs/squashfs.sort chroot #FIXME
|
||||
fi
|
||||
|
||||
case "${LH_CHROOT_BUILD}" in
|
||||
case "${LH_BUILD_WITH_CHROOT}" in
|
||||
true)
|
||||
# Create image
|
||||
Chroot chroot "mksquashfs chroot filesystem.squashfs ${MKSQUASHFS_OPTIONS}"
|
||||
|
@ -421,7 +421,7 @@ case "${LH_CHROOT_FILESYSTEM}" in
|
|||
rm -rf binary
|
||||
fi
|
||||
|
||||
case "${LH_CHROOT_BUILD}" in
|
||||
case "${LH_BUILD_WITH_CHROOT}" in
|
||||
true)
|
||||
mv chroot/chroot binary
|
||||
;;
|
||||
|
|
|
@ -229,7 +229,7 @@ case "${LH_BINARY_IMAGES}" in
|
|||
# Copying silo
|
||||
mkdir -p binary/boot
|
||||
|
||||
case "${LH_CHROOT_BUILD}" in
|
||||
case "${LH_BUILD_WITH_CHROOT}" in
|
||||
true)
|
||||
cp chroot/boot/second.b binary/boot
|
||||
;;
|
||||
|
|
|
@ -220,7 +220,7 @@ Copy_syslinux_templates ()
|
|||
;;
|
||||
esac
|
||||
|
||||
case "${LH_CHROOT_BUILD}" in
|
||||
case "${LH_BUILD_WITH_CHROOT}" in
|
||||
true)
|
||||
cp chroot/usr/lib/syslinux/"${MENUMODULE}" ${DATA_PATH}
|
||||
;;
|
||||
|
@ -582,7 +582,7 @@ Configure_syslinux_templates
|
|||
# Configure syslinux setup per boot method
|
||||
case "${LH_BINARY_IMAGES}" in
|
||||
iso*)
|
||||
case "${LH_CHROOT_BUILD}" in
|
||||
case "${LH_BUILD_WITH_CHROOT}" in
|
||||
true)
|
||||
cp chroot/usr/lib/syslinux/isolinux.bin ${SCREEN_PATH}
|
||||
;;
|
||||
|
@ -601,7 +601,7 @@ case "${LH_BINARY_IMAGES}" in
|
|||
;;
|
||||
|
||||
net)
|
||||
case "${LH_CHROOT_BUILD}" in
|
||||
case "${LH_BUILD_WITH_CHROOT}" in
|
||||
true)
|
||||
cp chroot/usr/lib/syslinux/pxelinux.0 ${KERNEL_PATH}
|
||||
;;
|
||||
|
@ -632,7 +632,7 @@ case "${LH_BINARY_IMAGES}" in
|
|||
;;
|
||||
|
||||
usb*|tar)
|
||||
case "${LH_CHROOT_BUILD}" in
|
||||
case "${LH_BUILD_WITH_CHROOT}" in
|
||||
true)
|
||||
cp chroot/usr/lib/syslinux/isolinux.bin ${SCREEN_PATH}/syslinux.bin
|
||||
;;
|
||||
|
|
|
@ -141,7 +141,7 @@ case "${LH_BINARY_FILESYSTEM}" in
|
|||
;;
|
||||
esac
|
||||
|
||||
case "${LH_CHROOT_BUILD}" in
|
||||
case "${LH_BUILD_WITH_CHROOT}" in
|
||||
true)
|
||||
Chroot chroot "parted -s ${FREELO} mklabel ${PARTITION_TABLE_TYPE}" || true
|
||||
Chroot chroot "parted -s ${FREELO} mkpart primary ${PARTITION_TYPE} 0.0 100%" || true
|
||||
|
@ -190,7 +190,7 @@ case "${LH_BINARY_FILESYSTEM}" in
|
|||
;;
|
||||
esac
|
||||
|
||||
case "${LH_CHROOT_BUILD}" in
|
||||
case "${LH_BUILD_WITH_CHROOT}" in
|
||||
true)
|
||||
Chroot chroot "mkfs.${MKFS} ${MKFS_OPTIONS} ${FREELO}"
|
||||
;;
|
||||
|
@ -246,7 +246,7 @@ rmdir chroot/binary.tmp
|
|||
|
||||
if [ "${LH_BOOTLOADER}" = "syslinux" ]
|
||||
then
|
||||
case "${LH_CHROOT_BUILD}" in
|
||||
case "${LH_BUILD_WITH_CHROOT}" in
|
||||
true)
|
||||
Chroot chroot "syslinux ${FREELO}"
|
||||
;;
|
||||
|
|
|
@ -42,7 +42,7 @@ Check_lockfile .lock
|
|||
# Creating lock file
|
||||
Create_lockfile .lock
|
||||
|
||||
if [ "${LH_CHROOT_BUILD}" = "true" ]
|
||||
if [ "${LH_BUILD_WITH_CHROOT}" = "true" ]
|
||||
then
|
||||
case "${LH_BINARY_FILESYSTEM}" in
|
||||
ext2|ext3)
|
||||
|
@ -66,7 +66,7 @@ fi
|
|||
Echo_message "Creating virtual disk image..."
|
||||
dd if=/dev/zero of=binary-virtual.img bs=1024k count=0 seek=${LH_VIRTUAL_ROOT_SIZE}
|
||||
|
||||
if [ "${LH_CHROOT_BUILD}" = "true" ]
|
||||
if [ "${LH_BUILD_WITH_CHROOT}" = "true" ]
|
||||
then
|
||||
mv binary-virtual.img chroot
|
||||
|
||||
|
|
|
@ -54,7 +54,7 @@ case "${LH_ARCHITECTURE}" in
|
|||
;;
|
||||
esac
|
||||
|
||||
if [ "${LH_CHROOT_BUILD}" = "true" ]
|
||||
if [ "${LH_BUILD_WITH_CHROOT}" = "true" ]
|
||||
then
|
||||
# Checking depends
|
||||
Check_package chroot/${WIN32_LOADER}/win32-loader.exe win32-loader
|
||||
|
|
|
@ -276,7 +276,7 @@ case "${LH_BINARY_IMAGES}" in
|
|||
# Copying yaboot
|
||||
mkdir -p binary/yaboot
|
||||
|
||||
case "${LH_CHROOT_BUILD}" in
|
||||
case "${LH_BUILD_WITH_CHROOT}" in
|
||||
true)
|
||||
cp chroot/usr/lib/yaboot/yaboot binary/yaboot
|
||||
;;
|
||||
|
|
|
@ -53,7 +53,7 @@ USAGE="${PROGRAM} [--apt apt|aptitude]\n\
|
|||
\t [--cache-packages true|false]\n\
|
||||
\t [--cache-stages STAGE|\"STAGES\"]\n\
|
||||
\t [--checksums md5|sha1|sha256|none]\n\
|
||||
\t [--chroot-build true|false]\n\
|
||||
\t [--build-with-chroot true|false]\n\
|
||||
\t [--chroot-filesystem ext2|ext3|squashfs|plain|jffs2]\n\
|
||||
\t [-c|--conffile FILE]\n\
|
||||
\t [--clean\n\
|
||||
|
@ -144,7 +144,7 @@ Local_arguments ()
|
|||
mirror-binary-security:,mirror-binary-volatile:,mirror-debian-installer:,archive-areas:,chroot-filesystem:,exposed-root:,virtual-root-size:,
|
||||
gzip-options:,hooks:,interactive:,keyring-packages:,language:,linux-flavours:,linux-packages:,
|
||||
packages:,packages-lists:,tasks:,security:,volatile:,symlinks:,sysvinit:,binary-filesystem:,binary-images:,
|
||||
binary-indices:,bootappend-install:,bootappend-live:,bootloader:,checksums:,chroot-build:,
|
||||
binary-indices:,bootappend-install:,bootappend-live:,bootloader:,checksums:,build-with-chroot:,
|
||||
debian-installer:,debian-installer-distribution:,debian-installer-preseedfile:,debian-installer-gui:,
|
||||
encryption:,grub-splash:,hostname:,isohybrid-options:,iso-application:,iso-preparer:,iso-publisher:,
|
||||
iso-volume:,jffs2-eraseblock:,memtest:,net-root-filesystem:,net-root-mountoptions:,
|
||||
|
@ -569,8 +569,8 @@ Local_arguments ()
|
|||
shift 2
|
||||
;;
|
||||
|
||||
--chroot-build)
|
||||
LH_CHROOT_BUILD="${2}"
|
||||
--build-with-chroot)
|
||||
LH_BUILD_WITH_CHROOT="${2}"
|
||||
shift 2
|
||||
;;
|
||||
|
||||
|
@ -1162,10 +1162,10 @@ LH_BOOTLOADER="${LH_BOOTLOADER}"
|
|||
# (Default: ${LH_CHECKSUMS})
|
||||
LH_CHECKSUMS="${LH_CHECKSUMS}"
|
||||
|
||||
# \${LH_CHROOT_BUILD: control if we build binary images chrooted
|
||||
# (Default: ${LH_CHROOT_BUILD})
|
||||
# \${LH_BUILD_WITH_CHROOT: control if we build binary images chrooted
|
||||
# (Default: ${LH_BUILD_WITH_CHROOT})
|
||||
# DO NEVER, *NEVER*, *N*E*V*E*R* SET THIS OPTION to false.
|
||||
LH_CHROOT_BUILD="${LH_CHROOT_BUILD}"
|
||||
LH_BUILD_WITH_CHROOT="${LH_BUILD_WITH_CHROOT}"
|
||||
|
||||
# \$LH_DEBIAN_INSTALLER: set debian-installer
|
||||
# (Default: ${LH_DEBIAN_INSTALLER})
|
||||
|
|
|
@ -47,7 +47,7 @@ Check_lockfile .lock
|
|||
# Creating lock file
|
||||
Create_lockfile .lock
|
||||
|
||||
if [ "${LH_CHROOT_BUILD}" = "true" ]
|
||||
if [ "${LH_BUILD_WITH_CHROOT}" = "true" ]
|
||||
then
|
||||
case "${LH_BINARY_FILESYSTEM}" in
|
||||
ext2|ext3)
|
||||
|
@ -70,7 +70,7 @@ DU_DIM="$(du -ms source | cut -f1)"
|
|||
REAL_DIM="$(Calculate_partition_size ${DU_DIM} ${LH_BINARY_FILESYSTEM})"
|
||||
dd if=/dev/zero of=source-virtual.img bs=1024k count=0 seek=${REAL_DIM}
|
||||
|
||||
if [ "${LH_CHROOT_BUILD}" = "true" ]
|
||||
if [ "${LH_BUILD_WITH_CHROOT}" = "true" ]
|
||||
then
|
||||
mv source-virtual.img chroot
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh\fP \- Wrapper fuer live\-helper Programme
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary\fP \- Erstellt die "binary" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_checksums\fP \- Erstellt die "binary" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_chroot\fP \- Erstellt die "binary" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_debian\-installer\fP \- Erstellt die "binary" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_disk\fP \- Erstellt die "binary" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_encryption\fP \- Erstellt die "binary" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_grub\fP \- Erstellt die "binary" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_grub2\fP \- Erstellt die "binary" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_includes\fP \- Erstellt die "binary" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_iso\fP \- Erstellt die "binary" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_linux\-image\fP \- Erstellt die "binary" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_local\-hooks\fP \- Erstellt die "binary" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_local\-includes\fP \- Erstellt die "binary" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_local\-packageslists\fP \- Erstellt die "binary" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_manifest\fP \- Erstellt die "binary" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_memtest\fP \- Erstellt die "binary" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_net\fP \- Erstellt die "binary" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_rootfs\fP \- Erstellt die "binary" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_silo\fP \- Erstellt die "binary" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_syslinux\fP \- Erstellt die "binary" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_tar\fP \- Erstellt die "binary" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_usb\fP \- Erstellt die "binary" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_virtual\-hdd\fP \- Erstellt die "binary" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_win32\-loader\fP \- Erstellt die "binary" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_yaboot\fP \- Erstellt die "binary" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh bootstrap\fP \- Erstellt die "bootstrap" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh bootstrap_cache\fP \- Erstellt die "bootstrap" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh bootstrap_cdebootstrap\fP \- Erstellt die "bootstrap" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh bootstrap_copy\fP \- Erstellt die "bootstrap" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh bootstrap_debootstrap\fP \- Erstellt die "bootstrap" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh build\fP \- Erstellt die "bootstrap", "chroot", "binary" und "source"
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot\fP \- Erstellt die "chroot" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_apt\fP \- Erstellt die "chroot" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_cache\fP \- Erstellt die "chroot" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_debianchroot\fP \- Erstellt die "chroot" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_devpts\fP \- Erstellt die "chroot" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_dpkg\fP \- Erstellt die "chroot" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_hacks\fP \- Erstellt die "chroot" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_hooks\fP \- Erstellt die "chroot" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_hostname\fP \- Erstellt die "chroot" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_hosts\fP \- Erstellt die "chroot" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_install\-packages\fP \- Erstellt die "chroot" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_interactive\fP \- Erstellt die "chroot" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_linux\-image\fP \- Erstellt die "chroot" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_local\-hooks\fP \- Erstellt die "chroot" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_local\-includes\fP \- Erstellt die "chroot" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_local\-packages\fP \- Erstellt die "chroot" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_local\-packageslists\fP \- Erstellt die "chroot" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_local\-patches\fP \- Erstellt die "chroot" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_local\-preseed\fP \- Erstellt die "chroot" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_localization\fP \- Erstellt die "chroot" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_packages\fP \- Erstellt die "chroot" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_packageslists\fP \- Erstellt die "chroot" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_preseed\fP \- Erstellt die "chroot" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_proc\fP \- Erstellt die "chroot" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_resolv\fP \- Erstellt die "chroot" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_selinuxfs\fP \- Erstellt die "chroot" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_sources\fP \- Erstellt die "chroot" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_symlinks\fP \- Erstellt die "chroot" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_sysfs\fP \- Erstellt die "chroot" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_sysv\-rc\fP \- Erstellt die "chroot" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_sysvinit\fP \- Erstellt die "chroot" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_tasks\fP \- Erstellt die "chroot" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_upstart\fP \- Erstellt die "chroot" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh clean\fP \- Raeumt das Arbeitsverzeichnis auf
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh config\fP \- Erstellen des config Verzeichnisses
|
||||
|
@ -64,7 +64,7 @@
|
|||
.br
|
||||
[\fB\-\-checksums\fP md5|sha1|sha256|none]
|
||||
.br
|
||||
[\fB\-\-chroot\-build\fP true|false]
|
||||
[\fB\-\-build\-with\-chroot\fP true|false]
|
||||
.br
|
||||
[\fB\-\-chroot\-filesystem\fP ext2|ext3|squashfs|plain|jffs2]
|
||||
.br
|
||||
|
@ -359,7 +359,7 @@ built\-in integrity\-check to verify the medium if specified at boot
|
|||
prompt. In general, this should not be false and is an important feature of
|
||||
live system released to the public. However, during development of very big
|
||||
images it can save some time by not calculating the checksums.
|
||||
.IP "\fB\-\-chroot\-build\fP true|false" 4
|
||||
.IP "\fB\-\-build\-with\-chroot\fP true|false" 4
|
||||
defines whetever live\-helper should use the tools from within the chroot to
|
||||
build the binary image or not by using and including the host systems
|
||||
tools. This is a very dangerous option, using the tools of the host system
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh local\fP \- Wrapper fuer lokale live\-helper Programme
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh source\fP \- Erstellt die "source" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh source_checksums\fP \- Erstellt die "source" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh source_debian\-live\fP \- Erstellt die "source" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh source_debian\fP \- Erstellt die "source" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh source_disk\fP \- Erstellt die "source" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh source_iso\fP \- Erstellt die "source" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh source_net\fP \- Erstellt die "source" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh source_tar\fP \- Erstellt die "source" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh source_usb\fP \- Erstellt die "source" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh source_virtual\-hdd\fP \- Erstellt die "source" Stufe
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 1 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlh testroot\fP \- stellt sicher, dass ein System als root erstellt wird
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 7 12.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
.TH LIVE\-HELPER 7 21.05.2010 2.0~a12 "Debian Live Projekt"
|
||||
|
||||
.SH NAME
|
||||
\fBlive\-helper\fP \- die Debian Live Tool Suite
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
|
||||
.TH LIVE\-HELPER 1 2010\-05\-21 2.0~a12 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh\fR \- wrapper for live\-helper programs
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-HELPER 1 2010\-05\-12 2.0~a12 "Debian Live Project"
|
||||
.TH LIVE\-HELPER 1 2010\-05\-21 2.0~a12 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary\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