summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/connman/connman/test-set-ipv4-method-api-fix.patch
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2012-06-20 12:27:20 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-06-21 13:03:05 +0100
commit84e5d581226ab5daf72722214bc58c35c1bdfe7f (patch)
treef8bca912a0b93af2ab289df9283102baf4ed72b2 /meta/recipes-connectivity/connman/connman/test-set-ipv4-method-api-fix.patch
parent36f08d973fda175c4bfc661acbb1e1d872fe3dc1 (diff)
downloadpoky-84e5d581226ab5daf72722214bc58c35c1bdfe7f.tar.gz
connman: upgrade to 1.0
Drop patches that have been merged upstream, or are not relevant any more. License checksums changed because the (C) years were updated. (From OE-Core rev: d7e7d38a2beded17937e330adf4edb89807bfdd4) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/connman/connman/test-set-ipv4-method-api-fix.patch')
-rw-r--r--meta/recipes-connectivity/connman/connman/test-set-ipv4-method-api-fix.patch50
1 files changed, 0 insertions, 50 deletions
diff --git a/meta/recipes-connectivity/connman/connman/test-set-ipv4-method-api-fix.patch b/meta/recipes-connectivity/connman/connman/test-set-ipv4-method-api-fix.patch
deleted file mode 100644
index 78eb19a770..0000000000
--- a/meta/recipes-connectivity/connman/connman/test-set-ipv4-method-api-fix.patch
+++ /dev/null
@@ -1,50 +0,0 @@
1From 0b817dd3096f5c3ca8f0b868ee55ea550054137b Mon Sep 17 00:00:00 2001
2From: Daniel Wagner <daniel.wagner@bmw-carit.de>
3Date: Mon, 19 Mar 2012 14:03:27 +0100
4Subject: [PATCH 3/3] set-ipv4-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-ipv4-method | 11 +++++++----
14 1 file changed, 7 insertions(+), 4 deletions(-)
15
16diff --git a/test/set-ipv4-method b/test/set-ipv4-method
17index 820b24b..235113f 100755
18--- a/test/set-ipv4-method
19+++ b/test/set-ipv4-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|dhcp|manual <address> [netmask] [gateway]]" % (sys.argv[0])
29
30@@ -20,13 +23,13 @@ properties = service.GetProperties()
31
32 print "Setting method %s for %s" % (sys.argv[2], sys.argv[1])
33
34-ipv4_configuration = { "Method": sys.argv[2] }
35+ipv4_configuration = { "Method": make_variant(sys.argv[2]) }
36 if (len(sys.argv) > 3):
37- ipv4_configuration["Address"] = sys.argv[3]
38+ ipv4_configuration["Address"] = make_variant(sys.argv[3])
39 if (len(sys.argv) > 4):
40- ipv4_configuration["Netmask"] = sys.argv[4]
41+ ipv4_configuration["Netmask"] = make_variant(sys.argv[4])
42 if (len(sys.argv) > 5):
43- ipv4_configuration["Gateway"] = sys.argv[5]
44+ ipv4_configuration["Gateway"] = make_variant(sys.argv[5])
45
46 service.SetProperty("IPv4.Configuration", ipv4_configuration)
47 print "New IPv4.Configuration: ", ipv4_configuration
48--
491.7.9.5
50