Restore BOOTLOADER="grub" example line in genkernel.conf for gentoo bug #274768

cleanup-cruft
Andrew Gaffney 16 years ago
parent 8b3093a153
commit 25e7fa89be

@ -2,6 +2,11 @@
# Copyright 1999-2009 Gentoo Foundation; 2008-2009 Various authors (see AUTHORS)
# Distributed under the GPL v2
28 Jun 2009; Andrew Gaffney <agaffney@gentoo.org> defaults/modprobe,
genkernel.conf:
Restore BOOTLOADER="grub" example line in genkernel.conf for gentoo bug
#274768
12 May 2009; Andrew Gaffney <agaffney@gentoo.org> arch/x86/modules_load,
defaults/initrd.scripts:
Apply fix to deference links for gentoo bug #269603

@ -22,7 +22,7 @@ modules_dep_list() {
echo 'modules_dep_list(): Improper usage!'
exit 1
fi
cat /lib/modules/${KV}/modules.dep | grep ${1}${KSUFF}\: | cut -d\: -f2
cat /lib/modules/${KV}/modules.dep | grep /"${1}${KSUFF}:" | cut -d':' -f2
}
@ -84,6 +84,7 @@ modprobe2() {
real_path=`real_mod_path ${1}`
if [ "${real_path}" = '' -o "${real_path}" = ' ' ]
then
[ "${2}" = '-n' ] && echo -n " -> $1"
echo ' module not found.'
exit 2
fi

@ -79,6 +79,9 @@ USECOLOR="yes"
# Enable disklabel support (copies blkid to initrd)
# DISKLABEL="yes"
# Add new kernel to grub?
# BOOTLOADER="grub"
# =========Low Level Compile Settings=========
#
# GNU Make to use for kernel. See also the --kernel-make command line option.

Loading…
Cancel
Save