summaryrefslogtreecommitdiff
path: root/scripts/01-chroot.sh
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2007-09-23 10:04:21 +0200
committerDaniel Baumann <daniel@debian.org>2007-09-23 10:04:21 +0200
commit18e4f460bf1c115c62ea9aebb56d75d486322531 (patch)
treef277a0fe28a622ee2056d317140a43ef71627991 /scripts/01-chroot.sh
parent57cf927e8b36655351399184fecec51552feffe5 (diff)
downloadlive-build-18e4f460bf1c115c62ea9aebb56d75d486322531.zip
live-build-18e4f460bf1c115c62ea9aebb56d75d486322531.tar.gz
Adding live-package 0.99.2-1.
Diffstat (limited to 'scripts/01-chroot.sh')
-rw-r--r--scripts/01-chroot.sh23
1 files changed, 16 insertions, 7 deletions
diff --git a/scripts/01-chroot.sh b/scripts/01-chroot.sh
index 5528d02..6d5d4ed 100644
--- a/scripts/01-chroot.sh
+++ b/scripts/01-chroot.sh
@@ -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`"