2003-09-10 06:20:13

by Anton Kholodenin

[permalink] [raw]
Subject: Fw: Make Menuconfig and Make Xconfig errors in Mandrake 9.2 rc1

File /usr/src/linux/3rdparty/lufs/Config.in contains only one line:

dep_tristate 'LUFS support' CONFIG_LUFS

I have attached Config.in and all files from lufs folder in the message.

Best regadrs
Anton Kholodenin.

----- Original Message -----
From: "Steven Cole" <[email protected]>
To: "Anton Kholodenin" <[email protected]>
Cc: <[email protected]>
Sent: Tuesday, September 09, 2003 7:58 PM
Subject: Re: Make Menuconfig and Make Xconfig errors in Mandrake 9.2 rc1


> On Tue, 2003-09-09 at 07:59, Steven Cole wrote:
> > On Tue, 2003-09-09 at 04:06, Anton Kholodenin wrote:
> > > I find 2 errors in Mandrake 9.2 rc 1
> > >
> > As others noted, a Mandrake-specific list is a better choice in this
> > instance, but the problem you noted below happens occasionally in 2.4
> > bleeding edge stuff, so I'm posting something for you to look for.
> > >
> > > 2. If i do cd /usr/src/linux; make xconfig program not started and
write to
> > > console:
> >
> >3rdparty/lufs/Config.in: 2: can't handle
> dep_bool/dep_mbool/dep_tristate
>
> Replying to myself, apologies to all for the previous noise.
> I hadn't looked at the error closely enough. My previous post was not
> apropos to Anton's specific problem.
>
> Try doing this from /usr/src/linux:
> grep dep_ 3rdparty/lufs/Config.in
>
> You'll see various lines with something like:
> dep_tristate ' Some prompt' CONFIG_SOMETHING $CONFIG_SOMETHINGELSE
>
> The $CONFIG_SOMETHINGELSE may be missing on some line. You can kludge
> it by changing the dep_tristate to a plain tristate.
>
> The Mandrake 9.2 rc2 is out now, so you might want to look at that
> instead.
>
> Steven
>
>
>
>
>


Attachments:
lufs.tgz (11.69 kB)
Config.in (40.00 B)
Download all attachments

2003-09-10 16:52:06

by Steven Cole

[permalink] [raw]
Subject: Re: Fw: Make Menuconfig and Make Xconfig errors in Mandrake 9.2 rc1

On Wed, 2003-09-10 at 00:19, Anton Kholodenin wrote:
> File /usr/src/linux/3rdparty/lufs/Config.in contains only one line:
>
> dep_tristate 'LUFS support' CONFIG_LUFS
>
> I have attached Config.in and all files from lufs folder in the message.
>
> Best regadrs
> Anton Kholodenin.

Apologies again for the noise. This should be going to a Mandrake list,
but this is short and sweet. Adding Juan Q. to cc-list.

It's still broken in 2.4.22-6mdk. You'll get something like this when
you do make xconfig:

./tkparse < ../arch/i386/config.in >> kconfig.tk
3rdparty/lufs/Config.in: 2: unknown command

This will fix it:

--- linux-2.4.22-6mdk/3rdparty/lufs/Config.in.brokenasusual 2003-09-10 10:34:27.000000000 -0600
+++ linux-2.4.22-6mdk/3rdparty/lufs/Config.in 2003-09-10 10:36:27.000000000 -0600
@@ -1,2 +1,2 @@

-xtristate 'LUFS support' CONFIG_LUFS
+tristate 'LUFS support' CONFIG_LUFS



Steven