On Fri, Jan 30, 2009 at 10:04 PM, P.G. Richardson <p.g.richardson@xxxxxxxxxxxxxxxxx> wrote: > I am not that familiar with kernel makefiles but it would seem that the > drivers/net/wireless line below is not recursive: > > obj-y := net/wireless/ net/mac80211/ > ifeq ($(ONLY_CORE),) > obj-$(CONFIG_B44) += drivers/net/b44.o > obj-y += drivers/ssb/ \ > drivers/misc/eeprom/ \ > drivers/net/usb/ \ > drivers/net/wireless/ > endif It is recursive - it runs Makefile in drivers/net/wireless/ . Your list is very small - it should build and install 40+ kernel modules. curious. some kernel config means the modules aren't built, but in your case they are built but not installed... I wonder if it is affected by blacklist. -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html