- 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)
37 lines
1.3 KiB
BlitzBasic
37 lines
1.3 KiB
BlitzBasic
DESCRIPTION = "OVS DPDK"
|
|
LICENSE = "BSD"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=1ce5d23a6429dff345518758f13aaeab"
|
|
|
|
DEPENDS = "dpdk python3-six-native coreutils-native autoconf-native automake-native"
|
|
RDEPENDS:${PN} = "bash libcrypto libssl python3"
|
|
|
|
inherit python3native pkgconfig
|
|
|
|
SRC_URI = "git://github.com/nxp-qoriq/ovs-dpdk;protocol=https;nobranch=1"
|
|
SRCREV = "f2c0744d2f68c4cd2840d6e409d7b0520e4caf99"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
do_configure() {
|
|
export SYSROOT_DPDK=${PKG_CONFIG_SYSROOT_DIR}
|
|
${S}/boot.sh
|
|
${S}/configure --host aarch64-fsl-linux --with-dpdk=static --with-openssl=${SYSROOT_DPDK}/usr CFLAGS="-g -Wno-cast-align -Ofast"
|
|
}
|
|
|
|
do_install:append() {
|
|
install -d ${D}${bindir}/ovs-dpdk
|
|
cp -rf ${S}/ovsdb/ovsdb-tool ${D}${bindir}/ovs-dpdk
|
|
cp -rf ${S}/ovsdb/ovsdb-server ${D}${bindir}/ovs-dpdk
|
|
cp -rf ${S}/ovsdb/ovsdb-client ${D}${bindir}/ovs-dpdk
|
|
cp -rf ${S}/vswitchd/vswitch.ovsschema ${D}${bindir}/ovs-dpdk
|
|
cp -rf ${S}/vswitchd/ovs-vswitchd ${D}${bindir}/ovs-dpdk
|
|
cp -rf ${S}/utilities/ovs-vsctl ${D}${bindir}/ovs-dpdk
|
|
cp -rf ${S}/utilities/ovs-ofctl ${D}${bindir}/ovs-dpdk
|
|
chmod 777 -R ${D}${bindir}/ovs-dpdk/*
|
|
}
|
|
|
|
ALLOW_EMPTY:${PN} = "1"
|
|
INHIBIT_PACKAGE_STRIP = "1"
|
|
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
|
COMPATIBLE_MACHINE = "(qoriq-arm64)"
|