public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* 2.5.6: make xconfig croaks in with sound/core/Config.in
@ 2002-03-12 22:47 A Guy Called Tyketto
  0 siblings, 0 replies; 4+ messages in thread
From: A Guy Called Tyketto @ 2002-03-12 22:47 UTC (permalink / raw)
  To: linux-kernel


        Short, but sweet:

root@bellicha:/usr/src/linux# head -10 Makefile
VERSION = 2
PATCHLEVEL = 5
SUBLEVEL = 6
EXTRAVERSION =

KERNELRELEASE=$(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)

ARCH := $(shell uname -m | sed -e s/i.86/i386/ -e s/sun4u/sparc64/ -e 
s/arm.*/arm/ -e s/sa110/arm/)
KERNELPATH=kernel-$(shell echo $(KERNELRELEASE) | sed -e "s/-//")

root@bellicha:/usr/src/linux# make xconfig &
[2] 32520
root@bellicha:/usr/src/linux# rm -f include/asm
( cd include ; ln -sf asm-i386 asm)
make -C scripts kconfig.tk
make[1]: Entering directory `/usr/src/linux-2.5.5/scripts'
gcc -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -c -o tkparse.o 
tkparse.c
gcc -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -c -o tkcond.o tkcond.c
gcc -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -c -o tkgen.o tkgen.c
gcc -o tkparse tkparse.o tkcond.o tkgen.o
cat header.tk >> ./kconfig.tk
./tkparse < ../arch/i386/config.in >> kconfig.tk
sound/core/Config.in: 4: can't handle dep_bool/dep_mbool/dep_tristate condition
make[1]: *** [kconfig.tk] Error 1
make[1]: Leaving directory `/usr/src/linux-2.5.5/scripts'
make: *** [xconfig] Error 2

[2]+  Exit 2                  make xconfig

                                                        BL.
-- 
Brad Littlejohn                         | Email:        tyketto@wizard.com
Unix Systems Administrator,             |           tyketto@ozemail.com.au
Web + NewsMaster, BOFH.. Smeghead! :)   |   http://www.wizard.com/~tyketto
  PGP: 1024D/E319F0BF 6980 AAD6 7329 E9E6 D569  F620 C819 199A E319 F0BF


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: 2.5.6: make xconfig croaks in with sound/core/Config.in
@ 2002-03-14  0:25 Thunder from the hill
  0 siblings, 0 replies; 4+ messages in thread
From: Thunder from the hill @ 2002-03-14  0:25 UTC (permalink / raw)
  To: A Guy Called Tyketto; +Cc: linux-kernel

Might be interesting to know what's already in the kconfig.tk - you
might find the file written up to the crashing point

Thunder

A Guy Called Tyketto wrote:

>         Short, but sweet:
> 
> root@bellicha:/usr/src/linux# head -10 Makefile
> VERSION = 2
> PATCHLEVEL = 5
> SUBLEVEL = 6
> EXTRAVERSION =
> 
> KERNELRELEASE=$(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)
> 
> ARCH := $(shell uname -m | sed -e s/i.86/i386/ -e s/sun4u/sparc64/ -e 
> s/arm.*/arm/ -e s/sa110/arm/)
> KERNELPATH=kernel-$(shell echo $(KERNELRELEASE) | sed -e "s/-//")
> 
> root@bellicha:/usr/src/linux# make xconfig &
> [2] 32520
> root@bellicha:/usr/src/linux# rm -f include/asm
> ( cd include ; ln -sf asm-i386 asm)
> make -C scripts kconfig.tk
> make[1]: Entering directory `/usr/src/linux-2.5.5/scripts'
> gcc -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -c -o tkparse.o 
> tkparse.c
> gcc -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -c -o tkcond.o tkcond.c
> gcc -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -c -o tkgen.o tkgen.c
> gcc -o tkparse tkparse.o tkcond.o tkgen.o
> cat header.tk >> ./kconfig.tk
> ./tkparse < ../arch/i386/config.in >> kconfig.tk
> sound/core/Config.in: 4: can't handle dep_bool/dep_mbool/dep_tristate condition
> make[1]: *** [kconfig.tk] Error 1
> make[1]: Leaving directory `/usr/src/linux-2.5.5/scripts'
> make: *** [xconfig] Error 2
> 
> [2]+  Exit 2                  make xconfig
> 
>                                                         BL.
> 


