X-Git-Url: https://git.grml.org/?p=grml-debootstrap.git;a=blobdiff_plain;f=chroot-script;h=50d3f4f6d862a1a4e51088be768c3fb45e635611;hp=9a2f8f56542d8572f421e4eaa9a28ddf9db7b05b;hb=68dbb4420447df9e744a195718e3dc6068c9ddee;hpb=78bb1b7ce80abf38eb8f1d44cfd116680135f1c4 diff --git a/chroot-script b/chroot-script index 9a2f8f5..50d3f4f 100644 --- a/chroot-script +++ b/chroot-script @@ -4,7 +4,7 @@ # Authors: grml-team (grml.org), (c) Michael Prokop # Bug-Reports: see http://grml.org/bugs/ # License: This file is licensed under the GPL v2. -# Latest change: Fre Nov 03 22:27:09 CET 2006 [mika] +# Latest change: Fre Nov 03 23:19:29 CET 2006 [mika] ################################################################################ set -e # exit on any error @@ -14,7 +14,7 @@ set -e # exit on any error [ -r /proc/1 ] || mount -t proc none /proc if [ -n "$CHROOTMIRROR" ] ; then - echo "$CHROOTMIRROR" > /etc/apt/sources.list + echo "deb $CHROOTMIRROR $RELEASE main contrib non-free" /etc/apt/sources.list fi if ! [ -r /etc/kernel-img.conf ] ; then @@ -34,10 +34,20 @@ if [ "$PACKAGES" = 'yes' ] ; then exit 1 else apt-get update - apt-get --force-yes -y $(cat /etc/debootstrap/packages) + apt-get --force-yes -y install $(cat /etc/debootstrap/packages) fi fi +if [ -n "$KERNEL" ] ; then + apt-get update + if [ "$RELEASE" = 'sarge' ] ; then + KERNELPACKAGES="kernel-image-$KERNEL" + else + KERNELPACKAGES="linux-image-$KERNEL" + fi + apt-get --force-yes -y install $KERNELPACKAGES +fi + if [ -n "$RECONFIGURE" ] ; then for package in $RECONFIGURE ; do dpkg --list $package 1>/dev/null 2>/dev/null && dpkg-reconfigure $package || echo "Warning: $package does not exist, can not reconfigure it."