* [PATCH] make config w/ Pentium-II
@ 2000-12-12 15:17 Matthew Wilcox
0 siblings, 0 replies; only message in thread
From: Matthew Wilcox @ 2000-12-12 15:17 UTC (permalink / raw)
To: torvalds; +Cc: linux-kbuild, linux-kernel
I built 2.4.0-test10 for my laptop and got caught out by `make config'.
When I typed `Pentium-II' for my CPU type, it selected Pentium-III and
my kernel wouldn't boot. To prevent errors of this type, please apply
this patch. As a bonus, `Celeron' will now work as an answer too.
Please apply.
diff -urNX dontdiff linux/scripts/Configure linux-test10/scripts/Configure
--- linux/scripts/Configure Mon Oct 30 22:44:29 2000
+++ linux-test10/scripts/Configure Tue Dec 12 03:39:41 2000
@@ -479,11 +479,14 @@
while [ -n "$1" ]; do
name=$(echo $1 | tr a-z A-Z)
case "$name" in
- "$ans"* )
- if [ "$name" = "$ans" ]; then
- val="$2"
- break # stop on exact match
- fi
+ "$ans"* | */"$ans"* )
+ case "$name" in
+ "$ans" | */"$ans"/* | \
+ "$ans"/* | */"$ans" )
+ val="$2"
+ break # exact match
+ ;;
+ esac
if [ -n "$val" ]; then
echo;echo \
" Sorry, \"$ans\" is ambiguous; please enter a longer string."
--
Revolutions do not require corporate support.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2000-12-12 15:48 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2000-12-12 15:17 [PATCH] make config w/ Pentium-II Matthew Wilcox
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®