initial buildroot for linux 5.15

This commit is contained in:
Huan.Feng
2021-12-06 14:12:13 +08:00
parent d7767d594e
commit 7b6fc358fa
12736 changed files with 508822 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
config BR2_PACKAGE_UX500_FIRMWARE
bool "ux500-firmware"
help
This package provides various binary firmware files (closed
binary blobs) for the Azurewave AW-NH580 combo module (wifi,
bt, gps).
https://launchpad.net/~igloocommunity-maintainers/+archive/snowball/+files/
@@ -0,0 +1,3 @@
# locally computed hash
sha256 81633274a9157c076e5e09b5addd81fbcef504b829fc801041cea50eea774bcd ux500-firmware_1.1.3-6linaro1.tar.gz
sha256 b5bbc3fb3ff2f8e165b3bf60b25702d8970b3d7fe88b1c883f20615d550a7cb2 license.txt
+23
View File
@@ -0,0 +1,23 @@
################################################################################
#
# ux500-firmware
#
################################################################################
UX500_FIRMWARE_VERSION = 1.1.3-6
UX500_FIRMWARE_SOURCE = ux500-firmware_$(UX500_FIRMWARE_VERSION)linaro1.tar.gz
UX500_FIRMWARE_SITE = https://launchpad.net/~igloocommunity-maintainers/+archive/snowball/+files
UX500_FIRMWARE_LICENSE = Snowball click-wrap license
UX500_FIRMWARE_LICENSE_FILES = license.txt
UX500_FIRMWARE_REDISTRIBUTE = NO
# The CG2900 linux driver has to load firmware named CG29XX_* but the firmware
# filenames contained in this package are CG2900_* hence the code below
define UX500_FIRMWARE_INSTALL_TARGET_CMDS
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR=$(TARGET_DIR) install
for f in $(TARGET_DIR)/lib/firmware/CG2900* ; do \
mv $$f $${f/CG2900/CG29XX}; \
done
endef
$(eval $(generic-package))