diff options
author | Johannes Berg <johannes@sipsolutions.net> | 2013-04-01 00:23:34 +0200 |
---|---|---|
committer | Johannes Berg <johannes@sipsolutions.net> | 2013-04-01 00:23:46 +0200 |
commit | 724c88b38bedf17e4209e5b25c4a68559cde0b2a (patch) | |
tree | 3f876d9cbbf501957bb56a002fefb64f8dc7b138 /plumbing | |
parent | e259f7fbe6cf8fb047ecbe66dbea12cf5f7a5dc4 (diff) |
add Bluetooth Kconfig/Makefile stuff
Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Diffstat (limited to 'plumbing')
-rw-r--r-- | plumbing/Kconfig | 3 | ||||
-rw-r--r-- | plumbing/Makefile.kernel | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/plumbing/Kconfig b/plumbing/Kconfig index 06406b7e..545f716c 100644 --- a/plumbing/Kconfig +++ b/plumbing/Kconfig @@ -24,6 +24,9 @@ source compat/Kconfig # these are copied from the kernel source net/wireless/Kconfig source net/mac80211/Kconfig +source net/bluetooth/Kconfig +# must be after ... otherwise BT moves into rfkill?! source net/rfkill/Kconfig source drivers/net/wireless/Kconfig source drivers/net/ethernet/Kconfig +source drivers/net/bluetooth/Kconfig diff --git a/plumbing/Makefile.kernel b/plumbing/Makefile.kernel index 400dda12..7a1d7094 100644 --- a/plumbing/Makefile.kernel +++ b/plumbing/Makefile.kernel @@ -11,3 +11,5 @@ obj-$(CPTCFG_CFG80211) += net/wireless/ obj-$(CPTCFG_MAC80211) += net/mac80211/ obj-$(CPTCFG_RFKILL) += net/rfkill/ obj-$(CPTCFG_WLAN) += drivers/net/wireless/ +obj-$(CPTCFG_BT) += net/bluetooth/ +obj-$(CPTCFG_BT) += drivers/bluetooth/ |