diff options
author | Yong Zhang <yong.zhang@windriver.com> | 2014-07-23 02:59:25 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-07-23 21:59:24 +0100 |
commit | be7eebef94ccd6a38faf15d073436456566e4bbc (patch) | |
tree | a0d0a643a3a6d978a414f0c0af56daf0099975a3 /meta/recipes-extended/net-tools | |
parent | 94b2718d6d31c096a9689d271cb634f2dd265588 (diff) | |
download | poky-be7eebef94ccd6a38faf15d073436456566e4bbc.tar.gz |
net-tools: ifconfig interface:0 del <IP> will remove the aliased IP on IA64
(From OE-Core rev: d96b5072d53f134c5038601e30368db6ccfefe78)
Signed-off-by: Yong Zhang <yong.zhang@windriver.com>
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/net-tools')
-rw-r--r-- | meta/recipes-extended/net-tools/net-tools/ifconfig-interface-0-del-IP-will-remove-the-aliased-.patch | 32 | ||||
-rw-r--r-- | meta/recipes-extended/net-tools/net-tools_1.60-25.bb | 4 |
2 files changed, 35 insertions, 1 deletions
diff --git a/meta/recipes-extended/net-tools/net-tools/ifconfig-interface-0-del-IP-will-remove-the-aliased-.patch b/meta/recipes-extended/net-tools/net-tools/ifconfig-interface-0-del-IP-will-remove-the-aliased-.patch new file mode 100644 index 0000000000..06f81420e9 --- /dev/null +++ b/meta/recipes-extended/net-tools/net-tools/ifconfig-interface-0-del-IP-will-remove-the-aliased-.patch | |||
@@ -0,0 +1,32 @@ | |||
1 | From 81814dc2b14843009193efd307d814c26baa61f0 Mon Sep 17 00:00:00 2001 | ||
2 | From: Jiri Popelka <jpopelka@redhat.com> | ||
3 | Date: Wed, 7 Dec 2011 19:14:09 +0100 | ||
4 | Subject: [PATCH] ifconfig interface:0 del <IP> will remove the aliased IP on IA64 | ||
5 | |||
6 | Upstream-Status: Backport | ||
7 | |||
8 | commit 81814dc2b14843009193efd307d814c26baa61f0 from | ||
9 | git://git.code.sf.net/p/net-tools/code | ||
10 | |||
11 | --- | ||
12 | ifconfig.c | 4 +++- | ||
13 | 1 file changed, 3 insertions(+), 1 deletion(-) | ||
14 | |||
15 | diff --git a/ifconfig.c b/ifconfig.c | ||
16 | index bc405c6..dae8922 100644 | ||
17 | --- a/ifconfig.c | ||
18 | +++ b/ifconfig.c | ||
19 | @@ -890,7 +890,9 @@ int main(int argc, char **argv) | ||
20 | continue; | ||
21 | } | ||
22 | |||
23 | - memcpy(&ip, &sin.sin_addr.s_addr, sizeof(unsigned long)); | ||
24 | + /* Clear "ip" in case sizeof(unsigned long) > sizeof(sin.sin_addr.s_addr) */ | ||
25 | + ip = 0; | ||
26 | + memcpy(&ip, &sin.sin_addr.s_addr, sizeof(sin.sin_addr.s_addr)); | ||
27 | |||
28 | if (get_nmbc_parent(ifr.ifr_name, &nm, &bc) < 0) { | ||
29 | fprintf(stderr, _("Interface %s not initialized\n"), | ||
30 | -- | ||
31 | 1.7.9.5 | ||
32 | |||
diff --git a/meta/recipes-extended/net-tools/net-tools_1.60-25.bb b/meta/recipes-extended/net-tools/net-tools_1.60-25.bb index 5a7b3070c8..02826a09c9 100644 --- a/meta/recipes-extended/net-tools/net-tools_1.60-25.bb +++ b/meta/recipes-extended/net-tools/net-tools_1.60-25.bb | |||
@@ -9,7 +9,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=8ca43cbc842c2336e835926c2166c28b \ | |||
9 | SRC_URI = "${DEBIAN_MIRROR}/main/n/net-tools/net-tools_1.60.orig.tar.gz;name=tarball \ | 9 | SRC_URI = "${DEBIAN_MIRROR}/main/n/net-tools/net-tools_1.60.orig.tar.gz;name=tarball \ |
10 | ${DEBIAN_MIRROR}/main/n/net-tools/${BPN}_${PV}.diff.gz;apply=no;name=patch \ | 10 | ${DEBIAN_MIRROR}/main/n/net-tools/${BPN}_${PV}.diff.gz;apply=no;name=patch \ |
11 | file://net-tools-config.h \ | 11 | file://net-tools-config.h \ |
12 | file://net-tools-config.make" | 12 | file://net-tools-config.make \ |
13 | file://ifconfig-interface-0-del-IP-will-remove-the-aliased-.patch \ | ||
14 | " | ||
13 | 15 | ||
14 | S = "${WORKDIR}/net-tools-1.60" | 16 | S = "${WORKDIR}/net-tools-1.60" |
15 | 17 | ||