X-Git-Url: https://git.grml.org/?p=grml-debootstrap.git;a=blobdiff_plain;f=chroot-script;h=50d3f4f6d862a1a4e51088be768c3fb45e635611;hp=1524da4e6a9df56935d21ad2182ea791378777b2;hb=68dbb4420447df9e744a195718e3dc6068c9ddee;hpb=be87c6d1ae33ce0792222b0ed438496ae9ae3b53 diff --git a/chroot-script b/chroot-script index 1524da4..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:48:42 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 @@ -38,6 +38,16 @@ if [ "$PACKAGES" = 'yes' ] ; then 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."