88f9b66444
add below firmware: BR2_PACKAGE_STARFIVE_FIRMWARE_AP6256_BLUETOOTH BR2_PACKAGE_STARFIVE_FIRMWARE_AP6256_SDIO_WIFI add ap6256 bluetooth and sdio wifi firmware files to /lib/firmware/. for addtional firmware file, we can also add it like this way. Signed-off-by: Andy Hu <andy.hu@starfivetech.com>
32 lines
739 B
Plaintext
32 lines
739 B
Plaintext
# starfive firmware packages
|
|
|
|
config BR2_PACKAGE_STARFIVE_FIRMWARE
|
|
bool "starfive-firmware"
|
|
help
|
|
This package provides additional various binary firmware files
|
|
based on BR2_PACKAGE_LINUX_FIRMWARE (closed binary blobs) for
|
|
such devices like bluetooth, wifi cards etc.
|
|
|
|
if BR2_PACKAGE_STARFIVE_FIRMWARE
|
|
|
|
menu "Starfive Bluetooth firmware"
|
|
|
|
config BR2_PACKAGE_STARFIVE_FIRMWARE_AP6256_BLUETOOTH
|
|
bool "AP6256 Bluetooth"
|
|
help
|
|
Firmware files for AP6256 Wireless bluetooth support.
|
|
|
|
endmenu # Bluetooth
|
|
|
|
|
|
menu "Starfive WiFi firmware"
|
|
|
|
config BR2_PACKAGE_STARFIVE_FIRMWARE_AP6256_SDIO_WIFI
|
|
bool "AP6256 SDIO Wifi"
|
|
help
|
|
Firmware files for the AP6256 Wifi module on SDIO.
|
|
|
|
endmenu # WiFi
|
|
|
|
endif # BR2_PACKAGE_STARFIVE_FIRMWARE
|