[Mod] First commit

This commit is contained in:
2022-10-31 22:18:58 +08:00
commit 1c8a3d9709
13090 changed files with 526733 additions and 0 deletions

View File

@ -0,0 +1,33 @@
From dc0a75b1679debbc3712b262e5127e90961f92db Mon Sep 17 00:00:00 2001
From: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Date: Fri, 23 Apr 2021 22:57:56 +0200
Subject: [PATCH] cmds/records: replace ADDR_NO_RANDOMIZE by its value
uClibc-ng lacks the definition of ADDR_NO_RANDOMIZE, causing a build
failure. A patch was submitted to upstream uClibc-ng to address this
issue, but in the mean time, use an hardcoded value.
Using a #ifdef ... #endif test doesn't work as this value is defined
through an enum in glibc.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
---
cmds/record.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/cmds/record.c b/cmds/record.c
index e750f053..fc4eaed4 100644
--- a/cmds/record.c
+++ b/cmds/record.c
@@ -2110,7 +2110,7 @@ int do_child_exec(int ready, struct opts *opts,
if (opts->no_randomize_addr) {
/* disable ASLR (Address Space Layout Randomization) */
- if (personality(ADDR_NO_RANDOMIZE) < 0)
+ if (personality(0x0040000 /* ADDR_NO_RANDOMIZE */) < 0)
pr_dbg("disabling ASLR failed\n");
}
--
2.30.2

View File

@ -0,0 +1,31 @@
From 4e543097e62eb052650433d1d4c9c5996d30f242 Mon Sep 17 00:00:00 2001
From: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Date: Fri, 23 Apr 2021 23:06:01 +0200
Subject: [PATCH] arch/arm/mcount-support.c: define EF_ARM_VFP_FLOAT when not
available
uClibc-ng <elf.h> doesn't define EF_ARM_VFP_FLOAT, so let's define it.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
---
arch/arm/mcount-support.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/arch/arm/mcount-support.c b/arch/arm/mcount-support.c
index 8d23460b..51331740 100644
--- a/arch/arm/mcount-support.c
+++ b/arch/arm/mcount-support.c
@@ -3,6 +3,10 @@
#include <link.h>
#include <elf.h>
+#ifndef EF_ARM_VFP_FLOAT
+# define EF_ARM_VFP_FLOAT 0x400
+#endif
+
#ifndef EF_ARM_ABI_FLOAT_HARD
# define EF_ARM_ABI_FLOAT_HARD EF_ARM_VFP_FLOAT
#endif
--
2.30.2

28
package/uftrace/Config.in Normal file
View File

@ -0,0 +1,28 @@
config BR2_PACKAGE_UFTRACE_ARCH_SUPPORTS
bool
default y if BR2_ARM_CPU_ARMV6 || BR2_ARM_CPU_ARMV7A
default y if BR2_aarch64
default y if BR2_i386
default y if BR2_x86_64
config BR2_PACKAGE_UFTRACE
bool "uftrace"
depends on BR2_PACKAGE_UFTRACE_ARCH_SUPPORTS
depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL # pthread_setname_np()
depends on !BR2_STATIC_LIBS
select BR2_PACKAGE_ARGP_STANDALONE if \
BR2_TOOLCHAIN_USES_UCLIBC || \
BR2_TOOLCHAIN_USES_MUSL
help
The uftrace tool is to trace and analyze execution of a
program written in C/C++. It was heavily inspired by the
ftrace framework of the Linux kernel (especially function
graph tracer) and supports userspace programs.
It supports various kind of commands and filters to help
analysis of the program execution and performance.
https://github.com/namhyung/uftrace
comment "uftrace needs a toolchain w/ NPTL, dynamic library"
depends on BR2_PACKAGE_UFTRACE_ARCH_SUPPORTS
depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL || BR2_STATIC_LIBS

View File

@ -0,0 +1,3 @@
# Locally computed
sha256 b8b56d540ea95c3eafe56440d6a998e0a140d53ca2584916b6ca82702795bbd9 uftrace-0.10.tar.gz
sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643 COPYING

View File

@ -0,0 +1,60 @@
################################################################################
#
# uftrace
#
################################################################################
UFTRACE_VERSION = 0.10
UFTRACE_SITE = $(call github,namhyung,uftrace,v$(UFTRACE_VERSION))
UFTRACE_LICENSE = GPL-2.0
UFTRACE_LICENSE_FILES = COPYING
UFTRACE_CONFIGURE_OPTS = \
--without-libdw \
--without-libpython \
--without-libluajit \
--without-libncurses \
--without-capstone
ifeq ($(BR2_i386),y)
UFTRACE_ARCH = i386
else
UFTRACE_ARCH = $(BR2_ARCH)
endif
# Only --without-<foo> options are supported.
ifeq ($(BR2_PACKAGE_ELFUTILS),y)
UFTRACE_DEPENDENCIES += elfutils
else
UFTRACE_CONFIGURE_OPTS += --without-libelf
endif
ifeq ($(BR2_INSTALL_LIBSTDCPP),)
UFTRACE_CONFIGURE_OPTS += --without-libstdc++
endif
UFTRACE_LDFLAGS = $(TARGET_LDFLAGS)
ifeq ($(BR2_PACKAGE_ARGP_STANDALONE),y)
UFTRACE_DEPENDENCIES += argp-standalone
UFTRACE_LDFLAGS += -largp
endif
define UFTRACE_CONFIGURE_CMDS
(cd $(@D); $(TARGET_CONFIGURE_OPTS) \
LDFLAGS="$(UFTRACE_LDFLAGS)" \
./configure \
--arch=$(UFTRACE_ARCH) \
--prefix=/usr \
$(UFTRACE_CONFIGURE_OPTS) \
-o $(@D)/.config)
endef
define UFTRACE_BUILD_CMDS
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)
endef
define UFTRACE_INSTALL_TARGET_CMDS
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR=$(TARGET_DIR) install
endef
$(eval $(generic-package))