kernel: modules: bluetooth: creating a new Bluetooth menu
Move Bluetooth modules to new Bluetooth menu from Other menu. Signed-off-by: Paweł Owoc <frut3k7@gmail.com> Link: https://github.com/openwrt/openwrt/pull/15118 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
This commit is contained in:
parent
8b3c845835
commit
f4f0a847a4
121
package/kernel/linux/modules/bluetooth.mk
Normal file
121
package/kernel/linux/modules/bluetooth.mk
Normal file
@ -0,0 +1,121 @@
|
|||||||
|
#
|
||||||
|
# Copyright (C) 2006-2025 OpenWrt.org
|
||||||
|
#
|
||||||
|
# This is free software, licensed under the GNU General Public License v2.
|
||||||
|
# See /LICENSE for more information.
|
||||||
|
#
|
||||||
|
|
||||||
|
BLUETOOTH_MENU:=Bluetooth Support
|
||||||
|
|
||||||
|
define KernelPackage/bluetooth
|
||||||
|
SUBMENU:=$(BLUETOOTH_MENU)
|
||||||
|
TITLE:=Bluetooth support
|
||||||
|
DEPENDS:=@USB_SUPPORT +kmod-usb-core +kmod-crypto-hash +kmod-crypto-ecb +kmod-lib-crc16 +kmod-hid +kmod-crypto-cmac +kmod-regmap-core +kmod-crypto-ecdh
|
||||||
|
KCONFIG:= \
|
||||||
|
CONFIG_BT \
|
||||||
|
CONFIG_BT_BREDR=y \
|
||||||
|
CONFIG_BT_DEBUGFS=n \
|
||||||
|
CONFIG_BT_LE=y \
|
||||||
|
CONFIG_BT_RFCOMM \
|
||||||
|
CONFIG_BT_BNEP \
|
||||||
|
CONFIG_BT_HCIBTUSB \
|
||||||
|
CONFIG_BT_HCIBTUSB_BCM=n \
|
||||||
|
CONFIG_BT_HCIBTUSB_MTK=y \
|
||||||
|
CONFIG_BT_HCIBTUSB_RTL=y \
|
||||||
|
CONFIG_BT_HCIUART \
|
||||||
|
CONFIG_BT_HCIUART_BCM=n \
|
||||||
|
CONFIG_BT_HCIUART_INTEL=n \
|
||||||
|
CONFIG_BT_HCIUART_H4 \
|
||||||
|
CONFIG_BT_HCIUART_NOKIA=n \
|
||||||
|
CONFIG_BT_HIDP
|
||||||
|
$(call AddDepends/rfkill)
|
||||||
|
FILES:= \
|
||||||
|
$(LINUX_DIR)/net/bluetooth/bluetooth.ko \
|
||||||
|
$(LINUX_DIR)/net/bluetooth/rfcomm/rfcomm.ko \
|
||||||
|
$(LINUX_DIR)/net/bluetooth/bnep/bnep.ko \
|
||||||
|
$(LINUX_DIR)/net/bluetooth/hidp/hidp.ko \
|
||||||
|
$(LINUX_DIR)/drivers/bluetooth/hci_uart.ko \
|
||||||
|
$(LINUX_DIR)/drivers/bluetooth/btusb.ko \
|
||||||
|
$(LINUX_DIR)/drivers/bluetooth/btintel.ko \
|
||||||
|
$(LINUX_DIR)/drivers/bluetooth/btrtl.ko \
|
||||||
|
$(LINUX_DIR)/drivers/bluetooth/btmtk.ko
|
||||||
|
AUTOLOAD:=$(call AutoProbe,bluetooth rfcomm bnep hidp hci_uart btusb)
|
||||||
|
endef
|
||||||
|
|
||||||
|
define KernelPackage/bluetooth/description
|
||||||
|
Kernel support for Bluetooth devices
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(call KernelPackage,bluetooth))
|
||||||
|
|
||||||
|
define KernelPackage/ath3k
|
||||||
|
SUBMENU:=$(BLUETOOTH_MENU)
|
||||||
|
TITLE:=ATH3K Kernel Module support
|
||||||
|
DEPENDS:=+kmod-bluetooth +ar3k-firmware
|
||||||
|
KCONFIG:= \
|
||||||
|
CONFIG_BT_ATH3K \
|
||||||
|
CONFIG_BT_HCIUART_ATH3K=y
|
||||||
|
FILES:= \
|
||||||
|
$(LINUX_DIR)/drivers/bluetooth/ath3k.ko
|
||||||
|
AUTOLOAD:=$(call AutoProbe,ath3k)
|
||||||
|
endef
|
||||||
|
|
||||||
|
define KernelPackage/ath3k/description
|
||||||
|
Kernel support for ATH3K Module
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(call KernelPackage,ath3k))
|
||||||
|
|
||||||
|
|
||||||
|
define KernelPackage/bluetooth-6lowpan
|
||||||
|
SUBMENU:=$(BLUETOOTH_MENU)
|
||||||
|
TITLE:=Bluetooth 6LoWPAN support
|
||||||
|
DEPENDS:=+kmod-6lowpan +kmod-bluetooth
|
||||||
|
KCONFIG:=CONFIG_BT_6LOWPAN
|
||||||
|
FILES:=$(LINUX_DIR)/net/bluetooth/bluetooth_6lowpan.ko
|
||||||
|
AUTOLOAD:=$(call AutoProbe,bluetooth_6lowpan)
|
||||||
|
endef
|
||||||
|
|
||||||
|
define KernelPackage/bluetooth-6lowpan/description
|
||||||
|
Kernel support for 6LoWPAN over Bluetooth Low Energy devices
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(call KernelPackage,bluetooth-6lowpan))
|
||||||
|
|
||||||
|
|
||||||
|
define KernelPackage/btmrvl
|
||||||
|
SUBMENU:=$(BLUETOOTH_MENU)
|
||||||
|
TITLE:=Marvell Bluetooth Kernel Module support
|
||||||
|
DEPENDS:=+kmod-mmc +kmod-bluetooth +mwifiex-sdio-firmware
|
||||||
|
KCONFIG:= \
|
||||||
|
CONFIG_BT_MRVL \
|
||||||
|
CONFIG_BT_MRVL_SDIO
|
||||||
|
FILES:= \
|
||||||
|
$(LINUX_DIR)/drivers/bluetooth/btmrvl.ko \
|
||||||
|
$(LINUX_DIR)/drivers/bluetooth/btmrvl_sdio.ko
|
||||||
|
AUTOLOAD:=$(call AutoProbe,btmrvl btmrvl_sdio)
|
||||||
|
endef
|
||||||
|
|
||||||
|
define KernelPackage/btmrvl/description
|
||||||
|
Kernel support for Marvell SDIO Bluetooth Module
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(call KernelPackage,btmrvl))
|
||||||
|
|
||||||
|
|
||||||
|
define KernelPackage/btsdio
|
||||||
|
SUBMENU:=$(BLUETOOTH_MENU)
|
||||||
|
TITLE:=Bluetooth HCI SDIO driver
|
||||||
|
DEPENDS:=+kmod-bluetooth +kmod-mmc
|
||||||
|
KCONFIG:= \
|
||||||
|
CONFIG_BT_HCIBTSDIO
|
||||||
|
FILES:= \
|
||||||
|
$(LINUX_DIR)/drivers/bluetooth/btsdio.ko
|
||||||
|
AUTOLOAD:=$(call AutoProbe,btsdio)
|
||||||
|
endef
|
||||||
|
|
||||||
|
define KernelPackage/btsdio/description
|
||||||
|
Kernel support for Bluetooth device with SDIO interface
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(call KernelPackage,btsdio))
|
@ -27,120 +27,6 @@ endef
|
|||||||
$(eval $(call KernelPackage,6lowpan))
|
$(eval $(call KernelPackage,6lowpan))
|
||||||
|
|
||||||
|
|
||||||
define KernelPackage/bluetooth
|
|
||||||
SUBMENU:=$(OTHER_MENU)
|
|
||||||
TITLE:=Bluetooth support
|
|
||||||
DEPENDS:=@USB_SUPPORT +kmod-usb-core +kmod-crypto-hash +kmod-crypto-ecb +kmod-lib-crc16 +kmod-hid +kmod-crypto-cmac +kmod-regmap-core +kmod-crypto-ecdh
|
|
||||||
KCONFIG:= \
|
|
||||||
CONFIG_BT \
|
|
||||||
CONFIG_BT_BREDR=y \
|
|
||||||
CONFIG_BT_DEBUGFS=n \
|
|
||||||
CONFIG_BT_LE=y \
|
|
||||||
CONFIG_BT_RFCOMM \
|
|
||||||
CONFIG_BT_BNEP \
|
|
||||||
CONFIG_BT_HCIBTUSB \
|
|
||||||
CONFIG_BT_HCIBTUSB_BCM=n \
|
|
||||||
CONFIG_BT_HCIBTUSB_MTK=y \
|
|
||||||
CONFIG_BT_HCIBTUSB_RTL=y \
|
|
||||||
CONFIG_BT_HCIUART \
|
|
||||||
CONFIG_BT_HCIUART_BCM=n \
|
|
||||||
CONFIG_BT_HCIUART_INTEL=n \
|
|
||||||
CONFIG_BT_HCIUART_H4 \
|
|
||||||
CONFIG_BT_HCIUART_NOKIA=n \
|
|
||||||
CONFIG_BT_HIDP
|
|
||||||
$(call AddDepends/rfkill)
|
|
||||||
FILES:= \
|
|
||||||
$(LINUX_DIR)/net/bluetooth/bluetooth.ko \
|
|
||||||
$(LINUX_DIR)/net/bluetooth/rfcomm/rfcomm.ko \
|
|
||||||
$(LINUX_DIR)/net/bluetooth/bnep/bnep.ko \
|
|
||||||
$(LINUX_DIR)/net/bluetooth/hidp/hidp.ko \
|
|
||||||
$(LINUX_DIR)/drivers/bluetooth/hci_uart.ko \
|
|
||||||
$(LINUX_DIR)/drivers/bluetooth/btusb.ko \
|
|
||||||
$(LINUX_DIR)/drivers/bluetooth/btintel.ko \
|
|
||||||
$(LINUX_DIR)/drivers/bluetooth/btrtl.ko \
|
|
||||||
$(LINUX_DIR)/drivers/bluetooth/btmtk.ko
|
|
||||||
AUTOLOAD:=$(call AutoProbe,bluetooth rfcomm bnep hidp hci_uart btusb)
|
|
||||||
endef
|
|
||||||
|
|
||||||
define KernelPackage/bluetooth/description
|
|
||||||
Kernel support for Bluetooth devices
|
|
||||||
endef
|
|
||||||
|
|
||||||
$(eval $(call KernelPackage,bluetooth))
|
|
||||||
|
|
||||||
define KernelPackage/ath3k
|
|
||||||
SUBMENU:=$(OTHER_MENU)
|
|
||||||
TITLE:=ATH3K Kernel Module support
|
|
||||||
DEPENDS:=+kmod-bluetooth +ar3k-firmware
|
|
||||||
KCONFIG:= \
|
|
||||||
CONFIG_BT_ATH3K \
|
|
||||||
CONFIG_BT_HCIUART_ATH3K=y
|
|
||||||
FILES:= \
|
|
||||||
$(LINUX_DIR)/drivers/bluetooth/ath3k.ko
|
|
||||||
AUTOLOAD:=$(call AutoProbe,ath3k)
|
|
||||||
endef
|
|
||||||
|
|
||||||
define KernelPackage/ath3k/description
|
|
||||||
Kernel support for ATH3K Module
|
|
||||||
endef
|
|
||||||
|
|
||||||
$(eval $(call KernelPackage,ath3k))
|
|
||||||
|
|
||||||
|
|
||||||
define KernelPackage/bluetooth-6lowpan
|
|
||||||
SUBMENU:=$(OTHER_MENU)
|
|
||||||
TITLE:=Bluetooth 6LoWPAN support
|
|
||||||
DEPENDS:=+kmod-6lowpan +kmod-bluetooth
|
|
||||||
KCONFIG:=CONFIG_BT_6LOWPAN
|
|
||||||
FILES:=$(LINUX_DIR)/net/bluetooth/bluetooth_6lowpan.ko
|
|
||||||
AUTOLOAD:=$(call AutoProbe,bluetooth_6lowpan)
|
|
||||||
endef
|
|
||||||
|
|
||||||
define KernelPackage/bluetooth-6lowpan/description
|
|
||||||
Kernel support for 6LoWPAN over Bluetooth Low Energy devices
|
|
||||||
endef
|
|
||||||
|
|
||||||
$(eval $(call KernelPackage,bluetooth-6lowpan))
|
|
||||||
|
|
||||||
|
|
||||||
define KernelPackage/btmrvl
|
|
||||||
SUBMENU:=$(OTHER_MENU)
|
|
||||||
TITLE:=Marvell Bluetooth Kernel Module support
|
|
||||||
DEPENDS:=+kmod-mmc +kmod-bluetooth +mwifiex-sdio-firmware
|
|
||||||
KCONFIG:= \
|
|
||||||
CONFIG_BT_MRVL \
|
|
||||||
CONFIG_BT_MRVL_SDIO
|
|
||||||
FILES:= \
|
|
||||||
$(LINUX_DIR)/drivers/bluetooth/btmrvl.ko \
|
|
||||||
$(LINUX_DIR)/drivers/bluetooth/btmrvl_sdio.ko
|
|
||||||
AUTOLOAD:=$(call AutoProbe,btmrvl btmrvl_sdio)
|
|
||||||
endef
|
|
||||||
|
|
||||||
define KernelPackage/btmrvl/description
|
|
||||||
Kernel support for Marvell SDIO Bluetooth Module
|
|
||||||
endef
|
|
||||||
|
|
||||||
$(eval $(call KernelPackage,btmrvl))
|
|
||||||
|
|
||||||
|
|
||||||
define KernelPackage/btsdio
|
|
||||||
SUBMENU:=$(OTHER_MENU)
|
|
||||||
TITLE:=Bluetooth HCI SDIO driver
|
|
||||||
DEPENDS:=+kmod-bluetooth +kmod-mmc
|
|
||||||
KCONFIG:= \
|
|
||||||
CONFIG_BT_HCIBTSDIO
|
|
||||||
FILES:= \
|
|
||||||
$(LINUX_DIR)/drivers/bluetooth/btsdio.ko
|
|
||||||
AUTOLOAD:=$(call AutoProbe,btsdio)
|
|
||||||
endef
|
|
||||||
|
|
||||||
define KernelPackage/btsdio/description
|
|
||||||
Kernel support for Bluetooth device with SDIO interface
|
|
||||||
endef
|
|
||||||
|
|
||||||
$(eval $(call KernelPackage,btsdio))
|
|
||||||
|
|
||||||
|
|
||||||
define KernelPackage/dma-buf
|
define KernelPackage/dma-buf
|
||||||
SUBMENU:=$(OTHER_MENU)
|
SUBMENU:=$(OTHER_MENU)
|
||||||
TITLE:=DMA shared buffer support
|
TITLE:=DMA shared buffer support
|
||||||
|
Loading…
x
Reference in New Issue
Block a user