mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-04 16:10:10 +00:00
CVE-2018-1078 is not for openflow but in the NVD database the
CVE is for a specific implementation that we don't have so we
can ignore it.
Signed-off-by: Davide Gardenal <davide.gardenal@huawei.com>
(cherry picked from commit c1e7b0b993)
Backported: Changed CVE_CHECK_IGNORE to CVE_CHECK_WHITELIST
Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
42 lines
1.2 KiB
PHP
42 lines
1.2 KiB
PHP
SUMMARY = "OpenFlow communications protocol"
|
|
DESCRIPTION = "\
|
|
Open standard that enables researchers to run experimental protocols in \
|
|
contained networks. OpenFlow is a communications interface between \
|
|
control and forwarding planes of a software-defined networking architecture.\
|
|
"
|
|
HOMEPAGE = "http://www.openflow.org"
|
|
|
|
SECTION = "net"
|
|
LICENSE = "GPLv2"
|
|
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=e870c934e2c3d6ccf085fd7cf0a1e2e2"
|
|
|
|
SRC_URI = "git://gitosis.stanford.edu/openflow.git;protocol=git;branch=master"
|
|
|
|
DEPENDS = "virtual/libc"
|
|
|
|
PACKAGECONFIG ??= "openssl"
|
|
PACKAGECONFIG[openssl] = "--enable-ssl,--disable-ssl, openssl openssl-native, libssl"
|
|
|
|
EXTRA_OECONF += " \
|
|
KARCH=${TARGET_ARCH} \
|
|
${@bb.utils.contains('PACKAGECONFIG', 'openssl', 'SSL_LIBS="-lssl -lcrypto"', '', d)} \
|
|
"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit autotools-brokensep pkgconfig
|
|
|
|
do_configure_prepend() {
|
|
./boot.sh
|
|
}
|
|
|
|
do_install_append() {
|
|
# Remove /var/run as it is created on startup
|
|
rm -rf ${D}${localstatedir}/run
|
|
}
|
|
|
|
# This CVE is not for this product but cve-check assumes it is
|
|
# because two CPE collides when checking the NVD database
|
|
CVE_CHECK_WHITELIST = "CVE-2018-1078"
|