657d9731cf
The rtl8723b_fw.bin file installed by this package is not actually used by this driver at all. It is used by the btrtl Bluetooth driver in the mainline kernel. The mainline btrtl driver looks for the file in /lib/firmware/rtl_bt rather than /lib/firmware/rtlwifi. This driver's Makefile has an install target that confirms the correct destination firmware directory. It was like that since the very first version that was added to Buildroot. Signed-off-by: Doug Brown <doug@schmorgal.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
21 lines
650 B
Makefile
21 lines
650 B
Makefile
################################################################################
|
|
#
|
|
# rtl8723bu
|
|
#
|
|
################################################################################
|
|
|
|
RTL8723BU_VERSION = 19b4bdc05483a1e79a4f955a80f8f72cdd5dedc3
|
|
RTL8723BU_SITE = $(call github,lwfinger,rtl8723bu,$(RTL8723BU_VERSION))
|
|
RTL8723BU_LICENSE = GPL-2.0, proprietary (*.bin firmware blobs)
|
|
|
|
RTL8723BU_MODULE_MAKE_OPTS = \
|
|
KVER=$(LINUX_VERSION_PROBED) \
|
|
KSRC=$(LINUX_DIR)
|
|
|
|
define RTL8723BU_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -D -m 644 $(@D)/rtl8723b_fw.bin $(TARGET_DIR)/lib/firmware/rtl_bt/rtl8723b_fw.bin
|
|
endef
|
|
|
|
$(eval $(kernel-module))
|
|
$(eval $(generic-package))
|