<div dir="ltr">These two patches are now staged.<div><br></div><div>I'll be sending a consolidated list of patches once I do the push of this + some other uprevs.</div><div><br></div><div>Bruce</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Jul 12, 2017 at 5:02 PM, Mark Asselstine <span dir="ltr"><<a href="mailto:mark.asselstine@windriver.com" target="_blank">mark.asselstine@windriver.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Released at the end of June 2017 this is a bugfix release with no<br>
major functional changes. Surprisingly the patch for CVE-2017-9263 is<br>
still not applied upstream so we continue to carry this change.<br>
<br>
The remaining patches were audited and cleaned up as needed.<br>
<br>
Signed-off-by: Mark Asselstine <<a href="mailto:mark.asselstine@windriver.com">mark.asselstine@windriver.com</a><wbr>><br>
---<br>
 ...gure-Only-link-against-<wbr>libpcap-on-FreeBSD.patch | 70 ----------------------<br>
 ...<wbr>b29cb89e9e9fe3119b2e5dd5d4fb79<wbr>141635b7cc.patch} | 0<br>
 recipes-networking/<wbr>openvswitch/<a href="http://openvswitch_git.bb" rel="noreferrer" target="_blank">openvswitch_git.bb</a> | 4 +-<br>
 3 files changed, 2 insertions(+), 72 deletions(-)<br>
 delete mode 100644 recipes-networking/<wbr>openvswitch/files/configure-<wbr>Only-link-against-libpcap-on-<wbr>FreeBSD.patch<br>
 rename recipes-networking/<wbr>openvswitch/openvswitch-git/{<wbr>openvswitch-add-ptest-<wbr>c298ef781c2d35d939fe163cbc2f41<wbr>ea7b1cb8d1.patch => openvswitch-add-ptest-<wbr>b29cb89e9e9fe3119b2e5dd5d4fb79<wbr>141635b7cc.patch} (100%)<br>
