Adding live-package 0.99.2-1.
This commit is contained in:
parent
57cf927e8b
commit
18e4f460bf
|
@ -1,3 +1,12 @@
|
|||
2006-07-28 Daniel Baumann <daniel@debian.org>
|
||||
|
||||
* Added DEBIAN_FRONTEND to chroots(), now completely non-interactive.
|
||||
* Fixed wrong chroot patch.
|
||||
|
||||
2006-07-27 Marco Amadori <marco.amadori@gmail.com>
|
||||
|
||||
* Changed amd64 kernel naming scheme.
|
||||
|
||||
2006-07-19 Daniel Baumann <daniel@debian.org>
|
||||
|
||||
* Bugfixes.
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
live-package (0.99.2-1) unstable; urgency=low
|
||||
|
||||
* New upstream release.
|
||||
|
||||
-- Daniel Baumann <daniel@debian.org> Mon, 31 Jul 2006 00:00:00 +0200
|
||||
|
||||
live-package (0.99.1-1) unstable; urgency=low
|
||||
|
||||
* New upstream release.
|
||||
|
|
|
@ -43,7 +43,12 @@ Defaults ()
|
|||
;;
|
||||
|
||||
amd64)
|
||||
LIVE_LINUX="amd64-generic"
|
||||
if [ "${LIVE_DISTRIBUTION}" == unstable ]
|
||||
then
|
||||
LIVE_LINUX="amd64-k8"
|
||||
else
|
||||
LIVE_LINUX="amd64-generic"
|
||||
fi
|
||||
;;
|
||||
|
||||
arm)
|
||||
|
|
|
@ -6,9 +6,7 @@ chroots ()
|
|||
chroot "${LIVE_CHROOT}" /usr/bin/env -i HOME="/root" \
|
||||
PATH="/usr/sbin:/usr/bin:/sbin:/bin" TERM="${TERM}" \
|
||||
ftp_proxy="${LIVE_FTPPROXY}" http_proxy="${LIVE_HTTPPROXY}" \
|
||||
DEBIAN_PRIORITY="critical" ${1}
|
||||
#DEBIAN_FRONTEND=non-interactive DEBIAN_PRIORITY=critical
|
||||
# FIXME: setting DEBIAN_FRONTEND to non-interactive seems not to work.
|
||||
DEBIAN_FRONTEND=noninteractive DEBIAN_PRIORITY=critical ${1}
|
||||
}
|
||||
|
||||
Chroot ()
|
||||
|
@ -58,10 +56,21 @@ Chroot ()
|
|||
Patch_linuximage apply
|
||||
|
||||
# Install linux-image
|
||||
chroots "apt-get install --yes linux-image-2.6-${LIVE_LINUX}"
|
||||
chroots "apt-get install --yes --force-yes casper \
|
||||
squashfs-modules-2.6-${LIVE_LINUX} \
|
||||
unionfs-modules-2.6-${LIVE_LINUX}"
|
||||
case "${LIVE_DISTRIBUTION}" in
|
||||
unstable)
|
||||
chroots "apt-get install --yes linux-image-2.6-${LIVE_LINUX}"
|
||||
chroots "apt-get install --yes --force-yes casper \
|
||||
squashfs-modules-2.6-${LIVE_LINUX} \
|
||||
unionfs-modules-2.6-${LIVE_LINUX}"
|
||||
;;
|
||||
|
||||
testing)
|
||||
chroots "apt-get install --yes linux-image-2.6.16-2-${LIVE_LINUX}"
|
||||
chroots "apt-get install --yes --force-yes casper \
|
||||
squashfs-modules-2.6.16-2-${LIVE_LINUX} \
|
||||
unionfs-modules-2.6.16-2-${LIVE_LINUX}"
|
||||
;;
|
||||
esac
|
||||
|
||||
# Rebuild initial ramdisk
|
||||
chroots "dpkg-reconfigure `basename ${LIVE_CHROOT}/var/lib/dpkg/info/linux-image-2.6.*-${LIVE_LINUX}.postinst .postinst`"
|
||||
|
|
|
@ -8,7 +8,7 @@ Patch_chroot ()
|
|||
case "${1}" in
|
||||
apply)
|
||||
# Create chroot file
|
||||
echo "live" > "${LIFE_CHROOT}"/etc/debian_chroot
|
||||
echo "live" > "${LIVE_CHROOT}"/etc/debian_chroot
|
||||
;;
|
||||
|
||||
deapply)
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
default linux
|
||||
label linux
|
||||
kernel vmlinuz
|
||||
append initrd=initrd.gz boot=casper-net nfsroot=LIVE_SERVER_ADDRESS:LIVE_SERVER_PATH LIVE_BOOTAPPEND
|
||||
append initrd=initrd.gz boot=casper netboot nfsroot=LIVE_SERVER_ADDRESS:LIVE_SERVER_PATH LIVE_BOOTAPPEND
|
||||
label memtest
|
||||
kernel memtest
|
||||
display isolinux.txt
|
||||
|
|
Loading…
Reference in New Issue