mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
ofono: upgrade to version 1.17
Removed the patch 0001-backtrace-Disable-for-non-glibc-C-libraries.patch, as it is included in the new sources. (From OE-Core rev: 4ffa6d6950f23afa549116ff2bfb30e687888914) Signed-off-by: Maxin B. John <maxin.john@intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
996f8437ed
commit
744e89f6eb
@@ -1,40 +0,0 @@
|
||||
From 2d729af0897d7d72b83d111876febf9e0eec1a68 Mon Sep 17 00:00:00 2001
|
||||
From: Khem Raj <raj.khem@gmail.com>
|
||||
Date: Fri, 3 Apr 2015 20:50:56 -0700
|
||||
Subject: [PATCH] backtrace: Disable for non-glibc C libraries
|
||||
|
||||
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||
Upstream-Status: Pending
|
||||
|
||||
---
|
||||
src/log.c | 5 ++++-
|
||||
1 file changed, 4 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/src/log.c b/src/log.c
|
||||
index febc874..9db4ae7 100644
|
||||
--- a/src/log.c
|
||||
+++ b/src/log.c
|
||||
@@ -30,7 +30,9 @@
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <syslog.h>
|
||||
+#ifdef __GLIBC__
|
||||
#include <execinfo.h>
|
||||
+#endif
|
||||
#include <dlfcn.h>
|
||||
|
||||
#include "ofono.h"
|
||||
@@ -219,8 +221,9 @@ static void signal_handler(int signo)
|
||||
{
|
||||
ofono_error("Aborting (signal %d) [%s]", signo, program_exec);
|
||||
|
||||
+#ifdef __GLIBC__
|
||||
print_backtrace(2);
|
||||
-
|
||||
+#endif
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
--
|
||||
2.1.4
|
||||
|
||||
@@ -1,12 +0,0 @@
|
||||
require ofono.inc
|
||||
|
||||
SRC_URI = "\
|
||||
${KERNELORG_MIRROR}/linux/network/${BPN}/${BP}.tar.xz \
|
||||
file://ofono \
|
||||
file://Revert-test-Convert-to-Python-3.patch \
|
||||
file://0001-backtrace-Disable-for-non-glibc-C-libraries.patch \
|
||||
"
|
||||
SRC_URI[md5sum] = "c31b5b55a1d68354bff771d3edf02829"
|
||||
SRC_URI[sha256sum] = "403b98dadece8bc804c0bd16b96d3db5a3bb0f84af64b3d67924da2d1a754b07"
|
||||
|
||||
CFLAGS_append_libc-uclibc = " -D_GNU_SOURCE"
|
||||
11
meta/recipes-connectivity/ofono/ofono_1.17.bb
Normal file
11
meta/recipes-connectivity/ofono/ofono_1.17.bb
Normal file
@@ -0,0 +1,11 @@
|
||||
require ofono.inc
|
||||
|
||||
SRC_URI = "\
|
||||
${KERNELORG_MIRROR}/linux/network/${BPN}/${BP}.tar.xz \
|
||||
file://ofono \
|
||||
file://Revert-test-Convert-to-Python-3.patch \
|
||||
"
|
||||
SRC_URI[md5sum] = "d280b1d267ba5bf391d2a898fea7c748"
|
||||
SRC_URI[sha256sum] = "cbf20f07fd15253c682b23c1786d517f505c3688f7c4ea93da777e1523b89635"
|
||||
|
||||
CFLAGS_append_libc-uclibc = " -D_GNU_SOURCE"
|
||||
Reference in New Issue
Block a user