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:
Siggi (OpenClaw Agent)
2026-03-01 20:58:18 +00:00
commit 16accb6b24
15086 changed files with 1292356 additions and 0 deletions

View File

@@ -0,0 +1,49 @@
Adapt tiobench to OE
Author: Ludovic Desroches <ludovic.desroches@atmel.com>
Upstream-Status: Inappropriate [not author]
Index: Makefile
===================================================================
--- a/Makefile 2011-05-26 07:48:46.341400974 +0200
+++ b/Makefile 2011-05-30 06:32:38.091401358 +0200
@@ -1,8 +1,9 @@
# Makefile for tiotest
-CC=gcc
+CC?=gcc
#CFLAGS=-O3 -fomit-frame-pointer -Wall
CFLAGS=-O2 -Wall
+LDFLAGS?=
#DEFINES=-DUSE_MMAP
#-DUSE_MADVISE
@@ -14,16 +15,16 @@
#DEFINES=
-LINK=gcc
+LINK?=$(CC)
EXE=tiotest
PROJECT=tiobench
# do it once instead of each time referenced
VERSION=$(shell egrep "tiotest v[0-9]+.[0-9]+" tiotest.c | cut -d " " -f 7 | sed "s/v//g")
DISTNAME=$(PROJECT)-$(VERSION)
INSTALL=install
-PREFIX=/usr/local
+PREFIX?=/usr/local
BINDIR=$(PREFIX)/bin
-DOCDIR=/usr/local/doc/$(DISTNAME)
+DOCDIR=$(PREFIX)/share/doc/$(DISTNAME)
all: $(EXE)
@@ -34,7 +35,7 @@
$(CC) -c $(CFLAGS) $(DEFINES) tiotest.c -o tiotest.o
$(EXE): tiotest.o crc32.o
- $(LINK) -o $(EXE) tiotest.o crc32.o -lpthread
+ $(LINK) -o $(EXE) tiotest.o crc32.o -lpthread $(LDFLAGS)
@echo
@echo "./tiobench.pl --help for usage options"
@echo