mirror of
git://git.yoctoproject.org/meta-virtualization.git
synced 2025-07-05 05:15:25 +02:00

bitbake has been enhanced such that SRCPV is no longer needed in PV to handle updating git hashes and task signatures. We can simplify our PV by dropping SRCPV Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
55 lines
1.8 KiB
BlitzBasic
55 lines
1.8 KiB
BlitzBasic
require openvswitch.inc
|
|
|
|
DEPENDS += "virtual/kernel"
|
|
|
|
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
|
|
|
RDEPENDS:${PN}-ptest += "\
|
|
python3-logging python3-syslog python3-io python3-core \
|
|
python3-fcntl python3-shell python3-xml python3-math \
|
|
python3-datetime python3-netclient python3 sed \
|
|
ldd perl-module-socket perl-module-carp perl-module-exporter \
|
|
perl-module-xsloader python3-netserver python3-threading \
|
|
python3-resource findutils which diffutils \
|
|
"
|
|
|
|
S = "${WORKDIR}/git"
|
|
PV = "3.1.1+"
|
|
CVE_VERSION = "3.1.1"
|
|
|
|
FILESEXTRAPATHS:append := "${THISDIR}/${PN}-git:"
|
|
|
|
SRCREV = "8b1795c69f5cba2e668bb276cef73f890cc5b2bd"
|
|
SRC_URI += "git://github.com/openvswitch/ovs.git;protocol=https;branch=branch-3.1 \
|
|
file://openvswitch-add-ptest-71d553b995d0bd527d3ab1e9fbaf5a2ae34de2f3.patch \
|
|
file://run-ptest \
|
|
file://disable_m4_check.patch \
|
|
file://systemd-update-tool-paths.patch \
|
|
file://systemd-create-runtime-dirs.patch \
|
|
file://Makefile.am-set-the-python3-interpreter-with-usr-bin.patch \
|
|
"
|
|
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=1ce5d23a6429dff345518758f13aaeab"
|
|
|
|
PACKAGECONFIG ?= "libcap-ng"
|
|
PACKAGECONFIG[dpdk] = "--with-dpdk=shared,,dpdk,dpdk"
|
|
PACKAGECONFIG[libcap-ng] = "--enable-libcapng,--disable-libcapng,libcap-ng,"
|
|
PACKAGECONFIG[ssl] = ",--disable-ssl,openssl,"
|
|
|
|
# Don't compile kernel modules by default since it heavily depends on
|
|
# kernel version. Use the in-kernel module for now.
|
|
# distro layers can enable with EXTRA_OECONF_pn_openvswitch += ""
|
|
# EXTRA_OECONF += "--with-linux=${STAGING_KERNEL_BUILDDIR} --with-linux-source=${STAGING_KERNEL_DIR} KARCH=${TARGET_ARCH}"
|
|
|
|
# silence a warning
|
|
FILES:${PN} += "/lib/modules"
|
|
|
|
inherit ptest
|
|
|
|
EXTRA_OEMAKE += "TEST_DEST=${D}${PTEST_PATH} TEST_ROOT=${PTEST_PATH}"
|
|
|
|
do_install_ptest() {
|
|
oe_runmake test-install
|
|
}
|
|
|