Files
tqma6-yocto-mirror/sources/meta-freescale/recipes-extended/ofp/ofp_git.bb
Siggi (OpenClaw Agent) 16accb6b24 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)
2026-03-01 21:14:11 +00:00

38 lines
1.0 KiB
BlitzBasic

SUMMARY = "An open source user space fast path TCP/IP stack"
DESCRIPTION = "openfastpath is used to enable accelerated routing/forwarding for IPv4 and IPv6, \
tunneling and termination for a variety of protocols."
HOMEPAGE = "http://www.openfastpath.org"
SECTION = "console/network"
LICENSE = "BSD-3-Clause"
LIC_FILES_CHKSUM = "file://LICENSE;md5=fbe4957c430eed6cc20521d4eb429fae"
SRC_URI = "git://github.com/nxp-qoriq/ofp;protocol=https;nobranch=1"
SRCREV = "fe66f4659f7d356f7aa73a8fb32fcf67c6cf1108"
S = "${WORKDIR}/git"
inherit autotools-brokensep pkgconfig
PACKAGE_ARCH = "${MACHINE_ARCH}"
DEPENDS = "odp"
EXTRA_OECONF = " \
--prefix=/usr \
--libdir=${libdir} \
--host=${SIMPLE_TARGET_SYS} \
--with-odp=${STAGING_DIR_TARGET} \
"
do_configure () {
export SIMPLE_TARGET_SYS="$(echo ${TARGET_SYS} | sed s:${TARGET_VENDOR}::g)"
${S}/bootstrap
${S}/configure ${EXTRA_OECONF}
}
FILES:${PN} += "/usr/ofp/bin"
FILES:${PN}-dbg += "/usr/ofp/bin/.debug"
COMPATIBLE_MACHINE = "(ls2088a|ls1088a)"