Complete Yocto mirror with license table for TQMa6UL (2038-compliance)
- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
From 3a8fc3ccf00796254d6cef4b6d4cd70dc37012e1 Mon Sep 17 00:00:00 2001
|
||||
From: Denys Dmytriyenko <denys@ti.com>
|
||||
Date: Fri, 10 Mar 2017 13:28:29 -0500
|
||||
Subject: [PATCH] Add Makefile to install firmware files
|
||||
|
||||
Upstream-Status: Pending
|
||||
|
||||
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
|
||||
---
|
||||
Makefile | 9 +++++++++
|
||||
1 file changed, 9 insertions(+)
|
||||
create mode 100644 Makefile
|
||||
|
||||
diff --git a/Makefile b/Makefile
|
||||
new file mode 100644
|
||||
index 0000000..1cf38e3
|
||||
--- /dev/null
|
||||
+++ b/Makefile
|
||||
@@ -0,0 +1,9 @@
|
||||
+# Installs the the ti-connectivity wlan firmware files into the root file system
|
||||
+
|
||||
+install:
|
||||
+ @if [ ! -d $(DESTDIR) ] ; then \
|
||||
+ echo "Target filesystem directory doesn't exist."; \
|
||||
+ exit 1; \
|
||||
+ fi
|
||||
+ install -d $(DEST_DIR)/lib/firmware/ti-connectivity
|
||||
+ cp *.bin $(DEST_DIR)/lib/firmware/ti-connectivity/
|
||||
--
|
||||
2.7.4
|
||||
|
||||
@@ -0,0 +1,29 @@
|
||||
DESCRIPTION = "Firmware files for use with TI wl18xx"
|
||||
LICENSE = "TI-TSPA"
|
||||
LIC_FILES_CHKSUM = "file://LICENCE;md5=4977a0fe767ee17765ae63c435a32a9e"
|
||||
|
||||
SRC_URI = " \
|
||||
git://git.ti.com/git/wilink8-wlan/wl18xx_fw.git;protocol=https;branch=${BRANCH} \
|
||||
file://0001-Add-Makefile-to-install-firmware-files.patch \
|
||||
"
|
||||
|
||||
SRCREV = "5ec05007f2662f460f881c5868311fd3ab7e6e71"
|
||||
BRANCH = "master"
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
CLEANBROKEN = "1"
|
||||
|
||||
do_compile() {
|
||||
:
|
||||
}
|
||||
|
||||
do_install() {
|
||||
if ${@bb.utils.contains('DISTRO_FEATURES','usrmerge','true','false',d)}; then
|
||||
oe_runmake 'DEST_DIR=${D}/usr' install
|
||||
else
|
||||
oe_runmake 'DEST_DIR=${D}' install
|
||||
fi
|
||||
}
|
||||
|
||||
FILES:${PN} = "${nonarch_base_libdir}/firmware/ti-connectivity/*"
|
||||
Reference in New Issue
Block a user