diff options
author | Gustavo F. Padovan <padovan@profusion.mobi> | 2011-02-07 17:08:52 -0500 |
---|---|---|
committer | Gustavo F. Padovan <padovan@profusion.mobi> | 2011-02-14 15:27:36 -0500 |
commit | 642745184f82688eb3ef0cdfaa4ba632055be9af (patch) | |
tree | 481319e39ccd971d770d88e48507469aad4adc87 /net/bluetooth/Kconfig | |
parent | c4c896e1471aec3b004a693c689f60be3b17ac86 (diff) |
Bluetooth: Merge L2CAP and SCO modules into bluetooth.ko
Actually doesn't make sense have these modules built separately.
The L2CAP layer is needed by almost all Bluetooth protocols and profiles.
There isn't any real use case without having L2CAP loaded.
SCO is only essential for Audio transfers, but it is so small that we can
have it loaded always in bluetooth.ko without problems.
If you really doesn't want it you can disable SCO in the kernel config.
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
Diffstat (limited to 'net/bluetooth/Kconfig')
-rw-r--r-- | net/bluetooth/Kconfig | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/net/bluetooth/Kconfig b/net/bluetooth/Kconfig index e45eae66eaf3..c6f9c2fb4891 100644 --- a/net/bluetooth/Kconfig +++ b/net/bluetooth/Kconfig | |||
@@ -32,7 +32,7 @@ menuconfig BT | |||
32 | more information, see <http://www.bluez.org/>. | 32 | more information, see <http://www.bluez.org/>. |
33 | 33 | ||
34 | config BT_L2CAP | 34 | config BT_L2CAP |
35 | tristate "L2CAP protocol support" | 35 | bool "L2CAP protocol support" |
36 | depends on BT | 36 | depends on BT |
37 | select CRC16 | 37 | select CRC16 |
38 | help | 38 | help |
@@ -40,19 +40,13 @@ config BT_L2CAP | |||
40 | connection oriented and connection-less data transport. L2CAP | 40 | connection oriented and connection-less data transport. L2CAP |
41 | support is required for most Bluetooth applications. | 41 | support is required for most Bluetooth applications. |
42 | 42 | ||
43 | Say Y here to compile L2CAP support into the kernel or say M to | ||
44 | compile it as module (l2cap). | ||
45 | |||
46 | config BT_SCO | 43 | config BT_SCO |
47 | tristate "SCO links support" | 44 | bool "SCO links support" |
48 | depends on BT | 45 | depends on BT |
49 | help | 46 | help |
50 | SCO link provides voice transport over Bluetooth. SCO support is | 47 | SCO link provides voice transport over Bluetooth. SCO support is |
51 | required for voice applications like Headset and Audio. | 48 | required for voice applications like Headset and Audio. |
52 | 49 | ||
53 | Say Y here to compile SCO support into the kernel or say M to | ||
54 | compile it as module (sco). | ||
55 | |||
56 | source "net/bluetooth/rfcomm/Kconfig" | 50 | source "net/bluetooth/rfcomm/Kconfig" |
57 | 51 | ||
58 | source "net/bluetooth/bnep/Kconfig" | 52 | source "net/bluetooth/bnep/Kconfig" |