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,29 @@
|
||||
From 2f2e1ca77b4459475e5d649bd22e6bc8c3873695 Mon Sep 17 00:00:00 2001
|
||||
From: Khem Raj <raj.khem@gmail.com>
|
||||
Date: Tue, 25 Sep 2018 01:23:02 -0700
|
||||
Subject: [PATCH] Do not ignore OE cflags and ldflags
|
||||
|
||||
Upstream-Status: Pending
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
---
|
||||
Makefile | 4 ++--
|
||||
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/Makefile b/Makefile
|
||||
index afb4e32..d2763ed 100644
|
||||
--- a/Makefile
|
||||
+++ b/Makefile
|
||||
@@ -3,8 +3,8 @@ prefix ?= "/usr/local"
|
||||
|
||||
all: mxsldr
|
||||
|
||||
-CFLAGS = `pkg-config --cflags libusb-1.0`
|
||||
-LDFLAGS = `pkg-config --libs libusb-1.0`
|
||||
+CFLAGS += `pkg-config --cflags libusb-1.0`
|
||||
+LDFLAGS += `pkg-config --libs libusb-1.0`
|
||||
|
||||
mxsldr: mxsldr.c
|
||||
$(CC) $(CFLAGS) $(LDFLAGS) $^ -o $@ -lusb-1.0
|
||||
--
|
||||
2.19.0
|
||||
|
||||
26
sources/meta-freescale/recipes-bsp/mxsldr/mxsldr_git.bb
Normal file
26
sources/meta-freescale/recipes-bsp/mxsldr/mxsldr_git.bb
Normal file
@@ -0,0 +1,26 @@
|
||||
# Copyright (C) 2012 O.S. Systems Software LTDA.
|
||||
# Released under the MIT license (see COPYING.MIT for the terms)
|
||||
|
||||
DESCRIPTION = "Freescale i.MX233/i.MX28 USB loader"
|
||||
DEPENDS = "libusb1"
|
||||
LICENSE = "GPL-2.0-or-later"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
|
||||
|
||||
SRCREV = "c40d80472525e1d57dae5317c028b745968c0399"
|
||||
SRC_URI = "git://git.denx.de/mxsldr.git;branch=master \
|
||||
file://0001-Do-not-ignore-OE-cflags-and-ldflags.patch \
|
||||
"
|
||||
|
||||
PV = "0.0.0+git${SRCPV}"
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
inherit pkgconfig
|
||||
|
||||
do_compile() {
|
||||
oe_runmake
|
||||
}
|
||||
do_install() {
|
||||
oe_runmake install DESTDIR="${D}"
|
||||
}
|
||||
BBCLASSEXTEND = "native nativesdk"
|
||||
Reference in New Issue
Block a user