# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
# $Id: $
+ 12 Apr 2007; Chris Gianelloni <wolf31o2@gentoo.org> catalyst,
+ targets/support/kmerge.sh:
+ Commented out the package.provided code in catalyst that seemed to cause
+ problems with kerncache in testing. This is 2.0.4 and should be used for the
+ 2007.0 release.
+
12 Apr 2007; Chris Gianelloni <wolf31o2@gentoo.org>
modules/netboot2_target.py, targets/netboot2/netboot2-controller.sh,
targets/netboot2/netboot2-copyfile.sh, targets/support/functions.sh,
if [ -n "${clst_KERNCACHE}" ]
then
ROOT=/tmp/kerncache/${clst_kname} PKGDIR=${PKGDIR} USE="${USE} symlink build" emerge --nodeps -uqkb "${clst_ksource}" || exit 1
- KERNELVERSION=`/usr/lib/portage/bin/portageq best_visible / "${clst_ksource}"`
- if [ ! -e /etc/portage/profile/package.provided ]
- then
- mkdir -p /etc/portage/profile
- echo "${KERNELVERSION}" > /etc/portage/profile/package.provided
- else
- if ( ! grep -q "^${KERNELVERSION}" /etc/portage/profile/package.provided )
- then
- echo "${KERNELVERSION}" >> /etc/portage/profile/package.provided
- fi
- fi
+# KERNELVERSION=`/usr/lib/portage/bin/portageq best_visible / "${clst_ksource}"`
+# if [ ! -e /etc/portage/profile/package.provided ]
+# then
+# mkdir -p /etc/portage/profile
+# echo "${KERNELVERSION}" > /etc/portage/profile/package.provided
+# else
+# if ( ! grep -q "^${KERNELVERSION}" /etc/portage/profile/package.provided )
+# then
+# echo "${KERNELVERSION}" >> /etc/portage/profile/package.provided
+# fi
+# fi
[ -d /usr/src/linux ] && rm /usr/src/linux
ln -s /tmp/kerncache/${clst_kname}/usr/src/linux /usr/src/linux
else