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/0003-Python3-compatibility-execfile-to-exec.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/0003-Python3-compatibility-execfile-to-exec.patch')
-rw-r--r-- | recipes-networking/openvswitch/openvswitch-git/0003-Python3-compatibility-execfile-to-exec.patch | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/recipes-networking/openvswitch/openvswitch-git/0003-Python3-compatibility-execfile-to-exec.patch b/recipes-networking/openvswitch/openvswitch-git/0003-Python3-compatibility-execfile-to-exec.patch index a85980ed..98d77c8a 100644 --- a/recipes-networking/openvswitch/openvswitch-git/0003-Python3-compatibility-execfile-to-exec.patch +++ b/recipes-networking/openvswitch/openvswitch-git/0003-Python3-compatibility-execfile-to-exec.patch | |||
@@ -1,7 +1,7 @@ | |||
1 | From 9cbae86be03756df76560c15720756f9ac088144 Mon Sep 17 00:00:00 2001 | 1 | From 8557d51e8c7325a17219911e9a65eeb3946e869f 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 3/8] Python3 compatibility: execfile to exec | 4 | Subject: [PATCH] Python3 compatibility: execfile to exec |
5 | 5 | ||
6 | Commit a4d10a7ca937d73873f6f98619d88682e69f5dbe from | 6 | Commit a4d10a7ca937d73873f6f98619d88682e69f5dbe from |
7 | https://github.com/openvswitch/ovs.git | 7 | https://github.com/openvswitch/ovs.git |
@@ -11,12 +11,13 @@ exec(). | |||
11 | 11 | ||
12 | Signed-off-by: Jason Wessel <jason.wessel@windriver.com> | 12 | Signed-off-by: Jason Wessel <jason.wessel@windriver.com> |
13 | Signed-off-by: Ben Pfaff <blp@ovn.org> | 13 | Signed-off-by: Ben Pfaff <blp@ovn.org> |
14 | |||
14 | --- | 15 | --- |
15 | ovsdb/ovsdb-idlc.in | 2 +- | 16 | ovsdb/ovsdb-idlc.in | 2 +- |
16 | 1 file changed, 1 insertion(+), 1 deletion(-) | 17 | 1 file changed, 1 insertion(+), 1 deletion(-) |
17 | 18 | ||
18 | diff --git a/ovsdb/ovsdb-idlc.in b/ovsdb/ovsdb-idlc.in | 19 | diff --git a/ovsdb/ovsdb-idlc.in b/ovsdb/ovsdb-idlc.in |
19 | index 8b85f0d..3fa1a0f 100755 | 20 | index e7e1c6b..e1551f9 100755 |
20 | --- a/ovsdb/ovsdb-idlc.in | 21 | --- a/ovsdb/ovsdb-idlc.in |
21 | +++ b/ovsdb/ovsdb-idlc.in | 22 | +++ b/ovsdb/ovsdb-idlc.in |
22 | @@ -17,7 +17,7 @@ def parseSchema(filename): | 23 | @@ -17,7 +17,7 @@ def parseSchema(filename): |
@@ -28,6 +29,3 @@ index 8b85f0d..3fa1a0f 100755 | |||
28 | ovs.json.to_stream(schemaJson, sys.stdout) | 29 | ovs.json.to_stream(schemaJson, sys.stdout) |
29 | sys.stdout.write('\n') | 30 | sys.stdout.write('\n') |
30 | 31 | ||
31 | -- | ||
32 | 2.5.0 | ||
33 | |||