Adding live-helper 1.0~a9-1.
This commit is contained in:
parent
dfd9c85cd9
commit
afe37cce93
13
Makefile
13
Makefile
|
@ -5,7 +5,7 @@ all: install
|
|||
test:
|
||||
set -e; for SCRIPT in functions/* examples/*.sh helpers/* hooks/*; \
|
||||
do \
|
||||
sh -n $$SCRIPT; \
|
||||
sh -n $$SCRIPT || exit 1; \
|
||||
done
|
||||
|
||||
install: test
|
||||
|
@ -76,6 +76,17 @@ uninstall:
|
|||
rm -f $(DESTDIR)/usr/share/man/de/man7/`basename $$MANPAGE .de`; \
|
||||
done
|
||||
|
||||
update:
|
||||
for MANPAGE in manpages/*.de manpages/*.en; \
|
||||
do \
|
||||
sed -i -e 's/30.04.2007/07.05.2007/' \
|
||||
-e 's/2007\\-04\\-30/2007\\-05\\-07/' \
|
||||
-e 's/1.0~a8/1.0~a9/' \
|
||||
$$MANPAGE; \
|
||||
done
|
||||
|
||||
sed -i -e 's/1.0~a8/1.0~a9/' functioins/common.sh
|
||||
|
||||
clean:
|
||||
|
||||
distclean:
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
live-helper (1.0~a9-1) unstable; urgency=medium
|
||||
|
||||
* New upstream release.
|
||||
|
||||
-- Daniel Baumann <daniel@debian.org> Mon, 7 May 2007 00:00:00 +0200
|
||||
|
||||
live-helper (1.0~a8-1) unstable; urgency=medium
|
||||
|
||||
* New upstream release:
|
||||
|
|
|
@ -1,9 +1,13 @@
|
|||
This package was debianized by Daniel Baumann <daniel@debian.org> on
|
||||
Mon, 12 Mar 2007 00:00:00 +0100.
|
||||
|
||||
It was downloaded from <http://debian-live.alioth.debian.org/>.
|
||||
It was downloaded from:
|
||||
|
||||
Upstream contact: Debian Live <debian-live-devel@lists.alioth.debian.org>
|
||||
<http://debian-live.alioth.debian.org/>
|
||||
|
||||
Upstream contact:
|
||||
|
||||
Debian Live <debian-live-devel@lists.alioth.debian.org>
|
||||
|
||||
License:
|
||||
|
||||
|
|
|
@ -14,6 +14,7 @@ Patches (alphabetical order):
|
|||
* Markus Bauer <bauer-markus@web.de>
|
||||
* Mathieu Geli <mathieu.geli@gmail.com>
|
||||
* Otavio Salvador <otavio@debian.org>
|
||||
* Richard Nelson <rjent@rjent.pair.com>
|
||||
* Scott Edwards <debian@foss.daxal.com>
|
||||
* Sebastian Raveau <sebastien.raveau@epita.fr>
|
||||
|
||||
|
@ -26,6 +27,7 @@ Special thanks (alphabetical order):
|
|||
* Ben Armstrong <synrg@debian.org> for his IRC support.
|
||||
* Jason D. Clinton <me@jasonclinton.com> for his work on netboot type.
|
||||
* Otavio Salvador <otavio@debian.org> for his QA patches.
|
||||
* Richard Nelson <rjent@rjent.pair.com> for live-webbuilder.
|
||||
* Sebastian Raveau <sebastien.raveau@epita.fr> for his work on encryption
|
||||
support.
|
||||
* Scott Edwards <debian@foss.daxal.com> for his work on d-i/g-i integration.
|
||||
|
|
|
@ -1,3 +1,13 @@
|
|||
2007-05-06 Daniel Baumann <daniel@debian.org>
|
||||
|
||||
* templates/syslinux:
|
||||
- Updated again.
|
||||
* helpers/lh_config:
|
||||
- Fixed overwriting of LH_* options.
|
||||
* helpers/lh_binary_includes:
|
||||
- Fixed a quoting typo.
|
||||
- Working arround symlinks on usb-hdd binary images.
|
||||
|
||||
2007-04-31 Daniel Baumann <daniel@debian.org>
|
||||
|
||||
* helpers/*:
|
||||
|
|
|
@ -10,4 +10,4 @@
|
|||
set -e
|
||||
|
||||
PROGRAM="`basename ${0}`"
|
||||
VERSION="1.0~a8"
|
||||
VERSION="1.0~a9"
|
||||
|
|
|
@ -26,40 +26,40 @@ Echo_debug "Init ${PROGRAM}"
|
|||
Breakpoint "binary: Init"
|
||||
|
||||
# Preparing root filesystem
|
||||
lh_binary_chroot "${@}"
|
||||
lh_binary_chroot ${*}
|
||||
|
||||
# Configuring chroot
|
||||
lh_chroot_proc install "${@}"
|
||||
lh_chroot_sysfs install "${@}"
|
||||
lh_chroot_hosts install "${@}"
|
||||
lh_chroot_resolv install "${@}"
|
||||
lh_chroot_sources install "${@}"
|
||||
lh_chroot_proc install ${*}
|
||||
lh_chroot_sysfs install ${*}
|
||||
lh_chroot_hosts install ${*}
|
||||
lh_chroot_resolv install ${*}
|
||||
lh_chroot_sources install ${*}
|
||||
|
||||
# Building root filesystem
|
||||
lh_binary_rootfs "${@}"
|
||||
lh_binary_manifest "${@}"
|
||||
lh_binary_encryption "${@}"
|
||||
lh_binary_rootfs ${*}
|
||||
lh_binary_manifest ${*}
|
||||
lh_binary_encryption ${*}
|
||||
|
||||
# Prepare images
|
||||
lh_binary_linuximage "${@}"
|
||||
lh_binary_debian-installer "${@}"
|
||||
lh_binary_memtest "${@}"
|
||||
lh_binary_grub "${@}"
|
||||
lh_binary_syslinux "${@}"
|
||||
lh_binary_yaboot "${@}"
|
||||
lh_binary_includes "${@}"
|
||||
lh_binary_localincludes "${@}"
|
||||
lh_binary_md5sum "${@}"
|
||||
lh_binary_linuximage ${*}
|
||||
lh_binary_debian-installer ${*}
|
||||
lh_binary_memtest ${*}
|
||||
lh_binary_grub ${*}
|
||||
lh_binary_syslinux ${*}
|
||||
lh_binary_yaboot ${*}
|
||||
lh_binary_includes ${*}
|
||||
lh_binary_localincludes ${*}
|
||||
lh_binary_md5sum ${*}
|
||||
|
||||
# Building images
|
||||
lh_binary_hdd "${@}"
|
||||
lh_binary_iso "${@}"
|
||||
lh_binary_net "${@}"
|
||||
lh_binary_usb-hdd "${@}"
|
||||
lh_binary_hdd ${*}
|
||||
lh_binary_iso ${*}
|
||||
lh_binary_net ${*}
|
||||
lh_binary_usb-hdd ${*}
|
||||
|
||||
# Deconfiguring chroot
|
||||
rm -f .stage/chroot_sources
|
||||
lh_chroot_resolv remove "${@}"
|
||||
lh_chroot_hosts remove "${@}"
|
||||
lh_chroot_sysfs remove "${@}"
|
||||
lh_chroot_proc remove "${@}"
|
||||
lh_chroot_resolv remove ${*}
|
||||
lh_chroot_hosts remove ${*}
|
||||
lh_chroot_sysfs remove ${*}
|
||||
lh_chroot_proc remove ${*}
|
||||
|
|
|
@ -109,6 +109,8 @@ then
|
|||
wget --no-clobber -O "${DESTDIR}"/gtk/initrd.gz "${LIVE_MIRROR_BUILD}"/dists/"${LIVE_DISTRIBUTION}"/main/installer-"${LIVE_ARCHITECTURE}"/current/images/"${DESTDIR_INSTALLER}"/gtk/initrd.gz
|
||||
fi
|
||||
|
||||
FIXME ()
|
||||
{
|
||||
# Downloading udebs
|
||||
mkdir -p binary/dists/"${LIVE_DISTRIBUTION}"/main/debian-installer/binary-"${LIVE_ARCHITECTURE}"
|
||||
cd binary/dists/"${LIVE_DISTRIBUTION}"/main/debian-installer/binary-"${LIVE_ARCHITECTURE}"
|
||||
|
@ -234,6 +236,7 @@ EOF
|
|||
|
||||
apt-ftparchive generate cache/indices_debian-installer/archive
|
||||
apt-ftparchive -c cache/indices_debian-installer/release -o APT::FTPArchive::Release::Description="Last updated: `date -R`" release binary/dists/${LIVE_DISTRIBUTION} > binary/dists/${LIVE_DISTRIBUTION}/Release
|
||||
}
|
||||
|
||||
mkdir binary/.disk
|
||||
echo "main" > binary/.disk/base_components
|
||||
|
|
|
@ -83,7 +83,7 @@ then
|
|||
# Working arround vfat limitations
|
||||
if [ "${LIVE_BINARY_IMAGE}" = "usb-hdd" ]
|
||||
then
|
||||
CP_OPTIONS="--preserve=link,mode,timestamps"
|
||||
CP_OPTIONS="-L"
|
||||
fi
|
||||
|
||||
# Copying d-i templates
|
||||
|
@ -112,8 +112,8 @@ then
|
|||
DEBIAN_TOOLS_TXT="/tools/"
|
||||
fi
|
||||
|
||||
sed -i -e "s/DEBIAN_NAME/${DEBIAN_NAME}/g" -e "s/DEBIAN_DATE/${DEBIAN_DATE}/g" -e "s#DEBIAN_TOOLS#${DEBIAN_TOOLS_HTML}#g" binary/README.html
|
||||
sed -i -e "s/DEBIAN_NAME/${DEBIAN_NAME}/g" -e "s/DEBIAN_DATE/${DEBIAN_DATE}/g" -e "s#DEBIAN_TOOLS#${DEBIAN_TOOLS_TXT}#g" binary/README.txt
|
||||
sed -i -e "s#DEBIAN_NAME#${DEBIAN_NAME}#g" -e "s/DEBIAN_DATE/${DEBIAN_DATE}/g" -e "s#DEBIAN_TOOLS#${DEBIAN_TOOLS_HTML}#g" binary/README.html
|
||||
sed -i -e "s#DEBIAN_NAME#${DEBIAN_NAME}#g" -e "s/DEBIAN_DATE/${DEBIAN_DATE}/g" -e "s#DEBIAN_TOOLS#${DEBIAN_TOOLS_TXT}#g" binary/README.txt
|
||||
fi
|
||||
|
||||
# Creating stage file
|
||||
|
|
|
@ -53,6 +53,12 @@ then
|
|||
find . | cpio -dmpu "${OLDPWD}"/binary
|
||||
cd "${OLDPWD}"
|
||||
|
||||
# Removing symlinks
|
||||
if [ "${LIVE_BINARY_IMAGE}" = "usb-hdd" ]
|
||||
then
|
||||
find binary -type l | xargs rm -f
|
||||
fi
|
||||
|
||||
# Creating stage file
|
||||
Create_stagefile .stage/binary_localincludes
|
||||
fi
|
||||
|
|
|
@ -77,7 +77,7 @@ do
|
|||
|
||||
# Everything which comes here needs to be cleaned up,
|
||||
DU_DIM="`du -ms binary | cut -f1`"
|
||||
REAL_DIM="`expr ${DU_DIM} + ${DU_DIM} / 20`" # Just 5% more to be sure, need something more sophistcated here...
|
||||
REAL_DIM="`expr ${DU_DIM} + ${DU_DIM} / 50`" # Just 2% more to be sure, need something more sophistcated here...
|
||||
dd if=/dev/zero of=binary.img bs=1024k count=${REAL_DIM}
|
||||
FREELO="`${LH_LOSETUP} -f`"
|
||||
if [ ! -b chroot/${FREELO} ]
|
||||
|
|
|
@ -38,5 +38,5 @@ Read_conffile config/source
|
|||
Set_defaults
|
||||
|
||||
# Bootstrapping system
|
||||
lh_bootstrap_cdebootstrap "${@}"
|
||||
lh_bootstrap_debootstrap "${@}"
|
||||
lh_bootstrap_cdebootstrap ${*}
|
||||
lh_bootstrap_debootstrap ${*}
|
||||
|
|
|
@ -26,13 +26,13 @@ Echo_debug "Init ${PROGRAM}"
|
|||
Breakpoint "build: Init"
|
||||
|
||||
# Bootstrapping system
|
||||
lh_bootstrap "${@}"
|
||||
lh_bootstrap ${*}
|
||||
|
||||
# Customizing chroot
|
||||
lh_chroot "${@}"
|
||||
lh_chroot ${*}
|
||||
|
||||
# Building binary image
|
||||
lh_binary "${@}"
|
||||
lh_binary ${*}
|
||||
|
||||
# Building source image
|
||||
lh_source "${@}"
|
||||
lh_source ${*}
|
||||
|
|
|
@ -35,38 +35,38 @@ Set_defaults
|
|||
Breakpoint "chroot: Init"
|
||||
|
||||
# Configuring chroot
|
||||
lh_chroot_proc install "${@}"
|
||||
lh_chroot_sysfs install "${@}"
|
||||
lh_chroot_debianchroot install "${@}"
|
||||
lh_chroot_sysvrc install "${@}"
|
||||
lh_chroot_hosts install "${@}"
|
||||
lh_chroot_resolv install "${@}"
|
||||
lh_chroot_apt install "${@}"
|
||||
lh_chroot_sources install "${@}"
|
||||
lh_chroot_linuximage install "${@}"
|
||||
lh_chroot_proc install ${*}
|
||||
lh_chroot_sysfs install ${*}
|
||||
lh_chroot_debianchroot install ${*}
|
||||
lh_chroot_sysvrc install ${*}
|
||||
lh_chroot_hosts install ${*}
|
||||
lh_chroot_resolv install ${*}
|
||||
lh_chroot_apt install ${*}
|
||||
lh_chroot_sources install ${*}
|
||||
lh_chroot_linuximage install ${*}
|
||||
|
||||
# Customizing chroot
|
||||
lh_chroot_tasks "${@}"
|
||||
lh_chroot_packageslists "${@}"
|
||||
lh_chroot_packages "${@}"
|
||||
lh_chroot_localpackages "${@}"
|
||||
lh_chroot_localpackageslists "${@}"
|
||||
lh_chroot_localization "${@}"
|
||||
lh_chroot_localincludes "${@}"
|
||||
lh_chroot_sysvinit "${@}"
|
||||
lh_chroot_hooks "${@}"
|
||||
lh_chroot_localhooks "${@}"
|
||||
lh_chroot_symlinks "${@}"
|
||||
lh_chroot_hacks "${@}"
|
||||
lh_chroot_interactive "${@}"
|
||||
lh_chroot_tasks ${*}
|
||||
lh_chroot_packageslists ${*}
|
||||
lh_chroot_packages ${*}
|
||||
lh_chroot_localpackages ${*}
|
||||
lh_chroot_localpackageslists ${*}
|
||||
lh_chroot_localization ${*}
|
||||
lh_chroot_localincludes ${*}
|
||||
lh_chroot_sysvinit ${*}
|
||||
lh_chroot_hooks ${*}
|
||||
lh_chroot_localhooks ${*}
|
||||
lh_chroot_symlinks ${*}
|
||||
lh_chroot_hacks ${*}
|
||||
lh_chroot_interactive ${*}
|
||||
|
||||
# Deconfiguring chroot
|
||||
lh_chroot_linuximage remove "${@}"
|
||||
lh_chroot_sources remove "${@}"
|
||||
lh_chroot_apt remove "${@}"
|
||||
lh_chroot_resolv remove "${@}"
|
||||
lh_chroot_hosts remove "${@}"
|
||||
lh_chroot_sysvrc remove "${@}"
|
||||
lh_chroot_debianchroot remove "${@}"
|
||||
lh_chroot_sysfs remove "${@}"
|
||||
lh_chroot_proc remove "${@}"
|
||||
lh_chroot_linuximage remove ${*}
|
||||
lh_chroot_sources remove ${*}
|
||||
lh_chroot_apt remove ${*}
|
||||
lh_chroot_resolv remove ${*}
|
||||
lh_chroot_hosts remove ${*}
|
||||
lh_chroot_sysvrc remove ${*}
|
||||
lh_chroot_debianchroot remove ${*}
|
||||
lh_chroot_sysfs remove ${*}
|
||||
lh_chroot_proc remove ${*}
|
||||
|
|
|
@ -158,23 +158,23 @@ LIVE_TEMPLATES="${LIVE_TEMPLATES}"
|
|||
|
||||
# \$LH_BREAKPOINTS: enable breakpoints
|
||||
# (Default: ${LH_BREAKPOINTS})
|
||||
LH_BREAKPOINTS="${LH_BREAKPOINTS}"
|
||||
#LH_BREAKPOINTS="${LH_BREAKPOINTS}"
|
||||
|
||||
# \$LH_DEBUG: enable debug
|
||||
# (Default: ${LH_DEBUG})
|
||||
LH_DEBUG="${LH_DEBUG}"
|
||||
#LH_DEBUG="${LH_DEBUG}"
|
||||
|
||||
# \$LH_FORCE: enable force
|
||||
# (Default: ${LH_FORCE})
|
||||
LH_FORCE="${LH_FORCE}"
|
||||
#LH_FORCE="${LH_FORCE}"
|
||||
|
||||
# \$LH_QUIET: enable quiet
|
||||
# (Default: ${LH_QUIET})
|
||||
LH_QUIET="${LH_QUIET}"
|
||||
#LH_QUIET="${LH_QUIET}"
|
||||
|
||||
# \$LH_VERBOSE: enable verbose
|
||||
# (Default: ${LH_VERBOSE})
|
||||
LH_VERBOSE="${LH_VERBOSE}"
|
||||
#LH_VERBOSE="${LH_VERBOSE}"
|
||||
EOF
|
||||
|
||||
# Creating lh_chroot_* configuration
|
||||
|
|
|
@ -35,23 +35,23 @@ Set_defaults
|
|||
Breakpoint "source: Init"
|
||||
|
||||
# Enabling network in chroot
|
||||
lh_chroot_hosts install "${@}"
|
||||
lh_chroot_resolv install "${@}"
|
||||
lh_chroot_sources install "${@}"
|
||||
lh_chroot_hosts install ${*}
|
||||
lh_chroot_resolv install ${*}
|
||||
lh_chroot_sources install ${*}
|
||||
|
||||
# Preparing images
|
||||
lh_source_config "${@}"
|
||||
lh_source_download "${@}"
|
||||
lh_source_md5sum "${@}"
|
||||
lh_source_config ${*}
|
||||
lh_source_download ${*}
|
||||
lh_source_md5sum ${*}
|
||||
|
||||
# Building images
|
||||
lh_source_generic "${@}"
|
||||
lh_source_hdd "${@}"
|
||||
lh_source_iso "${@}"
|
||||
lh_source_net "${@}"
|
||||
lh_source_usb-hdd "${@}"
|
||||
lh_source_generic ${*}
|
||||
lh_source_hdd ${*}
|
||||
lh_source_iso ${*}
|
||||
lh_source_net ${*}
|
||||
lh_source_usb-hdd ${*}
|
||||
|
||||
# Deconfiguring chroot
|
||||
rm -f .stage/chroot_sources
|
||||
lh_chroot_resolv remove "${@}"
|
||||
lh_chroot_hosts remove "${@}"
|
||||
lh_chroot_resolv remove ${*}
|
||||
lh_chroot_hosts remove ${*}
|
||||
|
|
|
@ -60,7 +60,7 @@ fi
|
|||
# Download sources
|
||||
Chroot "dpkg --get-selections" | awk '{ print $1 }' > chroot/root/dpkg-selection.txt
|
||||
echo "${LIVE_BOOTLOADER}" >> chroot/root/dpkg-selection.txt
|
||||
echo "live-helper" >> chroot/root/dpkg-selection.txt
|
||||
#echo "live-helper" >> chroot/root/dpkg-selection.txt
|
||||
Chroot "xargs --arg-file=/root/dpkg-selection.txt apt-get source --download-only"
|
||||
rm -f chroot/root/dpkg-selection.txt
|
||||
|
||||
|
|
|
@ -70,7 +70,7 @@ do
|
|||
|
||||
# Everything which comes here needs to be cleaned up,
|
||||
DU_DIM="`du -ms source | cut -f1`"
|
||||
REAL_DIM="`expr ${DU_DIM} + ${DU_DIM} / 20`" # Just 5% more to be sure, need something more sophistcated here...
|
||||
REAL_DIM="`expr ${DU_DIM} + ${DU_DIM} / 50`" # Just 2% more to be sure, need something more sophistcated here...
|
||||
dd if=/dev/zero of=source.img bs=1024k count=${REAL_DIM}
|
||||
FREELO="`${LH_LOSETUP} -f`"
|
||||
if [ ! -b chroot/${FREELO} ]
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_BINARY 1 "30.04.2007" "1.0~a8" "live\-helper"
|
||||
.TH LH_BINARY 1 "07.05.2007" "1.0~a9" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_binary \- Meta\-Helper f\[:u]r lh_binary_*
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_BINARY 1 "2007\-04\-30" "1.0~a8" "live\-helper"
|
||||
.TH LH_BINARY 1 "2007\-05\-07" "1.0~a9" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_binary \- meta\-helper for lh_binary_*
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_BOOTSTRAP 1 "30.04.2007" "1.0~a8" "live\-helper"
|
||||
.TH LH_BOOTSTRAP 1 "07.05.2007" "1.0~a9" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_bootstrap \- Meta\-Helper f\[:u]r lh_bootstrap_*
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_BOOTSTRAP 1 "2007\-04\-30" "1.0~a8" "live\-helper"
|
||||
.TH LH_BOOTSTRAP 1 "2007\-05\-07" "1.0~a9" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_bootstrap \- meta\-helper for lh_bootstrap_*
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_BOOTSTRAP_CDEBOOTSTRAP 1 "30.04.2007" "1.0~a8" "live\-helper"
|
||||
.TH LH_BOOTSTRAP_CDEBOOTSTRAP 1 "07.05.2007" "1.0~a9" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_bootstrap_cdebootstrap \- erstellt ein Debian-System mit \fIcdebootstrap\fR(1)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_BOOTSTRAP_CDEBOOTSTRAP 1 "2007\-04\-30" "1.0~a8" "live\-helper"
|
||||
.TH LH_BOOTSTRAP_CDEBOOTSTRAP 1 "2007\-05\-07" "1.0~a9" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_bootstrap_cdebootstrap \- bootstrap a Debian system with \fIcdebootstrap\fR(1)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_BOOTSTRAP_DEBOOTSTRAP 1 "30.04.2007" "1.0~a8" "live\-helper"
|
||||
.TH LH_BOOTSTRAP_DEBOOTSTRAP 1 "07.05.2007" "1.0~a9" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_bootstrap_debootstrap \- erstellt ein Debian-System mit \fIdebootstrap\fR(8)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_BOOTSTRAP_DEBOOTSTRAP 1 "2007\-04\-30" "1.0~a8" "live\-helper"
|
||||
.TH LH_BOOTSTRAP_DEBOOTSTRAP 1 "2007\-05\-07" "1.0~a9" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_bootstrap_debootstrap \- bootstrap a Debian system with \fIdebootstrap\fR(8)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_BUILD 1 "30.04.2007" "1.0~a8" "live\-helper"
|
||||
.TH LH_BUILD 1 "07.05.2007" "1.0~a9" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_build \- erstellen eines Live-Systemes
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_BUILD 1 "2007\-04\-30" "1.0~a8" "live\-helper"
|
||||
.TH LH_BUILD 1 "2007\-05\-07" "1.0~a9" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_build \- building a live system
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_CHROOT 1 "30.04.2007" "1.0~a8" "live\-helper"
|
||||
.TH LH_CHROOT 1 "07.05.2007" "1.0~a9" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_chroot \- Meta\-Helper f\[:u]r lh_chroot_*
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_CHROOT 1 "2007\-04\-30" "1.0~a8" "live\-helper"
|
||||
.TH LH_CHROOT 1 "2007\-05\-07" "1.0~a9" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_chroot \- meta\-helper for lh_chroot_*
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_CLEAN 1 "30.04.2007" "1.0~a8" "live\-helper"
|
||||
.TH LH_CLEAN 1 "07.05.2007" "1.0~a9" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_clean \- r\[:a]umt das Build-Verzeichnis auf
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_CLEAN 1 "2007\-04\-30" "1.0~a8" "live\-helper"
|
||||
.TH LH_CLEAN 1 "2007\-05\-07" "1.0~a9" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_clean \- clean up system build directories
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_SOURCE 1 "30.04.2007" "1.0~a8" "live\-helper"
|
||||
.TH LH_SOURCE 1 "07.05.2007" "1.0~a9" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_source \- Meta\-Helper f\[:u]r lh_source_*
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_SOURCE 1 "2007\-04\-30" "1.0~a8" "live\-helper"
|
||||
.TH LH_SOURCE 1 "2007\-05\-07" "1.0~a9" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_source \- meta\-helper for lh_source_*
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_TESTROOT 1 "30.04.2007" "1.0~a8" "live\-helper"
|
||||
.TH LH_TESTROOT 1 "07.05.2007" "1.0~a9" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_testroot \- stellt sicher dass das System als root gebaut wird
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LH_TESTROOT 1 "2007\-04\-30" "1.0~a8" "live\-helper"
|
||||
.TH LH_TESTROOT 1 "2007\-05\-07" "1.0~a9" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
lh_testroot \- ensure that a system is built as root
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-HELPER 7 "30.04.2007" "1.0~a8" "live\-helper"
|
||||
.TH LIVE\-HELPER 7 "07.05.2007" "1.0~a9" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
live\-helper \- Debian Live Helper-Programme
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH LIVE\-HELPER 7 "2007\-04\-30" "1.0~a8" "live\-helper"
|
||||
.TH LIVE\-HELPER 7 "2007\-05\-07" "1.0~a9" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
live\-helper \- Debian Live helper programs
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH MAKE\-LIVE 1 "30.04.2007" "1.0~a8" "live\-helper"
|
||||
.TH MAKE\-LIVE 1 "07.05.2007" "1.0~a9" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
make\-live \- erstellt ein Debian Live-System
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.TH MAKE\-LIVE 1 "2007\-04\-30" "1.0~a8" "live\-helper"
|
||||
.TH MAKE\-LIVE 1 "2007\-05\-07" "1.0~a9" "live\-helper"
|
||||
|
||||
.SH NAME
|
||||
make\-live \- build a Debian Live system
|
||||
|
|
|
@ -10,7 +10,7 @@ It was built on LIVE_DATE.
|
|||
<09F107> This page, the help index.
|
||||
<09F207> Prerequisites for installing Debian.
|
||||
<09F307> Boot methods for special ways of using this CD-ROM
|
||||
<09F407> Additional boot methods; rescue mode.
|
||||
<09F407> Additional boot methods; live and rescue modes.
|
||||
<09F507> Special boot parameters, overview.
|
||||
<09F607> Special boot parameters for special machines.
|
||||
<09F707> Special boot parameters for selected disk controllers.
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
0fAvailable boot methods:07
|
||||
|
||||
0finstall07
|
||||
Start the installation -- this is the default CD-ROM install.
|
||||
Start the installation.
|
||||
0finstallgui07
|
||||
Start the installation using the graphical installer.
|
||||
0fexpert07
|
||||
|
@ -20,4 +20,4 @@ followed by any boot parameters. For example:
|
|||
If unsure, you should use the default boot method, with no special
|
||||
parameters, by simply pressing enter at the boot prompt.
|
||||
|
||||
Press F1control and F then 1 for the help index, or ENTER to
|
||||
Press F1control and F then 1 for the help index, or ENTER to
|
||||
|
|
|
@ -1,6 +1,13 @@
|
|||
0fRESCUE MODE07 09F407
|
||||
0fLIVE AND RESCUE MODES07 09F407
|
||||
|
||||
|
||||
0fUse one of these boot methods to start the live system07
|
||||
|
||||
0flive07
|
||||
Start the live system in standard mode -- this is the default.
|
||||
0flive-failsafe07
|
||||
Start the live system in failsafe mode.
|
||||
|
||||
0fUse one of these boot methods to rescue an existing install07
|
||||
|
||||
0frescue07
|
||||
|
@ -8,16 +15,9 @@
|
|||
0frescuegui07
|
||||
Boot into rescue mode using the graphical installer.
|
||||
|
||||
0fmemtest07
|
||||
Run memtest86+ (memory tester).
|
||||
0ffloppy07, 0fdisk107 or 0fdisk207
|
||||
Boot from the floppy, first or second hard disk.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
To use one of these boot methods, type it at the prompt, optionally
|
||||
followed by any boot parameters. For example:
|
||||
|
||||
boot: rescue acpi=off
|
||||
|
||||
|
||||
Press F1control and F then 1 for the help index, or ENTER to
|
||||
Press F1control and F then 1 for the help index, or ENTER to
|
||||
|
|
|
@ -20,5 +20,17 @@ LIVE_KERNEL_INSTALL
|
|||
|
||||
LIVE_MEMTEST
|
||||
|
||||
#LABEL floppy
|
||||
# localboot 0x00
|
||||
|
||||
#LABEL disk1
|
||||
# localboot 0x80
|
||||
|
||||
#LABEL disk2
|
||||
# localboot 0x81
|
||||
|
||||
#LABEL nextboot
|
||||
# localboot -1
|
||||
|
||||
PROMPT 1
|
||||
TIMEOUT 0
|
||||
|
|
Loading…
Reference in New Issue