diff options
author | Angelo Compagnucci <angelo.compagnucci@gmail.com> | 2015-03-26 21:41:29 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-03-30 22:30:51 +0200 |
commit | 74fc60a267341879ca71f8eaa64a80f5b5aaf78b (patch) | |
tree | 776b877bd73262b515dc29ddbfa571fc28e992d4 /package/sysdig/Config.in | |
parent | e759a07939cbd4204212d787520b60b66c6e8011 (diff) | |
download | buildroot-74fc60a267341879ca71f8eaa64a80f5b5aaf78b.tar.gz buildroot-74fc60a267341879ca71f8eaa64a80f5b5aaf78b.zip |
package/sysdig: New package
Sysdig is open source, system-level exploration: capture system state
and activity from a running Linux instance, then save, filter and
analyze.
[Thomas:
- remove unneeded 0001-makefile-driver-compile-options.patch, instead
pass KERNELDIR in the make options when building the driver, and
pass the contents of $(LINUX_MAKE_FLAGS) directly.
- use $(SYSDIG_BUILDDIR) instead of $(@D)/buildroot-build, so that
the package does not depend on the package infra using specifically
buildroot-build as the build subdirectory.
- use $(MAKE) -C <foo> instead of cd <foo>; $(MAKE).
- rename 0002 patch to 0001, since the 0001 patch is removed.]
Signed-off-by: Angelo Compagnucci <angelo.compagnucci@gmail.com>
Reviewed-by: Yegor Yefremov <yegorslists@googlemail.com>
Reviewed-by: Ryan Barnett <ryan.barnett@rockwellcollins.com>
Tested-by: Ryan Barnett <ryan.barnett@rockwellcollins.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/sysdig/Config.in')
-rw-r--r-- | package/sysdig/Config.in | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/package/sysdig/Config.in b/package/sysdig/Config.in new file mode 100644 index 0000000000..3d7ee67879 --- /dev/null +++ b/package/sysdig/Config.in @@ -0,0 +1,20 @@ +config BR2_PACKAGE_SYSDIG + bool "sysdig" + select BR2_PACKAGE_ZLIB + select BR2_PACKAGE_LUAJIT + select BR2_PACKAGE_JSONCPP + depends on BR2_LINUX_KERNEL + depends on BR2_INSTALL_LIBSTDCPP # libjson + depends on BR2_PACKAGE_LUAJIT_ARCH_SUPPORTS + help + Sysdig is open source, system-level exploration: + capture system state and activity from a running Linux instance, + then save, filter and analyze. + Think of it as strace + tcpdump + lsof + awesome sauce. + With a little Lua cherry on top. + + http://sysdig.org + +comment "sysdig needs a toolchain w/ C++ and a Linux kernel to be built" + depends on !BR2_LINUX_KERNEL || !BR2_INSTALL_LIBSTDCPP + depends on BR2_PACKAGE_LUAJIT_ARCH_SUPPORTS |