- 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)
31 lines
814 B
BlitzBasic
31 lines
814 B
BlitzBasic
DESCRIPTION = "SKMM application for PCIe endpoint"
|
|
SECTION = "skmm-ep"
|
|
LICENSE = "BSD & GPL-2.0-only"
|
|
LIC_FILES_CHKSUM = "file://Makefile;endline=30;md5=39e58bedc879163c9338596e52df5b1f"
|
|
|
|
DEPENDS = "libedit openssl virtual/kernel"
|
|
|
|
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
|
|
|
SRC_URI = "git://github.com/nxp-qoriq-yocto-sdk/skmm-ep;protocol=https;nobranch=1 \
|
|
file://add-two-missing-header-files.patch \
|
|
"
|
|
SRCREV = "de6816c7d66129683bc62229b482ac3cf585d896"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
EXTRA_OEMAKE = 'ARCH=${TARGET_ARCH} MACHINE=${MACHINE} EXTRA_LDFLAGS="${LDFLAGS}"'
|
|
|
|
export LIBEDIT_CFLAGS = "`pkg-config --cflags libedit`"
|
|
export LIBEDIT_LDFLAGS = "`pkg-config --libs --static libedit`"
|
|
|
|
do_compile () {
|
|
oe_runmake
|
|
}
|
|
|
|
do_install () {
|
|
oe_runmake install DESTDIR=${D}
|
|
}
|
|
|
|
COMPATIBLE_MACHINE = "(p4080ds|t4240qds|c293pcie)"
|