<br>
diff --git a/recipes-networking/<wbr>openvswitch/files/configure-<wbr>Only-link-against-libpcap-on-<wbr>FreeBSD.patch b/recipes-networking/<wbr>openvswitch/files/configure-<wbr>Only-link-against-libpcap-on-<wbr>FreeBSD.patch<br>
deleted file mode 100644<br>
index 0a44b85..0000000<br>
--- a/recipes-networking/<wbr>openvswitch/files/configure-<wbr>Only-link-against-libpcap-on-<wbr>FreeBSD.patch<br>
+++ /dev/null<br>
@@ -1,70 +0,0 @@<br>
-From d30e714ccb9d13caf39d14d5b2fc95<wbr>23b678ed51 Mon Sep 17 00:00:00 2001<br>
-From: Ben Pfaff <<a href="mailto:blp@nicira.com">blp@nicira.com</a>><br>
-Date: Thu, 14 Mar 2013 15:20:55 -0700<br>
-Subject: [PATCH] configure: Only link against libpcap on FreeBSD.<br>
-<br>
-commit d30e714ccb9d13caf39d14d5b2fc95<wbr>23b678ed51 upstream<br>
-<a href="http://git.openvswitch.org/git/openvswitch" rel="noreferrer" target="_blank">http://git.openvswitch.org/<wbr>git/openvswitch</a><br>
-<br>
-On other platforms there is no benefit to linking against libpcap, because<br>
-it is not used.<br>
-<br>
-Signed-off-by: Ben Pfaff <<a href="mailto:blp@nicira.com">blp@nicira.com</a>><br>
-CC: Ed Maste <<a href="mailto:emaste@freebsd.org">emaste@freebsd.org</a>><br>
----<br>
- acinclude.m4 | 7 ++++++-<br>
- <a href="http://configure.ac" rel="noreferrer" target="_blank">configure.ac</a> | 3 +--<br>
- 2 files changed, 7 insertions(+), 3 deletions(-)<br>
-<br>
-diff --git a/acinclude.m4 b/acinclude.m4<br>
-index f0610c9..19a47dd 100644<br>
---- a/acinclude.m4<br>
-+++ b/acinclude.m4<br>
-@@ -1,6 +1,6 @@<br>
- # -*- autoconf -*-<br>
-<br>
--# Copyright (c) 2008, 2009, 2010, 2011, 2012 Nicira, Inc.<br>
-+# Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013 Nicira, Inc.<br>
- #<br>
- # Licensed under the Apache License, Version 2.0 (the "License");<br>
- # you may not use this file except in compliance with the License.<br>
-@@ -295,6 +295,8 @@ AC_DEFUN([OVS_CHECK_IF_PACKET]<wbr>,<br>
-Â Â fi])<br>
-<br>
- dnl Checks for net/if_dl.h.<br>
-+dnl<br>
-+dnl (We use this as a proxy for checking whether we're building on FreeBSD.)<br>
- AC_DEFUN([OVS_CHECK_IF_DL],<br>
-Â Â [AC_CHECK_HEADER([net/if_dl.h]<wbr>,<br>
-Â Â Â Â Â Â Â Â Â Â [HAVE_IF_DL=yes],<br>
-@@ -303,6 +305,9 @@ AC_DEFUN([OVS_CHECK_IF_DL],<br>
-Â Â if test "$HAVE_IF_DL" = yes; then<br>
-Â Â Â Â AC_DEFINE([HAVE_IF_DL], [1],<br>
-Â Â Â Â Â Â Â Â Â [Define to 1 if net/if_dl.h is available.])<br>
-+<br>
-+Â Â Â # On FreeBSD we use libpcap to access network devices.<br>
-+Â Â Â AC_SEARCH_LIBS([pcap_open_<wbr>live], [pcap])<br>
-Â Â fi])<br>
-<br>
- dnl Checks for buggy strtok_r.<br>
-diff --git a/<a href="http://configure.ac" rel="noreferrer" target="_blank">configure.ac</a> b/<a href="http://configure.ac" rel="noreferrer" target="_blank">configure.ac</a><br>
-index 1cacd29..bd49179 100644<br>
---- a/<a href="http://configure.ac" rel="noreferrer" target="_blank">configure.ac</a><br>
-+++ b/<a href="http://configure.ac" rel="noreferrer" target="_blank">configure.ac</a><br>
-@@ -1,4 +1,4 @@<br>
--# Copyright (c) 2008, 2009, 2010, 2011, 2012 Nicira, Inc.<br>
-+# Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013 Nicira, Inc.<br>
- #<br>
- # Licensed under the Apache License, Version 2.0 (the "License");<br>
- # you may not use this file except in compliance with the License.<br>
-@@ -44,7 +44,6 @@ AC_SYS_LARGEFILE<br>
- AC_SEARCH_LIBS([pow], [m])<br>
- AC_SEARCH_LIBS([clock_gettime]<wbr>, [rt])<br>
- AC_SEARCH_LIBS([timer_create], [rt])<br>
--AC_SEARCH_LIBS([pcap_open_<wbr>live], [pcap])<br>
-<br>
- OVS_CHECK_ESX<br>
- OVS_CHECK_COVERAGE<br>
---<br>
-1.8.3.2<br>
-<br>
diff --git a/recipes-networking/<wbr>openvswitch/openvswitch-git/<wbr>openvswitch-add-ptest-<wbr>c298ef781c2d35d939fe163cbc2f41<wbr>ea7b1cb8d1.patch b/recipes-networking/<wbr>openvswitch/openvswitch-git/<wbr>openvswitch-add-ptest-<wbr>b29cb89e9e9fe3119b2e5dd5d4fb79<wbr>141635b7cc.patch<br>
similarity index 100%<br>
rename from recipes-networking/<wbr>openvswitch/openvswitch-git/<wbr>openvswitch-add-ptest-<wbr>c298ef781c2d35d939fe163cbc2f41<wbr>ea7b1cb8d1.patch<br>
rename to recipes-networking/<wbr>openvswitch/openvswitch-git/<wbr>openvswitch-add-ptest-<wbr>b29cb89e9e9fe3119b2e5dd5d4fb79<wbr>141635b7cc.patch<br>
diff --git a/recipes-networking/<wbr>openvswitch/<a href="http://openvswitch_git.bb" rel="noreferrer" target="_blank">openvswitch_git.bb</a> b/recipes-networking/<wbr>openvswitch/<a href="http://openvswitch_git.bb" rel="noreferrer" target="_blank">openvswitch_git.bb</a><br>
index a2893e9..3972607 100644<br>
--- a/recipes-networking/<wbr>openvswitch/<a href="http://openvswitch_git.bb" rel="noreferrer" target="_blank">openvswitch_git.bb</a><br>
+++ b/recipes-networking/<wbr>openvswitch/<a href="http://openvswitch_git.bb" rel="noreferrer" target="_blank">openvswitch_git.bb</a><br>
@@ -12,11 +12,11 @@ RDEPENDS_${PN}-ptest += "\<br>
    "<br>
<br>
 S = "${WORKDIR}/git"<br>
-PV = "2.7.0+${SRCREV}"<br>
+PV = "2.7.1+${SRCREV}"<br>
<br>
 FILESEXTRAPATHS_append := "${THISDIR}/${PN}-git:"<br>
<br>
-SRCREV = "<wbr>c298ef781c2d35d939fe163cbc2f41<wbr>ea7b1cb8d1"<br>
+SRCREV = "<wbr>b29cb89e9e9fe3119b2e5dd5d4fb79<wbr>141635b7cc"<br>
 SRC_URI = "file://openvswitch-switch \<br>
      file://openvswitch-switch-<wbr>setup \<br>
      file://openvswitch-<wbr>testcontroller \<br>
<span class="HOEnZb"><font color="#888888">--<br>
2.7.4<br>
<br>
--<br>
______________________________<wbr>_________________<br>
meta-virtualization mailing list<br>
<a href="mailto:meta-virtualization@yoctoproject.org">meta-virtualization@<wbr>yoctoproject.org</a><br>
<a href="https://lists.yoctoproject.org/listinfo/meta-virtualization" rel="noreferrer" target="_blank">https://lists.yoctoproject.<wbr>org/listinfo/meta-<wbr>virtualization</a><br>
</font></span></blockquote></div><br><br clear="all"><div><br></div>-- <br><div class="gmail_signature" data-smartmail="gmail_signature">"Thou shalt not follow the NULL pointer, for chaos and madness await thee at its end"</div>
</div>