-- 
begin-base64 755 -
IyEgL3Vzci9iaW4vcGVybApteSAgICAgJHNheWluZyA9CSMgVGhlIHNjcmlw
dCBvbiB0aGUgbGVmdCBpcyB0aGUgcHJvb2YKIk5lbmEgaXN0IGVpbiIgLgkj
IHRoYXQgaXQgaXNuJ3QgYWxsIHRoZSB3YXkgaXQgc2VlbXMKIiB2ZXJhbHRl
dGVyICIgLgkjIHRvIGJlIChlc3BlY2lhbGx5IG5vdCB3aXRoIG1lKQoiTkRX
LVN0YXIuXG4iICA7CiRzYXlpbmcgPX4Kcy9ORFctU3Rhci9rYW5uXAogdW5z
IHJldHRlbi9nICA7CiRzYXlpbmcgICAgICAgPX4Kcy92ZXJhbHRldGVyL2Rp
XAplIExpZWJlL2c7CiRzYXlpbmcgPX5zL2Vpbi8KbnVyL2c7JHNheWluZyA9
fgpzL2lzdC9zYWd0LC9nICA7CiRzYXlpbmc9fnMvXG4vL2cKO3ByaW50Zigk
c2F5aW5nKQo7cHJpbnRmKCJcbiIpOwo=
====
Extract this and see what will happen if you execute my
signature. Just save it to file and do a
> uudecode $file | perl

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: 2.5.6: make xconfig croaks in with sound/core/Config.in
       [not found] <200203141212.g2ECC3N10085@sunrise.pg.gda.pl>
@ 2002-03-14 16:11 ` Andrzej Krzysztofowicz
  2002-03-14 17:00   ` Alessandro Suardi
  0 siblings, 1 reply; 4+ messages in thread
From: Andrzej Krzysztofowicz @ 2002-03-14 16:11 UTC (permalink / raw)
  To: tyketto; +Cc: kernel list

> 
>         Short, but sweet:
> 
> root@bellicha:/usr/src/linux# head -10 Makefile
> VERSION = 2
> PATCHLEVEL = 5
> SUBLEVEL = 6
> EXTRAVERSION =
[...]
> gcc -o tkparse tkparse.o tkcond.o tkgen.o
> cat header.tk >> ./kconfig.tk
> ./tkparse < ../arch/i386/config.in >> kconfig.tk
> sound/core/Config.in: 4: can't handle dep_bool/dep_mbool/dep_tristate condition
  ^^^^^^^^^^^^^^^^^^^^^^^
Error location seems to be clear.
Forgotten dependency ?

> make[1]: *** [kconfig.tk] Error 1
> make[1]: Leaving directory `/usr/src/linux-2.5.5/scripts'
> make: *** [xconfig] Error 2
> 
> [2]+  Exit 2                  make xconfig

-- 
=======================================================================
  Andrzej M. Krzysztofowicz               ankry@mif.pg.gda.pl
  phone (48)(58) 347 14 61
Faculty of Applied Phys. & Math.,   Technical University of Gdansk

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: 2.5.6: make xconfig croaks in with sound/core/Config.in
  2002-03-14 16:11 ` Andrzej Krzysztofowicz
@ 2002-03-14 17:00   ` Alessandro Suardi
  0 siblings, 0 replies; 4+ messages in thread
From: Alessandro Suardi @ 2002-03-14 17:00 UTC (permalink / raw)
  To: Andrzej Krzysztofowicz; +Cc: tyketto, kernel list

Andrzej Krzysztofowicz wrote:
>>        Short, but sweet:
>>
>>root@bellicha:/usr/src/linux# head -10 Makefile
>>VERSION = 2
>>PATCHLEVEL = 5
>>SUBLEVEL = 6
>>EXTRAVERSION =
>>
> [...]
> 
>>gcc -o tkparse tkparse.o tkcond.o tkgen.o
>>cat header.tk >> ./kconfig.tk
>>./tkparse < ../arch/i386/config.in >> kconfig.tk
>>sound/core/Config.in: 4: can't handle dep_bool/dep_mbool/dep_tristate condition
>>
>   ^^^^^^^^^^^^^^^^^^^^^^^
> Error location seems to be clear.
> Forgotten dependency ?

I simply added $CONFIG_SND after that and two more lines.

It compiles :)


--alessandro

  "time is never time at all / you can never ever leave
    without leaving a piece of youth"
                    (Smashing Pumpkins, "Tonight, tonight")


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2002-03-14 17:00 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-03-14  0:25 2.5.6: make xconfig croaks in with sound/core/Config.in Thunder from the hill
     [not found] <200203141212.g2ECC3N10085@sunrise.pg.gda.pl>
2002-03-14 16:11 ` Andrzej Krzysztofowicz
2002-03-14 17:00   ` Alessandro Suardi
  -- strict thread matches above, loose matches on Subject: below --
2002-03-12 22:47 A Guy Called Tyketto

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox