Bug 101073 - kernel configuration section fails to load
Summary: kernel configuration section fails to load
Keywords:
Status: CLOSED RAWHIDE
Alias: None
Product: Red Hat Linux Beta
Classification: Retired
Component: kdebase
Version: AS-beta1
Hardware: i386
OS: Linux
medium
medium
Target Milestone: ---
Assignee: Than Ngo
QA Contact: Ben Levenson
URL:
Whiteboard:
Depends On:
Blocks: CambridgeTarget
TreeView+ depends on / blocked
 
Reported: 2003-07-28 21:45 UTC by Elton Woo
Modified: 2007-04-18 16:56 UTC (History)
0 users

Fixed In Version:
Clone Of:
Environment:
Last Closed: 2003-07-30 13:31:02 UTC
Embargoed:


Attachments (Terms of Use)

Description Elton Woo 2003-07-28 21:45:41 UTC
From Bugzilla Helper:
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.4) Gecko/20030703

Description of problem:
Kernel configuration panel fails to load with the following error 
message:

"Sorry

The kernel configuration could not be read due to the following error: 

/usr/src/linux-2.4/drivers/net/wan/Config.in, line 84 "

Version-Release number of selected component (if applicable):
kdebase-3.1.2-13, kdelibs-3.1.2-7

How reproducible:
Always

Steps to Reproduce:
1.Start KDE Control Center
2. Select kernel configuration section
3.
    

Actual Results:  error message pops up, and further action in that
section is disabled.

Expected Results:  section should startup and request / provide root access,
then su- user can configure the kernel options,

Additional info:

Comment 1 Elton Woo 2003-07-28 21:46:30 UTC
Severn beta (RH 9.0.93)

Comment 2 Than Ngo 2003-07-30 13:31:02 UTC
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'


Comment 3 Elton Woo 2003-07-30 17:26:51 UTC
I'm no programmer, but I suspected something like that. Glad to have found this.
... one less bug for your RH guys! ;-)


Note You need to log in before you can comment on or make changes to this bug.