From: Michael Prokop Date: Fri, 3 Nov 2006 22:30:25 +0000 (+0100) Subject: add [kernel|linux]-headers- X-Git-Tag: 0.2~26 X-Git-Url: https://git.grml.org/?p=grml-debootstrap.git;a=commitdiff_plain;h=304772b5744d13a2c5d6f83bbed9572beafc412a add [kernel|linux]-headers- --- diff --git a/chroot-script b/chroot-script index 50d3f4f..baabe4d 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 23:19:29 CET 2006 [mika] +# Latest change: Fre Nov 03 23:30:04 CET 2006 [mika] ################################################################################ set -e # exit on any error @@ -41,9 +41,9 @@ fi if [ -n "$KERNEL" ] ; then apt-get update if [ "$RELEASE" = 'sarge' ] ; then - KERNELPACKAGES="kernel-image-$KERNEL" + KERNELPACKAGES="kernel-image-$KERNEL kernel-headers-$KERNEL" else - KERNELPACKAGES="linux-image-$KERNEL" + KERNELPACKAGES="linux-image-$KERNEL linux-headers-$KERNEL" fi apt-get --force-yes -y install $KERNELPACKAGES fi diff --git a/debian/changelog b/debian/changelog index b9dd391..e03d946 100644 --- a/debian/changelog +++ b/debian/changelog @@ -7,6 +7,8 @@ grml-debootstrap (0.2) unstable; urgency=low - /etc/kernel-img.conf - support setting locales through /etc/debootstrap/locale.gen * Added ssh, mdadm and lvm to default package list. + * Rewrote kernel package version handling (removed from package + list to be able to support sarge as well). -- Michael Prokop Fri, 3 Nov 2006 19:05:19 +0100