Bug 101073
Summary: | kernel configuration section fails to load | ||
---|---|---|---|
Product: | [Retired] Red Hat Linux Beta | Reporter: | Elton Woo <elwoo> |
Component: | kdebase | Assignee: | Than Ngo <than> |
Status: | CLOSED RAWHIDE | QA Contact: | Ben Levenson <benl> |
Severity: | medium | Docs Contact: | |
Priority: | medium | ||
Version: | AS-beta1 | ||
Target Milestone: | --- | ||
Target Release: | --- | ||
Hardware: | i386 | ||
OS: | Linux | ||
Whiteboard: | |||
Fixed In Version: | Doc Type: | Bug Fix | |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2003-07-30 13:31:02 UTC | Type: | --- |
Regression: | --- | Mount Type: | --- |
Documentation: | --- | CRM: | |
Verified Versions: | Category: | --- | |
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
Cloudforms Team: | --- | Target Upstream Version: | |
Embargoed: | |||
Bug Depends On: | |||
Bug Blocks: | 100644 |
Description
Elton Woo
2003-07-28 21:45:41 UTC
Severn beta (RH 9.0.93) Hm, it's a syntax bug in kernel config file. With this patch, it should fix this problem. next kernel rebuild should have this fix. --- drivers/net/wan/Config.in.orig 2003-07-30 15:19:32.000000000 +0200 +++ drivers/net/wan/Config.in 2003-07-30 15:19:19.000000000 +0200 @@ -80,8 +80,7 @@ if [ "$CONFIG_PCI" != "n" ]; then dep_tristate ' Cyclades-PC300 support (RS-232/V.35, X.21, T1/E1 boards)' CONFIG_PC300 $CONFIG_HDLC if [ "$CONFIG_PC300" != "n" ]; then - if ["$CONFIG_PPP" != "n" -a "$CONFIG_PPP_MULTLINK" != "n" -a "$CONFIG_PPP_SYNCTTY" != "n" -a "$CONFIG_HDLC_PPP" = "y"]; - then + if [ "$CONFIG_PPP" != "n" -a "$CONFIG_PPP_MULTLINK" != "n" -a "$CONFIG_PPP_SYNCTTY" != "n" -a "$CONFIG_HDLC_PPP" = "y" ]; then bool ' Cyclades-PC300 MLPPP support' CONFIG_PC300_MLPPP else comment ' Cyclades-PC300 MLPPP support is disabled. You have to enable PPP, PPP_MULTILINK' I'm no programmer, but I suspected something like that. Glad to have found this. ... one less bug for your RH guys! ;-) |