mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00:00
dlt-daemon: Enable experimental coredumphandler feature
Signed-off-by: Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
Signed-off-by: Gianfranco Costamagna <locutusofborg@debian.org>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
(cherry picked from commit c065c929ab)
Signed-off-by: Armin Kuster <akuster808@gmail.com>
This commit is contained in:
parent
afd076c5ca
commit
1d3c3fa08a
80
meta-oe/recipes-extended/dlt-daemon/dlt-daemon/544.patch
Normal file
80
meta-oe/recipes-extended/dlt-daemon/dlt-daemon/544.patch
Normal file
|
|
@ -0,0 +1,80 @@
|
|||
Upstream-Status: Submitted [https://github.com/COVESA/dlt-daemon/pull/544]
|
||||
|
||||
From 5db28a4b85cf0ec3e128cfc7c9b71d12ec543695 Mon Sep 17 00:00:00 2001
|
||||
From: Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
|
||||
Date: Thu, 28 Sep 2023 12:54:23 +0200
|
||||
Subject: [PATCH] Add common dlt_cdh_cpuinfo.c to unblock build on non amd64
|
||||
and i386 arcs
|
||||
|
||||
---
|
||||
src/core_dump_handler/dlt_cdh.h | 2 ++
|
||||
src/core_dump_handler/dlt_cdh_cpuinfo.c | 33 +++++++++++++++++++++++++
|
||||
src/core_dump_handler/dlt_cdh_crashid.c | 2 +-
|
||||
3 files changed, 36 insertions(+), 1 deletion(-)
|
||||
create mode 100644 src/core_dump_handler/dlt_cdh_cpuinfo.c
|
||||
|
||||
diff --git a/src/core_dump_handler/dlt_cdh.h b/src/core_dump_handler/dlt_cdh.h
|
||||
index d572ecf3..8608c6c4 100644
|
||||
--- a/src/core_dump_handler/dlt_cdh.h
|
||||
+++ b/src/core_dump_handler/dlt_cdh.h
|
||||
@@ -55,6 +55,8 @@ typedef struct
|
||||
uint64_t pc;
|
||||
uint64_t ip;
|
||||
uint64_t lr;
|
||||
+ uint64_t sp;
|
||||
+ uint64_t fp;
|
||||
|
||||
} cdh_registers_t;
|
||||
|
||||
diff --git a/src/core_dump_handler/dlt_cdh_cpuinfo.c b/src/core_dump_handler/dlt_cdh_cpuinfo.c
|
||||
new file mode 100644
|
||||
index 00000000..d6fc3905
|
||||
--- /dev/null
|
||||
+++ b/src/core_dump_handler/dlt_cdh_cpuinfo.c
|
||||
@@ -0,0 +1,33 @@
|
||||
+/*
|
||||
+ * SPDX license identifier: MPL-2.0
|
||||
+ *
|
||||
+ * Copyright (C) 2011-2015, BMW AG
|
||||
+ *
|
||||
+ * This file is part of COVESA Project DLT - Diagnostic Log and Trace.
|
||||
+ *
|
||||
+ * This Source Code Form is subject to the terms of the
|
||||
+ * Mozilla Public License (MPL), v. 2.0.
|
||||
+ * If a copy of the MPL was not distributed with this file,
|
||||
+ * You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
+ *
|
||||
+ * For further information see http://www.covesa.org/.
|
||||
+ */
|
||||
+
|
||||
+/*!
|
||||
+ * \author Gianfranco Costamagna <locutusofborg@debian.org>
|
||||
+ *
|
||||
+ * \copyright Copyright © 2011-2015 BMW AG. \n
|
||||
+ * License MPL-2.0: Mozilla Public License version 2.0 http://mozilla.org/MPL/2.0/.
|
||||
+ *
|
||||
+ * \file dlt_cdh_cpuinfo.c
|
||||
+ */
|
||||
+
|
||||
+#include "dlt_cdh_cpuinfo.h"
|
||||
+
|
||||
+void get_registers(prstatus_t *prstatus, cdh_registers_t *registers)
|
||||
+{
|
||||
+/* struct user_regs_struct *ptr_reg = (struct user_regs_struct *)prstatus->pr_reg;
|
||||
+
|
||||
+ registers->pc = ptr_reg->pc; /* [REG_PROC_COUNTER]; */
|
||||
+*/
|
||||
+}
|
||||
diff --git a/src/core_dump_handler/dlt_cdh_crashid.c b/src/core_dump_handler/dlt_cdh_crashid.c
|
||||
index bca44e0e..8dd98d70 100644
|
||||
--- a/src/core_dump_handler/dlt_cdh_crashid.c
|
||||
+++ b/src/core_dump_handler/dlt_cdh_crashid.c
|
||||
@@ -30,7 +30,7 @@
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <errno.h>
|
||||
-#include <asm/prctl.h>
|
||||
+#include <sys/prctl.h>
|
||||
#include <inttypes.h>
|
||||
|
||||
#include "dlt_cdh.h"
|
||||
|
|
@ -17,6 +17,7 @@ DEPENDS = "zlib gzip-native json-c"
|
|||
SRC_URI = "git://github.com/COVESA/${BPN}.git;protocol=https;branch=master \
|
||||
file://0002-Don-t-execute-processes-as-a-specific-user.patch \
|
||||
file://0004-Modify-systemd-config-directory.patch \
|
||||
file://544.patch \
|
||||
"
|
||||
SRCREV = "0f2d4cfffada6f8448a2cb27995b38eb4271044f"
|
||||
|
||||
|
|
@ -47,6 +48,8 @@ PACKAGECONFIG[dlt-console] = "-DWITH_DLT_CONSOLE=ON,-DWITH_DLT_CONSOLE=OFF"
|
|||
|
||||
inherit autotools gettext cmake pkgconfig systemd
|
||||
|
||||
# -DWITH_DLT_COREDUMPHANDLER=ON this feature is too experimental, disable for now
|
||||
#FILES:${PN} += "${libdir}/sysctl.d"
|
||||
EXTRA_OECMAKE += "-DWITH_DLT_LOGSTORAGE_GZIP=ON -DWITH_EXTENDED_FILTERING=ON -DSYSTEMD_UNITDIR=${systemd_system_unitdir}"
|
||||
|
||||
PACKAGES += "${PN}-systemd"
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user