Move all to deprecated folder.
This commit is contained in:
18
deprecated/firmware/buildroot/package/trace-cmd/Config.in
Normal file
18
deprecated/firmware/buildroot/package/trace-cmd/Config.in
Normal file
@@ -0,0 +1,18 @@
|
||||
config BR2_PACKAGE_TRACE_CMD
|
||||
bool "trace-cmd"
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||
depends on BR2_USE_MMU # fork()
|
||||
depends on !BR2_STATIC_LIBS # dlopen()
|
||||
help
|
||||
Command line reader for ftrace.
|
||||
|
||||
To use this profiling tool, you should enable ftrace in your kernel
|
||||
configuration. This command collect traces on your target.
|
||||
You can analyse these traces on the target or on the host via the gui
|
||||
"kernel shark"
|
||||
|
||||
http://git.kernel.org/cgit/linux/kernel/git/rostedt/trace-cmd.git
|
||||
|
||||
comment "trace-cmd needs a toolchain w/ threads, dynamic library"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
|
||||
53
deprecated/firmware/buildroot/package/trace-cmd/trace-cmd.mk
Normal file
53
deprecated/firmware/buildroot/package/trace-cmd/trace-cmd.mk
Normal file
@@ -0,0 +1,53 @@
|
||||
################################################################################
|
||||
#
|
||||
# trace-cmd
|
||||
#
|
||||
################################################################################
|
||||
|
||||
TRACE_CMD_VERSION = trace-cmd-v2.6
|
||||
TRACE_CMD_SITE = $(BR2_KERNEL_MIRROR)/scm/linux/kernel/git/rostedt/trace-cmd.git
|
||||
TRACE_CMD_SITE_METHOD = git
|
||||
TRACE_CMD_INSTALL_STAGING = YES
|
||||
TRACE_CMD_LICENSE = GPLv2, LGPLv2.1
|
||||
TRACE_CMD_LICENSE_FILES = COPYING COPYING.LIB
|
||||
|
||||
TRACE_CMD_DEPENDENCIES = host-pkgconf
|
||||
|
||||
ifeq ($(BR2_PACKAGE_AUDIT),y)
|
||||
TRACE_CMD_DEPENDENCIES += audit
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_PYTHON),y)
|
||||
TRACE_CMD_DEPENDENCIES += python host-swig
|
||||
TRACE_CMD_MAKE_OPTS = PYTHON_VERS=python
|
||||
else ifeq ($(BR2_PACKAGE_PYTHON3),y)
|
||||
TRACE_CMD_DEPENDENCIES += python3 host-swig
|
||||
TRACE_CMD_MAKE_OPTS = PYTHON_VERS=python3
|
||||
else
|
||||
TRACE_CMD_MAKE_OPTS += NO_PYTHON=1
|
||||
endif
|
||||
|
||||
# trace-cmd already defines _LARGEFILE64_SOURCE when necessary,
|
||||
# redefining it on the command line causes build problems.
|
||||
TRACE_CMD_CFLAGS = $(filter-out -D_LARGEFILE64_SOURCE,$(TARGET_CFLAGS))
|
||||
|
||||
# trace-cmd use CPPFLAGS to add some extra flags.
|
||||
# But like for CFLAGS, $(TARGET_CPPFLAGS) contains _LARGEFILE64_SOURCE
|
||||
# that causes build problems.
|
||||
TRACE_CMD_CPPFLAGS = $(filter-out -D_LARGEFILE64_SOURCE,$(TARGET_CPPFLAGS))
|
||||
|
||||
define TRACE_CMD_BUILD_CMDS
|
||||
$(MAKE) $(TARGET_CONFIGURE_OPTS) \
|
||||
CFLAGS="$(TRACE_CMD_CFLAGS)" \
|
||||
CPPFLAGS="$(TRACE_CMD_CPPFLAGS)" \
|
||||
$(TRACE_CMD_MAKE_OPTS) \
|
||||
-C $(@D) all
|
||||
endef
|
||||
|
||||
define TRACE_CMD_INSTALL_TARGET_CMDS
|
||||
$(INSTALL) -D -m 0755 $(@D)/trace-cmd $(TARGET_DIR)/usr/bin/trace-cmd
|
||||
$(INSTALL) -d -m 0755 $(TARGET_DIR)/usr/lib/trace-cmd/plugins
|
||||
$(INSTALL) -D -m 0755 $(@D)/plugin_*.so $(TARGET_DIR)/usr/lib/trace-cmd/plugins
|
||||
endef
|
||||
|
||||
$(eval $(generic-package))
|
||||
Reference in New Issue
Block a user