X-Git-Url: https://git.grml.org/?p=grml-debootstrap.git;a=blobdiff_plain;f=chroot-script;h=50d3f4f6d862a1a4e51088be768c3fb45e635611;hp=4a505acde90b03b278d090639a11aed5d7906157;hb=68dbb4420447df9e744a195718e3dc6068c9ddee;hpb=93dc78c05afaa9e4a6f7f822203c69f8402ce4d1;ds=sidebyside diff --git a/chroot-script b/chroot-script index 4a505ac..50d3f4f 100644 --- a/chroot-script +++ b/chroot-script @@ -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."