buildroot/package/armbian-firmware/Config.in
Sergey Matyukevich 4c247a98a5 armbian-firmware: new package
This package enables access to firmware blobs from Armbian firmware
repository: https://github.com/armbian/firmware

That repository contains multiple firmware blobs grouped by vendor.
For the sake of convenience each group can be independently selected
using Kconfig options. This commit enables the following options:
- firmware blobs for XR819 SDIO WiFi chip
- firmware blobs for AP6212 WiFi/BT combo

Armbian firmware repository does not include any specific licenses.
Most part of those firmware blobs belongs to various Android/Linux
SDK packages provided by board vendors. As a result, this package
makes use of the following conservative approach for all the
selected firmware binaries:
  FIRMWARE_LICENSE = PROPRIETARY
  FIRMWARE_REDISTRIBUTE = NO

Signed-off-by: Sergey Matyukevich <geomatsi@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2017-11-07 10:03:06 +01:00

22 lines
479 B
Plaintext

config BR2_PACKAGE_ARMBIAN_FIRMWARE
bool "armbian-firmware"
help
This package enables access to various firmware
blobs from the Armbian firmware repository.
https://github.com/armbian/firmware
if BR2_PACKAGE_ARMBIAN_FIRMWARE
config BR2_PACKAGE_ARMBIAN_FIRMWARE_XR819
bool "XR819 WiFi"
help
Firmware files for XR819 WiFi SDIO chip.
config BR2_PACKAGE_ARMBIAN_FIRMWARE_AP6212
bool "AP6212 WiFi/BT"
help
Firmware files for AP6212 WiFi/BT combo chip.
endif