summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/connman/connman/test-set-ipv6-method-api-fix.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-connectivity/connman/connman/test-set-ipv6-method-api-fix.patch')
-rw-r--r--meta/recipes-connectivity/connman/connman/test-set-ipv6-method-api-fix.patch55
1 files changed, 55 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/connman/connman/test-set-ipv6-method-api-fix.patch b/meta/recipes-connectivity/connman/connman/test-set-ipv6-method-api-fix.patch
new file mode 100644
index 0000000000..773127bcec
--- /dev/null
+++ b/meta/recipes-connectivity/connman/connman/test-set-ipv6-method-api-fix.patch
@@ -0,0 +1,55 @@
1From 2885e71c9c0df7ea9866e91ab79d255eaa8de53d Mon Sep 17 00:00:00 2001
2From: Daniel Wagner <daniel.wagner@bmw-carit.de>
3Date: Mon, 19 Mar 2012 14:03:28 +0100
4Subject: [PATCH 2/3] set-ipv6-method: The arguments have to be wrapped into a
5 variant
6
7Fixes BMC#24986
8
9Upstream-Status: Backport
10
11Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
12---
13 test/set-ipv6-method | 13 ++++++++-----
14 1 file changed, 8 insertions(+), 5 deletions(-)
15
16diff --git a/test/set-ipv6-method b/test/set-ipv6-method
17index 7f60b88..4f2de09 100755
18--- a/test/set-ipv6-method
19+++ b/test/set-ipv6-method
20@@ -3,6 +3,9 @@
21 import sys
22 import dbus
23
24+def make_variant(string):
25+ return dbus.String(string, variant_level=1)
26+
27 def print_usage():
28 print "Usage: %s <service> off|manual|auto [<address> [prefixlen] [gateway]] [<privacy>]" % (sys.argv[0])
29
30@@ -19,17 +22,17 @@ properties = service.GetProperties()
31
32 print "Setting method %s for %s" % (sys.argv[2], sys.argv[1])
33
34-ipv6_configuration = { "Method": sys.argv[2] }
35+ipv6_configuration = { "Method": make_variant(sys.argv[2])}
36 if sys.argv[2] == "auto":
37 if (len(sys.argv) > 3):
38- ipv6_configuration["Privacy"] = sys.argv[3]
39+ ipv6_configuration["Privacy"] = make_variant(sys.argv[3])
40 else:
41 if (len(sys.argv) > 3):
42- ipv6_configuration["Address"] = sys.argv[3]
43+ ipv6_configuration["Address"] = make_variant(sys.argv[3])
44 if (len(sys.argv) > 4):
45- ipv6_configuration["PrefixLength"] = sys.argv[4]
46+ ipv6_configuration["PrefixLength"] = make_variant(sys.argv[4])
47 if (len(sys.argv) > 5):
48- ipv6_configuration["Gateway"] = sys.argv[5]
49+ ipv6_configuration["Gateway"] = make_variant(sys.argv[5])
50
51 service.SetProperty("IPv6.Configuration", ipv6_configuration)
52 print "New IPv6.Configuration: ", ipv6_configuration
53--
541.7.9.5
55