aboutsummaryrefslogtreecommitdiffstats
path: root/recipes-extended/ovs-dpdk/ovs-dpdk_2.15.bb
blob: 20d06dd61cbd50fa491ef06c696450bf2daf03b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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)"