diff options
author | Yi Zhao <yi.zhao@windriver.com> | 2018-04-16 15:40:12 +0800 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2018-04-16 07:25:10 -0400 |
commit | 500e5d2ad58f78d3aa5132081123955b6681bb8c (patch) | |
tree | 0af4fda14f47b594e996fe4214a080c880ca63e3 /recipes-networking/openvswitch/openvswitch-git/0007-Python3-compatibility-unicode-to-str.patch | |
parent | 97fea33badac9e674365744a559006b70d2e1222 (diff) | |
download | meta-virtualization-500e5d2ad58f78d3aa5132081123955b6681bb8c.tar.gz |
openvswitch: refresh patches to fix QA warning
Refresh patches with devtool command to fix do_patch warning.
Drop CVE-2017-9263.patch since it had been fixed upstream.
Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'recipes-networking/openvswitch/openvswitch-git/0007-Python3-compatibility-unicode-to-str.patch')
-rw-r--r-- | recipes-networking/openvswitch/openvswitch-git/0007-Python3-compatibility-unicode-to-str.patch | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/recipes-networking/openvswitch/openvswitch-git/0007-Python3-compatibility-unicode-to-str.patch b/recipes-networking/openvswitch/openvswitch-git/0007-Python3-compatibility-unicode-to-str.patch index faa32b73..753490f8 100644 --- a/recipes-networking/openvswitch/openvswitch-git/0007-Python3-compatibility-unicode-to-str.patch +++ b/recipes-networking/openvswitch/openvswitch-git/0007-Python3-compatibility-unicode-to-str.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From 2fe58f87b00d0ec24d6997930d0bcdb130c84396 Mon Sep 17 00:00:00 2001 | 1 | From c78b39ae9ba6337210d6a9e4ccc4753cb1c3b48f Mon Sep 17 00:00:00 2001 |
2 | From: Jason Wessel <jason.wessel@windriver.com> | 2 | From: Jason Wessel <jason.wessel@windriver.com> |
3 | Date: Thu, 29 Jun 2017 20:33:23 -0700 | 3 | Date: Thu, 29 Jun 2017 20:33:23 -0700 |
4 | Subject: [PATCH 7/8] Python3 compatibility: unicode to str | 4 | Subject: [PATCH] Python3 compatibility: unicode to str |
5 | 5 | ||
6 | Commit 7430959d4ad17db89b8387c3aef58c8b230cad10 from | 6 | Commit 7430959d4ad17db89b8387c3aef58c8b230cad10 from |
7 | https://github.com/openvswitch/ovs.git | 7 | https://github.com/openvswitch/ovs.git |
@@ -19,12 +19,13 @@ type because it doesn't exist. | |||
19 | 19 | ||
20 | Signed-off-by: Jason Wessel <jason.wessel@windriver.com> | 20 | Signed-off-by: Jason Wessel <jason.wessel@windriver.com> |
21 | Signed-off-by: Ben Pfaff <blp@ovn.org> | 21 | Signed-off-by: Ben Pfaff <blp@ovn.org> |
22 | |||
22 | --- | 23 | --- |
23 | ovsdb/ovsdb-doc | 12 +++++++++--- | 24 | ovsdb/ovsdb-doc | 12 +++++++++--- |
24 | 1 file changed, 9 insertions(+), 3 deletions(-) | 25 | 1 file changed, 9 insertions(+), 3 deletions(-) |
25 | 26 | ||
26 | diff --git a/ovsdb/ovsdb-doc b/ovsdb/ovsdb-doc | 27 | diff --git a/ovsdb/ovsdb-doc b/ovsdb/ovsdb-doc |
27 | index 918e88a..406c293 100755 | 28 | index 9448713..d55c6e6 100755 |
28 | --- a/ovsdb/ovsdb-doc | 29 | --- a/ovsdb/ovsdb-doc |
29 | +++ b/ovsdb/ovsdb-doc | 30 | +++ b/ovsdb/ovsdb-doc |
30 | @@ -65,9 +65,15 @@ def columnGroupToNroff(table, groupXml, documented_columns): | 31 | @@ -65,9 +65,15 @@ def columnGroupToNroff(table, groupXml, documented_columns): |
@@ -46,6 +47,3 @@ index 918e88a..406c293 100755 | |||
46 | type_ = ovs.db.types.BaseType.from_json(type_json) | 47 | type_ = ovs.db.types.BaseType.from_json(type_json) |
47 | else: | 48 | else: |
48 | type_ = column.type.value | 49 | type_ = column.type.value |
49 | -- | ||
50 | 2.5.0 | ||
51 | |||