mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-07-16 14:27:48 +00:00
48392e5a6f
* Adjust md5sum/sha256sum for the updated tarball
* Add new dependencies:
- numactl, used by net tests (for libnuma)
- util-linux, used by gpio tests (for libmount)
* Get rid of the TARGETS list, manually maintained. Rely on the top-level
Makefile to call all the TARGETS. As a result, TARGETS isn't passed to
EXTRA_OEMAKE anymore.
* Update EXTRA-OEMAKE:
- pass V=1 to be more verbose in the logs
- pass LD to fix gpio tests and avoid to use native linker causing a
build failure in cross-compilation environment.
* Call headers_install in do_compile() to make sure to install the user
space API used by some tests but not properly declared as a build
dependency.
* Add new packages: bpf, gpio and sync tests.
* Allow empty package for bpf. It fails to build and need to be fixed.
* Add sudo to vm package RDEPENDS.
* Add breakpoints package on Aarch64. An arch specific test has been
added, though it is currently broken due to missing TRAP_BRANCH and
TRAP_HWBKPT definitions in glibc siginfo.
* Add ipc package on Aarch64.
* Get rid of do_configure() and convert the Makefiles fixes to patches,
easier to upstream.
* Add patches to fix gpio and net tests. Also add a partial patch for
breakpoints on Aarch64, not applied for now because we need the glibc
fixes counterpart (see explanation above).
Signed-off-by: Fathi Boudra <fathi.boudra@linaro.org>
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
27 lines
732 B
Diff
27 lines
732 B
Diff
From b0448d7816ca561b6470dc50fc1621aec2620f57 Mon Sep 17 00:00:00 2001
|
|
From: Fathi Boudra <fathi.boudra@linaro.org>
|
|
Date: Wed, 22 Mar 2017 17:40:11 +0200
|
|
Subject: [PATCH] selftests: sigaltstack: fix packaging
|
|
|
|
sigaltstack was not using TEST_PROGS resulting in binary not being installed.
|
|
|
|
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
|
|
---
|
|
tools/testing/selftests/sigaltstack/Makefile | 6 +++---
|
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
--- a/tools/testing/selftests/sigaltstack/Makefile
|
|
+++ b/tools/testing/selftests/sigaltstack/Makefile
|
|
@@ -1,8 +1,8 @@
|
|
CFLAGS = -Wall
|
|
-BINARIES = sas
|
|
-all: $(BINARIES)
|
|
+TEST_PROGS = sas
|
|
+all: $(TEST_PROGS)
|
|
|
|
include ../lib.mk
|
|
|
|
clean:
|
|
- rm -rf $(BINARIES)
|
|
+ rm -rf $(TEST_PROGS)
|