diff options
author | Florian Fainelli <florian@openwrt.org> | 2008-11-20 23:01:07 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2008-11-20 23:01:07 +0000 |
commit | 919fc96bdf3907573775cc89192e58d344110fd6 (patch) | |
tree | 1a7cf7ee74c6cc7e38f29f813cfb86ce75e18530 /package/kernel | |
parent | 8f5351a4f26ca89b09cceb49e0d2dd64a0f39e9b (diff) | |
download | upstream-919fc96bdf3907573775cc89192e58d344110fd6.tar.gz upstream-919fc96bdf3907573775cc89192e58d344110fd6.tar.bz2 upstream-919fc96bdf3907573775cc89192e58d344110fd6.zip |
Package ssb glue code out of the kernel, and make b43 be built for non-brcm47xx targets as well
SVN-Revision: 13301
Diffstat (limited to 'package/kernel')
-rw-r--r-- | package/kernel/modules/other.mk | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/package/kernel/modules/other.mk b/package/kernel/modules/other.mk index 513517d26c..593aa7fd33 100644 --- a/package/kernel/modules/other.mk +++ b/package/kernel/modules/other.mk @@ -192,6 +192,28 @@ endef $(eval $(call KernelPackage,pcmcia-serial)) +define KernelPackage/ssb + SUBMENU:=$(OTHER_MENU) + TITLE:=Silicon Sonics Backplane glue code + DEPENDS:=@PCI_SUPPORT @!TARGET_brcm47xx + KCONFIG:=\ + CONFIG_SSB \ + CONFIG_SSB_B43_PCI_BRIDGE \ + CONFIG_SSB_DRIVER_PCICORE_POSSIBLE \ + CONFIG_SSB_PCIHOST \ + CONFIG_SSB_PCIHOST_POSSIBLE \ + CONFIG_SSB_POSSIBLE \ + CONFIG_SSB_SPROM + FILES:=$(LINUX_DIR)/drivers/ssb/ssb.$(LINUX_KMOD_SUFFIX) + AUTOLOAD:=$(call AutoLoad,29,ssb) +endef + +define KernelPackage/ssb/description + Silicon Sonics Backplane glue code. +endef + +$(eval $(call KernelPackage,ssb)) + define KernelPackage/bluetooth SUBMENU:=$(OTHER_MENU) |