1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-30 00:20:08 +00:00

connmand: Drop patch merged upstream

Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
Richard Purdie
2009-05-26 22:57:37 +01:00
parent ba7f2cc548
commit 14f39f31a9
2 changed files with 0 additions and 41 deletions
-1
View File
@@ -18,7 +18,6 @@ EXTRA_OECONF += " \
SRC_URI = "git://git.kernel.org/pub/scm/network/connman/connman.git;protocol=git \
file://connman-install-tests.patch;patch=1 \
file://udevfix.patch;patch=1 \
file://dhclientreorder.patch;patch=1 \
file://dbusperms.patch;patch=1 \
file://connman "
@@ -1,40 +0,0 @@
The -n option must appear after the iface options, else dhclient
just prints its help text. Crazy.
RP - 25/5/09
Index: git/plugins/dhclient.c
===================================================================
--- git.orig/plugins/dhclient.c 2009-05-26 00:01:02.000000000 +0100
+++ git/plugins/dhclient.c 2009-05-26 00:01:38.000000000 +0100
@@ -165,18 +165,18 @@
argv[0] = DHCLIENT;
argv[1] = "-d";
argv[2] = "-q";
- argv[3] = "-n";
- argv[4] = "-e";
- argv[5] = address;
- argv[6] = "-pf";
- argv[7] = pidfile;
- argv[8] = "-lf";
- argv[9] = leases;
- argv[10] = "-cf";
- argv[11] = config;
- argv[12] = "-sf";
- argv[13] = script;
- argv[14] = task->ifname;
+ argv[3] = "-e";
+ argv[4] = address;
+ argv[5] = "-pf";
+ argv[6] = pidfile;
+ argv[7] = "-lf";
+ argv[8] = leases;
+ argv[9] = "-cf";
+ argv[10] = config;
+ argv[11] = "-sf";
+ argv[12] = script;
+ argv[13] = task->ifname;
+ argv[14] = "-n";
argv[15] = NULL;
envp[0] = NULL;