diff options
author | Khem Raj <raj.khem@gmail.com> | 2012-12-18 01:51:21 -0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2013-01-07 14:43:14 -0800 |
commit | eca536954a392daf481c13faf3615ae489b0b552 (patch) | |
tree | 534e7333ac897f22462b5cdc36554f54d96db10d | |
parent | 9aa536460124f93672a1b54279999be429e5e710 (diff) | |
download | meta-openembedded-eca536954a392daf481c13faf3615ae489b0b552.tar.gz |
ebtables: Fix segfault by linking with no-as-needed
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-networking/recipes-filter/ebtables/ebtables-2.0.10-4/no-as-needed.patch | 25 | ||||
-rw-r--r-- | meta-networking/recipes-filter/ebtables/ebtables_2.0.10-4.bb | 3 |
2 files changed, 27 insertions, 1 deletions
diff --git a/meta-networking/recipes-filter/ebtables/ebtables-2.0.10-4/no-as-needed.patch b/meta-networking/recipes-filter/ebtables/ebtables-2.0.10-4/no-as-needed.patch new file mode 100644 index 000000000..336119d6b --- /dev/null +++ b/meta-networking/recipes-filter/ebtables/ebtables-2.0.10-4/no-as-needed.patch | |||
@@ -0,0 +1,25 @@ | |||
1 | link ebtables with --no-as-needed and adjust the link order to fix runtime crash | ||
2 | |||
3 | Program terminated with signal 11, Segmentation fault. | ||
4 | #0 0x00007ffaa837fb53 in ebt_initialize_entry () from /lib64/ebtables/libebtc.so | ||
5 | (gdb) bt | ||
6 | #0 0x00007ffaa837fb53 in ebt_initialize_entry () from /lib64/ebtables/libebtc.so | ||
7 | #1 0x00007ffaa83824dc in do_command () from /lib64/ebtables/libebtc.so | ||
8 | #2 0x000000000040065c in ?? () | ||
9 | #3 0x00007ffaa7fed755 in __libc_start_main () from /lib64/libc.so.6 | ||
10 | #4 0x0000000000400691 in ?? () | ||
11 | |||
12 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
13 | Index: ebtables-v2.0.10-4/Makefile | ||
14 | =================================================================== | ||
15 | --- ebtables-v2.0.10-4.orig/Makefile 2011-12-15 12:02:47.000000000 -0800 | ||
16 | +++ ebtables-v2.0.10-4/Makefile 2012-12-17 22:09:45.065973753 -0800 | ||
17 | @@ -90,7 +90,7 @@ | ||
18 | $(CC) -shared $(LDFLAGS) -Wl,-soname,libebtc.so -o libebtc.so -lc $(OBJECTS2) | ||
19 | |||
20 | ebtables: $(OBJECTS) ebtables-standalone.o libebtc.so | ||
21 | - $(CC) $(CFLAGS) $(CFLAGS_SH_LIB) $(LDFLAGS) -o $@ ebtables-standalone.o -I$(KERNEL_INCLUDES) -L. -Lextensions -lebtc $(EXT_LIBSI) \ | ||
22 | + $(CC) $(CFLAGS) $(CFLAGS_SH_LIB) $(LDFLAGS) -o $@ ebtables-standalone.o -I$(KERNEL_INCLUDES) -L. -Lextensions -Wl,--no-as-needed $(EXT_LIBSI) -lebtc \ | ||
23 | -Wl,-rpath,$(LIBDIR) | ||
24 | |||
25 | ebtablesu: ebtablesu.c | ||
diff --git a/meta-networking/recipes-filter/ebtables/ebtables_2.0.10-4.bb b/meta-networking/recipes-filter/ebtables/ebtables_2.0.10-4.bb index e3476daf0..2596d2f68 100644 --- a/meta-networking/recipes-filter/ebtables/ebtables_2.0.10-4.bb +++ b/meta-networking/recipes-filter/ebtables/ebtables_2.0.10-4.bb | |||
@@ -2,12 +2,13 @@ SUMMARY = "Utility for basic Ethernet frame filtering on a Linux bridge, MAC NAT | |||
2 | LICENSE = "GPLv2" | 2 | LICENSE = "GPLv2" |
3 | LIC_FILES_CHKSUM = "file://COPYING;md5=53b4a999993871a28ab1488fdbd2e73e" | 3 | LIC_FILES_CHKSUM = "file://COPYING;md5=53b4a999993871a28ab1488fdbd2e73e" |
4 | SECTION = "console/network" | 4 | SECTION = "console/network" |
5 | PR = "r0" | 5 | PR = "r1" |
6 | 6 | ||
7 | SRC_URI = "${SOURCEFORGE_MIRROR}/ebtables/ebtables-v${PV}.tar.gz \ | 7 | SRC_URI = "${SOURCEFORGE_MIRROR}/ebtables/ebtables-v${PV}.tar.gz \ |
8 | file://installnonroot.patch \ | 8 | file://installnonroot.patch \ |
9 | file://01debian_defaultconfig.patch \ | 9 | file://01debian_defaultconfig.patch \ |
10 | file://ebtables.init \ | 10 | file://ebtables.init \ |
11 | file://no-as-needed.patch \ | ||
11 | " | 12 | " |
12 | 13 | ||
13 | SRC_URI[md5sum] = "506742a3d44b9925955425a659c1a8d0" | 14 | SRC_URI[md5sum] = "506742a3d44b9925955425a659c1a8d0" |