summaryrefslogtreecommitdiffstats
path: root/package/sysdig
Commit message (Collapse)AuthorAgeFilesLines
* package/sysdig: bump to version 0.23.1Angelo Compagnucci2018-08-163-7/+12
| | | | | | | | | This patch bumps sysdig to version 0.23.1, adds a new dependency on elfutils and adds hash for the license file. Signed-off-by: Angelo Compagnucci <angelo@amarulasolutions.com> [Thomas: fix Config.in comment dependencies.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* package/sysdig: bump to version 0.19.1Angelo Compagnucci2018-01-023-60/+2
| | | | | | | | This patch bumps sysdig to version 0.19.1 and removes an upstreamed patch. Signed-off-by: Angelo Compagnucci <angelo@amarulasolutions.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/*/Config.in: fix help text check-package warningsThomas Petazzoni2017-12-181-2/+2
| | | | | | | | | | | | | This commit fixes the warnings reported by check-package on the help text of all package Config.in files, related to the formatting of the help text: should start with a tab, then 2 spaces, then at most 62 characters. The vast majority of warnings fixed were caused by too long lines. A few warnings were related to spaces being used instead of a tab to indent the help text. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/sysdig: fix missing curlbuild includeAngelo Compagnucci2017-09-031-0/+58
| | | | | | | | | curlbuild.h was removed in recent versinos of curl, backporting a patch from mainline to fix it until a newer version of sysdig is released. Signed-off-by: Angelo Compagnucci <angelo.compagnucci@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/sysdig: fix incorrect module nameAngelo Compagnucci2017-08-141-0/+1
| | | | | | | | Latest version of sysdig introduced a variable for the kernel module name. This patch updates that variable into Makefile.in. Signed-off-by: Angelo Compagnucci <angelo.compagnucci@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/sysdig: bump to version 0.17.0Angelo Compagnucci2017-08-133-7/+14
| | | | | | | | | | | | | | This patch bumps sysdig to version 0.17.0 and updates the dependencies accordingly. According to [1], the minimum GCC version is 4.8 so encode that as well. [1] https://www.sysdig.org/wiki/how-to-install-sysdig-from-the-source-code/ Signed-off-by: Angelo Compagnucci <angelo.compagnucci@gmail.com> [Arnout: also bump gcc dependency to 4.8] Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
* boot, linux, package: use SPDX short identifier for GPLv2/GPLv2+Rahul Bedarkar2017-04-011-1/+1
| | | | | | | | | | | We want to use SPDX identifier for license strings as much as possible. SPDX short identifier for GPLv2/GPLv2+ is GPL-2.0/GPL-2.0+. This change is done by using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/\<GPLv2\>/GPL-2.0/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/sysdig: add hash fileYann E. MORIN2016-06-191-0/+2
| | | | | Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package:sysdig: propagate dependencies from jsoncppRomain Naour2016-01-011-2/+4
| | | | | | | sysdig select jsoncpp which needs a gcc compiler >= 4.7 Signed-off-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/sysdig: reorder select/dependsRomain Naour2016-01-011-3/+3
| | | | | | | | | | | | | | | | >From [1]: "Even though the ordering has absolutely no consequences in Kconfig, it is not logical (when reading). It is more logical and far easier to understand when depends come first, followed by the selects." Also, the Config.in exemple in the manual suggest to use this coding style [2]. [1] http://lists.busybox.net/pipermail/buildroot/2015-October/142955.html [2] http://buildroot.uclibc.org/downloads/manual/manual.html#writing-rules-config-in Signed-off-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/sysdig: Fix typo in commentBernd Kuhls2015-08-091-1/+1
| | | | | Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/luajit: disable for static buildJörg Krause2015-07-181-2/+3
| | | | | | | | | | | | | | | luajit requires dlopen(). Fixes: http://autobuild.buildroot.net/results/20d/20dfb10198f3688f92208591960192ca08280987/ http://autobuild.buildroot.net/results/c3c/c3cfdf8dfb315bf64caa9ed0f362016111fd93ac/ http://autobuild.buildroot.net/results/8cb/8cbf6207ecf7b254aeccd9ec5c07376a044e1f8f/ [Thomas: propagate the new dependency to the sysdig package, which selects luajit.] Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/sysdig: use kernel-module helperYann E. MORIN2015-07-121-4/+18
| | | | | | | | | | | | | | | | | | sysdig's Makefile was already calling the Linux buildsystem to build its modules, so switch to using the new kernel-module infra. This has the benefit of making sysdig actually buildable, otherwise it fails because it tries to use the kernel headers from the host: make: *** /lib/modules/3.13.0-53-generic/build: No such file or directory. Stop. make[5]: *** [all] Error 2 make[4]: *** [driver/CMakeFiles/driver] Error 2 make[3]: *** [driver/CMakeFiles/driver.dir/all] Error 2 Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Angelo Compagnucci <angelo.compagnucci@gmail.com> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package:sysdig: bump to version 0.1.100Angelo Compagnucci2015-07-062-33/+2
| | | | | | | | | This patch bumps to version 0.1.100, removes the no more neded upstream included patch and adds the ENABLE_DKMS=OFF configure option. Signed-off-by: Angelo Compagnucci <angelo.compagnucci@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/sysdig: New packageAngelo Compagnucci2015-03-303-0/+73
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>
OpenPOWER on IntegriCloud