1# 2# Bluetooth subsystem configuration 3# 4 5if [ "$CONFIG_NET" != "n" ]; then 6 7 mainmenu_option next_comment 8 comment 'Bluetooth support' 9 dep_tristate 'Bluetooth subsystem support' CONFIG_BLUEZ $CONFIG_NET 10 11 if [ "$CONFIG_BLUEZ" != "n" ]; then 12 dep_tristate 'L2CAP protocol support' CONFIG_BLUEZ_L2CAP $CONFIG_BLUEZ 13 dep_tristate 'SCO links support' CONFIG_BLUEZ_SCO $CONFIG_BLUEZ 14 source net/bluetooth/rfcomm/Config.in 15 source net/bluetooth/bnep/Config.in 16 source net/bluetooth/cmtp/Config.in 17 source drivers/bluetooth/Config.in 18 fi 19 20 endmenu 21fi 22 23