initial buildroot for linux 5.15
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
From 27e37d2621317d25e08ba0683bf8540b05b9347d Mon Sep 17 00:00:00 2001
|
||||
From: Philippe Proulx <eeppeliteloop@gmail.com>
|
||||
Date: Fri, 28 Oct 2016 02:09:20 -0400
|
||||
Subject: [PATCH] tests/lib/Makefile.am: remove unneeded -static flag
|
||||
|
||||
Having those -static flags breaks the build in shared-only builds.
|
||||
|
||||
Signed-off-by: Philippe Proulx <eeppeliteloop@gmail.com>
|
||||
[Philippe: grabbed from this pull request:
|
||||
https://github.com/efficios/babeltrace/pull/49
|
||||
]
|
||||
---
|
||||
tests/lib/Makefile.am | 2 --
|
||||
1 file changed, 2 deletions(-)
|
||||
|
||||
diff --git a/tests/lib/Makefile.am b/tests/lib/Makefile.am
|
||||
index 33ada16..c685e77 100644
|
||||
--- a/tests/lib/Makefile.am
|
||||
+++ b/tests/lib/Makefile.am
|
||||
@@ -31,13 +31,11 @@ check_SCRIPTS = test_seek_big_trace \
|
||||
test_ctf_writer_complete
|
||||
|
||||
if ENABLE_DEBUG_INFO
|
||||
-test_dwarf_LDFLAGS = -static
|
||||
test_dwarf_LDADD = $(LIBTAP) \
|
||||
$(top_builddir)/lib/libbabeltrace.la \
|
||||
$(top_builddir)/lib/libdebug-info.la
|
||||
test_dwarf_SOURCES = test_dwarf.c
|
||||
|
||||
-test_bin_info_LDFLAGS = -static
|
||||
test_bin_info_LDADD = $(LIBTAP) \
|
||||
$(top_builddir)/lib/libbabeltrace.la \
|
||||
$(top_builddir)/lib/libdebug-info.la
|
||||
--
|
||||
2.9.3
|
||||
|
||||
@@ -0,0 +1,35 @@
|
||||
config BR2_PACKAGE_LTTNG_BABELTRACE
|
||||
bool "lttng-babeltrace"
|
||||
depends on BR2_USE_WCHAR # libglib2
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
|
||||
depends on BR2_USE_MMU # libglib2
|
||||
select BR2_PACKAGE_UTIL_LINUX
|
||||
select BR2_PACKAGE_UTIL_LINUX_LIBUUID
|
||||
select BR2_PACKAGE_LIBGLIB2
|
||||
select BR2_PACKAGE_POPT
|
||||
help
|
||||
The Babeltrace project provides trace read and write
|
||||
libraries, as well as a trace converter application. Plugins
|
||||
can be created for any trace format to allow its conversion
|
||||
to/from another trace format.
|
||||
|
||||
Babeltrace is the reference implementation of the Common
|
||||
Trace Format (see <http://diamon.org/ctf/>). Babeltrace
|
||||
can decode and display LTTng traces, since the latter are
|
||||
written using the CTF format.
|
||||
|
||||
To get support for debugging information, enable the
|
||||
elfutils package.
|
||||
|
||||
Having this tool on the target is not mandatory. You can
|
||||
transfer the binary trace output from the target to your
|
||||
development workstation, and use babeltrace here.
|
||||
|
||||
See the lttng-babeltrace host utility to install Babeltrace
|
||||
on the host.
|
||||
|
||||
http://diamon.org/babeltrace
|
||||
|
||||
comment "lttng-babeltrace needs a toolchain w/ wchar, threads"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
|
||||
@@ -0,0 +1,14 @@
|
||||
config BR2_PACKAGE_HOST_LTTNG_BABELTRACE
|
||||
bool "host lttng-babeltrace"
|
||||
help
|
||||
The Babeltrace project provides trace read and write
|
||||
libraries, as well as a trace converter application. Plugins
|
||||
can be created for any trace format to allow its conversion
|
||||
to/from another trace format.
|
||||
|
||||
Babeltrace is the reference implementation of the Common
|
||||
Trace Format (see <http://diamon.org/ctf/>). Babeltrace
|
||||
can decode and display LTTng traces, since the latter are
|
||||
written using the CTF format.
|
||||
|
||||
http://diamon.org/babeltrace
|
||||
@@ -0,0 +1,7 @@
|
||||
# From http://www.efficios.com/files/babeltrace/babeltrace-1.5.7.tar.bz2.sha256
|
||||
sha256 215331e025ffd39c665a34231b9429180e48aca78f79fb972d0bf1322d2b807b babeltrace-1.5.7.tar.bz2
|
||||
|
||||
# Hash for license files
|
||||
sha256 2f801b7c2494850c3d91da820eb230502dc0192c9d0db024db37ec08d0be1434 mit-license.txt
|
||||
sha256 ab15fd526bd8dd18a9e77ebc139656bf4d33e97fc7238cd11bf60e2b9b8666c6 gpl-2.0.txt
|
||||
sha256 12d4222ac628fe4092cba8ed90bc5227a4dedd0b94973273cecbc393325bf1c2 LICENSE
|
||||
@@ -0,0 +1,32 @@
|
||||
################################################################################
|
||||
#
|
||||
# lttng-babeltrace
|
||||
#
|
||||
################################################################################
|
||||
|
||||
LTTNG_BABELTRACE_SITE = http://www.efficios.com/files/babeltrace
|
||||
LTTNG_BABELTRACE_VERSION = 1.5.7
|
||||
LTTNG_BABELTRACE_SOURCE = babeltrace-$(LTTNG_BABELTRACE_VERSION).tar.bz2
|
||||
LTTNG_BABELTRACE_LICENSE = MIT, LGPL-2.1 (include/babeltrace/list.h), GPL-2.0 (test code)
|
||||
LTTNG_BABELTRACE_LICENSE_FILES = mit-license.txt gpl-2.0.txt LICENSE
|
||||
LTTNG_BABELTRACE_DEPENDENCIES = popt util-linux libglib2 host-pkgconf
|
||||
# The host-elfutils dependency is optional, but since we don't have
|
||||
# options for host packages, just build support for it
|
||||
# unconditionally.
|
||||
HOST_LTTNG_BABELTRACE_DEPENDENCIES = \
|
||||
host-popt host-util-linux host-libglib2 host-pkgconf host-elfutils
|
||||
HOST_LTTNG_BABELTRACE_CONF_OPTS += --enable-debug-info
|
||||
|
||||
# We're patching tests/lib/Makefile.am
|
||||
LTTNG_BABELTRACE_AUTORECONF = YES
|
||||
|
||||
ifeq ($(BR2_PACKAGE_ELFUTILS),y)
|
||||
LTTNG_BABELTRACE_DEPENDENCIES += elfutils
|
||||
LTTNG_BABELTRACE_CONF_OPTS += --enable-debug-info
|
||||
LTTNG_BABELTRACE_CONF_ENV += bt_cv_lib_elfutils=yes
|
||||
else
|
||||
LTTNG_BABELTRACE_CONF_OPTS += --disable-debug-info
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
$(eval $(host-autotools-package))
|
||||
Reference in New Issue
Block a user