From 84e5d581226ab5daf72722214bc58c35c1bdfe7f Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Wed, 20 Jun 2012 12:27:20 +0100 Subject: 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 Signed-off-by: Richard Purdie --- .../connman/test-set-ipv4-method-api-fix.patch | 50 ---------------------- 1 file changed, 50 deletions(-) delete mode 100644 meta/recipes-connectivity/connman/connman/test-set-ipv4-method-api-fix.patch (limited to 'meta/recipes-connectivity/connman/connman/test-set-ipv4-method-api-fix.patch') 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 @@ -From 0b817dd3096f5c3ca8f0b868ee55ea550054137b Mon Sep 17 00:00:00 2001 -From: Daniel Wagner -Date: Mon, 19 Mar 2012 14:03:27 +0100 -Subject: [PATCH 3/3] set-ipv4-method: The arguments have to be wrapped into a - variant - -Fixes BMC#24986 - -Upstream-Status: Backport - -Signed-off-by: Otavio Salvador ---- - test/set-ipv4-method | 11 +++++++---- - 1 file changed, 7 insertions(+), 4 deletions(-) - -diff --git a/test/set-ipv4-method b/test/set-ipv4-method -index 820b24b..235113f 100755 ---- a/test/set-ipv4-method -+++ b/test/set-ipv4-method -@@ -3,6 +3,9 @@ - import sys - import dbus - -+def make_variant(string): -+ return dbus.String(string, variant_level=1) -+ - def print_usage(): - print "Usage: %s [off|dhcp|manual
[netmask] [gateway]]" % (sys.argv[0]) - -@@ -20,13 +23,13 @@ properties = service.GetProperties() - - print "Setting method %s for %s" % (sys.argv[2], sys.argv[1]) - --ipv4_configuration = { "Method": sys.argv[2] } -+ipv4_configuration = { "Method": make_variant(sys.argv[2]) } - if (len(sys.argv) > 3): -- ipv4_configuration["Address"] = sys.argv[3] -+ ipv4_configuration["Address"] = make_variant(sys.argv[3]) - if (len(sys.argv) > 4): -- ipv4_configuration["Netmask"] = sys.argv[4] -+ ipv4_configuration["Netmask"] = make_variant(sys.argv[4]) - if (len(sys.argv) > 5): -- ipv4_configuration["Gateway"] = sys.argv[5] -+ ipv4_configuration["Gateway"] = make_variant(sys.argv[5]) - - service.SetProperty("IPv4.Configuration", ipv4_configuration) - print "New IPv4.Configuration: ", ipv4_configuration --- -1.7.9.5 - -- cgit v1.2.3-54-g00ecf