Steve Lord wrote on 11-June-2001:
->> Hi,
->>
->> Is anyone experiencing a missing Config.in in the Bluetooth section?
->
->Is this still the case - there is a Config.in in the internal source tree
->and it shows up in the cvsweb tree on oss, so I think the problem is somewhere
->between oss and you.
->
->Steve
I'm also seeing this:
[root@pyewacket linux]# make xconfig
rm -f include/asm
( cd include ; ln -sf asm-i386 asm)
make -C scripts kconfig.tk
make[1]: Entering directory `/usr/src/linux-2.4-xfs/linux/scripts'
cat header.tk >> ./kconfig.tk
./tkparse < ../arch/i386/config.in >> kconfig.tk
-: 380: unable to open net/bluetooth/Config.in
make[1]: *** [kconfig.tk] Error 1
make[1]: Leaving directory `/usr/src/linux-2.4-xfs/linux/scripts'
make: *** [xconfig] Error 2
net/bluetooth/ doesn't exist but drivers/bluetooth does... I think
this is a bug in arch/i386/config.in and net/Makefile
Here's a couple of patchettes that get everything to at least compile
even if they aren't exactly correct.
------------------------------------------------------------------------
[root@pyewacket src]# diff -u
~ndoye/src/kernel/linux-xfs/linux-2.4-xfs/linux/arch/i386/config.in
linux/arch/i386/config.in
--- /home/ndoye/src/kernel/linux-xfs/linux-2.4-xfs/linux/arch/i386/config.in
Thu Jun 14 21:10:51 2001
+++ linux/arch/i386/config.in Thu Jun 14 23:02:21 2001
@@ -377,7 +377,7 @@
source drivers/usb/Config.in
if [ "$CONFIG_EXPERIMENTAL" = "y" ]; then
- source net/bluetooth/Config.in
+ source drivers/bluetooth/Config.in
fi
mainmenu_option next_comment
------------------------------------------------------------------------
[root@pyewacket linux]# cd .. ; diff -u
~ndoye/src/kernel/linux-xfs/linux-2.4-xfs/linux/net/Makefile linux/net/Makefile
--- /home/ndoye/src/kernel/linux-xfs/linux-2.4-xfs/linux/net/Makefile Thu Jun
14 21:13:11 2001
+++ linux/net/Makefile Fri Jun 15 09:38:49 2001
@@ -40,7 +40,6 @@
subdir-$(CONFIG_ROSE) += rose
subdir-$(CONFIG_AX25) += ax25
subdir-$(CONFIG_IRDA) += irda
-subdir-$(CONFIG_BLUEZ) += bluetooth
subdir-$(CONFIG_SUNRPC) += sunrpc
subdir-$(CONFIG_ATM) += atm
subdir-$(CONFIG_DECNET) += decnet
------------------------------------------------------------------------
--
www.nic.uklinux.net
|