diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-connectivity/connman/connman/no-version-scripts.patch | 27 | ||||
-rw-r--r-- | meta/recipes-connectivity/connman/connman_1.33.bb | 2 |
2 files changed, 28 insertions, 1 deletions
diff --git a/meta/recipes-connectivity/connman/connman/no-version-scripts.patch b/meta/recipes-connectivity/connman/connman/no-version-scripts.patch new file mode 100644 index 0000000000..e96e38bcf9 --- /dev/null +++ b/meta/recipes-connectivity/connman/connman/no-version-scripts.patch | |||
@@ -0,0 +1,27 @@ | |||
1 | With binutils 2.27 on at least MIPS, connmand will crash on startup. This | ||
2 | appears to be due to the symbol visibilty scripts hiding symbols that stdio | ||
3 | looks up at runtime, resulting in it segfaulting. | ||
4 | |||
5 | This certainly appears to be a bug in binutils 2.27 although the problem has | ||
6 | been known about for some time: | ||
7 | |||
8 | https://sourceware.org/bugzilla/show_bug.cgi?id=17908 | ||
9 | |||
10 | As the version scripts are only used to hide symbols from plugins we can safely | ||
11 | remove the scripts to work around the problem until binutils is fixed. | ||
12 | |||
13 | Upstream-Status: Inappropriate | ||
14 | Signed-off-by: Ross Burton <ross.burton@intel.com> | ||
15 | |||
16 | diff --git a/Makefile.am b/Makefile.am | ||
17 | index d70725c..76ae432 100644 | ||
18 | --- a/Makefile.am | ||
19 | +++ b/Makefile.am | ||
20 | @@ -132,2 +132 @@ src_connmand_LDADD = gdbus/libgdbus-internal.la $(builtin_libadd) \ | ||
21 | -src_connmand_LDFLAGS = -Wl,--export-dynamic \ | ||
22 | - -Wl,--version-script=$(srcdir)/src/connman.ver | ||
23 | +src_connmand_LDFLAGS = -Wl,--export-dynamic | ||
24 | @@ -166,2 +165 @@ vpn_connman_vpnd_LDADD = gdbus/libgdbus-internal.la $(builtin_vpn_libadd) \ | ||
25 | -vpn_connman_vpnd_LDFLAGS = -Wl,--export-dynamic \ | ||
26 | - -Wl,--version-script=$(srcdir)/vpn/vpn.ver | ||
27 | +vpn_connman_vpnd_LDFLAGS = -Wl,--export-dynamic | ||
diff --git a/meta/recipes-connectivity/connman/connman_1.33.bb b/meta/recipes-connectivity/connman/connman_1.33.bb index b31b1464bb..5485c15bd3 100644 --- a/meta/recipes-connectivity/connman/connman_1.33.bb +++ b/meta/recipes-connectivity/connman/connman_1.33.bb | |||
@@ -3,6 +3,7 @@ require connman.inc | |||
3 | SRC_URI = "${KERNELORG_MIRROR}/linux/network/${BPN}/${BP}.tar.xz \ | 3 | SRC_URI = "${KERNELORG_MIRROR}/linux/network/${BPN}/${BP}.tar.xz \ |
4 | file://0001-plugin.h-Change-visibility-to-default-for-debug-symb.patch \ | 4 | file://0001-plugin.h-Change-visibility-to-default-for-debug-symb.patch \ |
5 | file://connman \ | 5 | file://connman \ |
6 | file://no-version-scripts.patch \ | ||
6 | " | 7 | " |
7 | SRC_URI_append_libc-musl = "file://0002-resolve-musl-does-not-implement-res_ninit.patch \ | 8 | SRC_URI_append_libc-musl = "file://0002-resolve-musl-does-not-implement-res_ninit.patch \ |
8 | file://0003-Fix-header-inclusions-for-musl.patch \ | 9 | file://0003-Fix-header-inclusions-for-musl.patch \ |
@@ -12,4 +13,3 @@ SRC_URI[md5sum] = "c51903fd3e7a6a371d12ac5d72a1fa01" | |||
12 | SRC_URI[sha256sum] = "bc8946036fa70124d663136f9f6b6238d897ca482782df907b07a428b09df5a0" | 13 | SRC_URI[sha256sum] = "bc8946036fa70124d663136f9f6b6238d897ca482782df907b07a428b09df5a0" |
13 | 14 | ||
14 | RRECOMMENDS_${PN} = "connman-conf" | 15 | RRECOMMENDS_${PN} = "connman-conf" |
15 | |||