summaryrefslogtreecommitdiffstats
path: root/package/strace
Commit message (Collapse)AuthorAgeFilesLines
* package/strace: fix build for mipsBaruch Siach2019-01-081-0/+68
| | | | | | | | | | | | | Upstream changes in mips specific code of the last release broke build for that target. Add a patch that restores build. Fixes: http://autobuild.buildroot.net/results/858/8585e75df6462b6d07476a81982e88ec81655c8b/ http://autobuild.buildroot.net/results/b2f/b2f24976ddda1adc9b9ba3d9bfb7167721814f78/ http://autobuild.buildroot.net/results/031/0313245fe555e0c0890c3f475bf6586db23535ed/ Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/strace: fix build for no-MMU targetsBaruch Siach2019-01-081-0/+49
| | | | | | | | | | | | | The latest strace version bump added a call to fork() which breaks build for no-MMU. Add a patch that removes the unneeded fork() call on no-MMU. Fixes: http://autobuild.buildroot.net/results/4a0/4a0e2872b27be93f73137c7550eae1c1f479c160/ http://autobuild.buildroot.net/results/747/74711084a54dfc17ad0d4d1e5faabf6d8a605dca/ Cc: Nicolas Cavallari <nicolas.cavallari@green-communications.fr> Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* strace: bump to version 4.26Nicolas Cavallari2019-01-062-6/+7
| | | | | | | | The licence changed from BSD to LGPL 2.1 or later, update this accordingly. Signed-off-by: Nicolas Cavallari <nicolas.cavallari@green-communications.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/strace: bump to version 4.25Baruch Siach2018-11-282-3/+3
| | | | | | | | | | This release also fixes compatibility with kernel 4.19 headers. Fixes: http://autobuild.buildroot.net/results/0763988c35a1de7d51c7094b5b002ed369f1a25f/ Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* package/strace: don't remove strace-graph unconditionallyBaruch Siach2018-11-281-0/+2
| | | | | | | | | | | strace-graph is a perl script. This script is removed unconditionally since commit 720c0ca5ba7 ("strace: convert to makefile.autotools.in format") from 2008. Since then Buildroot added support for perl on target. Don't remove strace-graph when perl is built for target. Signed-off-by: Baruch Siach <baruch@tkos.co.il> [Thomas: move the hook definition inside the condition.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* strace: bump to version 4.23Baruch Siach2018-06-222-4/+4
| | | | | | | Add reference to tarball signature verification key. Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* Merge branch 'next'Peter Korsgaard2018-06-023-101/+12
|\ | | | | | | Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
| * package/strace: enable demangling of C++ symbol names in stack traceRomain Naour2018-05-201-0/+8
| | | | | | | | | | Signed-off-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
| * strace: bump to version 4.22Baruch Siach2018-05-113-101/+4
| | | | | | | | | | | | | | | | | | Drop upstream patch. Update license file hash; copyright year update. Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* | strace: disable (again) mpers for muslBaruch Siach2018-05-111-0/+8
|/ | | | | | | | | | | | | | | | It turns out that mpers support in strace still does not play nicely with musl libc. As explained in commit 7892a778b (package/strace: disable libmpers with musl toolchains) headers mixup causes gcc header to be included, instead of the musl one, resulting in conflicting types. Commit 1088372941 (strace: bump to version 4.21) incorrectly enabled mpers for musl. Revert that. Fixes: http://autobuild.buildroot.net/results/345/3452419498c074ca66f36f0f87263fa10662ac86/ Cc: Romain Naour <romain.naour@gmail.com> Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* strace: fix build for m68kBaruch Siach2018-04-221-0/+97
| | | | | | | | | | | Add upstream patch fixing build for m68k target. Fixes: http://autobuild.buildroot.net/results/bef/befdcb3f87c0490cd623520403b9467ec7359950/ http://autobuild.buildroot.net/results/ddb/ddb7616991468bc45d85aa1b56bec2cb5eb897c4/ Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* package/strace: add missing libunwind optional dependencyRomain Naour2018-04-062-0/+10
| | | | | | | | | | This improve the reproducible build. Signed-off-by: Romain Naour <romain.naour@gmail.com> [Thomas: mention the libunwind dependency as being needed for 'strace -k' in the Config.in help text, as suggested by Thomas De Schampheleire.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* strace: bump to version 4.21Baruch Siach2018-03-252-15/+5
| | | | | | | | | | | | | Download site moved to strace.io. No upstream provided hashes. Drop the musl specific autoconf seed values. These values are now detected correctly. Add --enable-mpers=check to fix configure on aarch64 that does not support binaries for the compat personality. Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* strace: bump to version 4.20Baruch Siach2017-12-223-51/+6
| | | | | | | Drop upstream patch. Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* strace: update homepage linkBaruch Siach2017-09-091-1/+1
| | | | | | | | strace moved to a new homepage as upstream commit 2bba131575878 (Update homepage URL) indicates. Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* strace: fix program_invocation_name uClibc declaration mismatchBaruch Siach2017-09-091-0/+45
| | | | | | | | | | | | | The local program_invocation_name declaration conflicts with the uClibc one. Add a patch making this declaration depend on !HAVE_PROGRAM_INVOCATION_NAME. Fixes: http://autobuild.buildroot.net/results/5f0/5f0852f3ffb46f8fb2b4c9318652c5ab3ab5e97d/ Signed-off-by: Baruch Siach <baruch@tkos.co.il> [Thomas: update patch status.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* strace: bump to version 4.19Baruch Siach2017-09-072-4/+8
| | | | | | | Add license hash. Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* strace: bump version to 4.18Evgeniy Didin2017-07-143-46/+3
| | | | | | | | | | | | | This patch bumps the strace package to 4.18 upstream version. Patch 0001-nios2-arch_regs-fix-nios2_sp_ptr-definition.patch has been removed because it is part of 4.18. Signed-off-by: Evgeniy Didin <didin@synopsys.com> Cc: Alexey Brodkin <abrodkin@synopsys.com> Cc: arc-buildroot@synopsys.com Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/strace: fix nios2_sp_ptr definitionRomain Naour2017-07-042-0/+49
| | | | | | | | | | | | | | | | | | | The patch [1] introduced in strace 1.17 uses the old way of accessing SP register as defined for kernel headers < 4.0. The kernel headers for nios2 has been changed in commit [2]. This patch updates strace to use the new kernel/userspace interface. Fixes: http://autobuild.buildroot.net/results/b9f/b9fc25b82f3280872fe1593ac252a8529ba83576 [1] https://github.com/strace/strace/commit/6117728aacf431a3e3c05761766c776874cc0861 [2] https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git/commit/?id=92d5dd8cd6e2b211d32d8fbc6cf4b7470765a09f Signed-off-by: Romain Naour <romain.naour@smile.fr> Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> [Thomas: improve a bit the commit log and patch description.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* strace: bump version to 4.17Adam Duskett2017-06-212-4/+4
| | | | | Signed-off-by: Adam Duskett <aduskett@codeblue.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* boot, package: use SPDX short identifier for BSD-3cRahul Bedarkar2017-04-011-1/+1
| | | | | | | | | | | We want to use SPDX identifier for license string as much as possible. SPDX short identifier for BSD-3c is BSD-3-Clause. This change is done using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/BSD-3c/BSD-3-Clause/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* strace: bump to version 4.16Gustavo Zacarias2017-02-152-4/+4
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* strace: bump to version 4.15Gustavo Zacarias2016-12-182-3/+4
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/strace: disable libmpers with musl toolchainsRomain Naour2016-11-131-0/+8
| | | | | | | | | | | | | | strace bundle some kernel headers to build libmpers, this mixes userspace headers and kernel headers which break the build with musl. The stddef.h from gcc is used instead of the one from musl. Disable libmpers for musl toolchains. Fixes: http://autobuild.buildroot.net/results/6f6/6f63fa2537ff316ba259a20966faadcf5ab9deff Signed-off-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* strace: bump to version 4.14Gustavo Zacarias2016-10-052-5/+2
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* strace: bump to version 4.13Baruch Siach2016-07-313-105/+6
| | | | | | | | | | | | | | | | | | | | Drop upstream patch. Remove preseed of netlink.h and if_packet.h tests since these tests were removed from configure.ac. Add stronger sha256 hash. Version 4.13 fixes a typo in configure.ac (commit 7c0e8875a432) that causes build failure with kernel v4.7 headers, thus fixing: http://autobuild.buildroot.net/results/aa6/aa6badae8b3d58d6d48161f261988103271bc2ef/ http://autobuild.buildroot.net/results/4ad/4ad1b0c42206243bd76e94b34454d4108fb31070/ http://autobuild.buildroot.net/results/1c6/1c6c88a7163529a666d1661969736f66e9aba7f7/ and more. Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* strace: fix build with kernel headers before v3.11Baruch Siach2016-06-221-0/+97
| | | | | | | | | | Add upstream patch with fixes for missing btrfs ioctl macros. Fixes: http://autobuild.buildroot.net/results/fd6/fd6e8b6386c3d3170168608c49a0efde7b7fa269/ Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* strace: bump to version 4.12Baruch Siach2016-06-223-108/+4
| | | | | | | Drop upstream patch. Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* strace: enable supported nios2 archEzequiel GarcĂ­a2016-01-041-1/+0
| | | | | | | | Support for Nios-II has been added in strace release 4.11. Signed-off-by: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar> Tested-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* strace: fix building for arc, metag, nios2, or1k and tileAlexey Brodkin2015-12-271-0/+104
| | | | | | | | | | | | | | | | | | | Following commit broke building for arc, metag, nios2, or1k and tile: http://sourceforge.net/p/strace/code/ci/34683e3926d8c2daa368afb805da422ee7043396/ Now we're fixing that breakage with a back-port of upstream fix: http://sourceforge.net/p/strace/code/ci/dd1a80c8d213eed95fe55b7ebcb07ee165dd8e4b/ Mentioned fix will be a part of the next strace release, i.e. this patch must be removed on strace version bump. Fixes http://autobuild.buildroot.org/results/f25/f25c23003ed282b935f5289c944615860265364a and alike, see http://autobuild.buildroot.org/?reason=strace-4.11 Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Cc: Waldemar Brodkorb <wbx@openadk.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* strace: bump to version 4.11Gustavo Zacarias2015-12-223-29/+4
| | | | | | | Patch upstream so remove it. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/strace: add missing header for aarch64Romain Naour2015-04-041-0/+25
| | | | | | | | Fixes: http://autobuild.buildroot.net/results/a27/a27a9e2bd7b95e29289c4422b89690a42992e30f/ Signed-off-by: Romain Naour <romain.naour@openwide.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* packages: remove (non-)lfs dependencies and tweaksGustavo Zacarias2015-04-011-4/+0
| | | | | | | | Now that largefile is mandatory removes package dependencies and conditionals. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* strace: bump to version 4.10Gustavo Zacarias2015-03-103-110/+4
| | | | | | | Patch upstream so remove. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/*: rename patches according to the new policyPeter Korsgaard2015-02-031-0/+0
| | | | | | | Autogenerated from rename-patch.py (http://patchwork.ozlabs.org/patch/403345) Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* strace: Enable for MIPS platforms with uClibcVicente Olivert Riera2015-02-011-6/+0
| | | | | | | | Enable strace for MIPS platforms with uClibc again since this C library is now fixed. Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package: indentation cleanupJerzy Grzegorek2015-01-151-2/+3
| | | | | Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package: add hashes for SourceForge-hosted packagesYann E. MORIN2014-12-281-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Since SourceForge sometimes serves us faulty tarballs, we can tons of autobuild failures: http://autobuild.buildroot.org/results/9fb/9fba5bf086a4e7a29e5f7156ec43847db7aacfc4/ http://autobuild.buildroot.org/results/6c8/6c837b244c45ac3b3a887734a371cd6d226cf216/ ... Fix that by adding hash files for all SourceForge-hosted packages (thos etht did not already have it). We normally prefer to use hashes published by upstream, but hunting them all one by one is a tedious task, so those hashes were all locally computed with a script that searched for SF-hosted packages, downloades the associated tarball, computed the hash, and stored it in the corresponding .hash file. Also, SF publishes sha1 hashes, while I used the stronger sha256, since sha1 is now considered to be relatively weak. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Peter Korsgaard <jacmet@uclibc.org> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Cc: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Cc: Richard Braun <rbraun@sceen.net> Cc: Nathaniel Roach <nroach44@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package: indentation cleanupJerzy Grzegorek2014-11-021-2/+2
| | | | | Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* strace: Apply an upstream patch to fix sa_restorer problemsVicente Olivert Riera2014-09-181-0/+107
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Wrap sa_restorer member definitions in #ifdef SA_RESTORER to be consistent with their use. If an architecture does not provide sa_restorer members but still defines SA_RESTORER macro, the latter has to be explicitly undefined. This change fixes compilation failures like this one: signal.c: In function 'decode_old_sigaction': signal.c:631:21: error: 'struct old_sigaction' has no member named 'sa_restorer' signal.c: In function 'decode_new_sigaction': signal.c:1224:21: error: 'struct new_sigaction' has no member named 'sa_restorer' * signal.c (struct old_sigaction, struct old_sigaction32, struct new_sigaction, struct new_sigaction32): Wrap sa_restorer member in #ifdef SA_RESTORER. (decode_old_sigaction, decode_new_sigaction): Wrap use of sa32.sa_restorer in #ifdef SA_RESTORER. Upstream commit: https://sourceforge.net/p/strace/code/ci/c3a5c01051ba29a9f421f4d45d96bbc32df2b796/ Fixes: http://autobuild.buildroot.net/results/93e/93e54d8aecc5c178cc3465eb9fd5415461325285/ Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* strace: Disable for MIPS when using a uClibc toolchainVicente Olivert Riera2014-09-131-0/+6
| | | | | | | | | | | | | | | | | | | | | | A change introduced in strace-4.9 makes it incompatible with MIPS architecture when using a uClibc toolchain. This is the failure: signal.c: In function 'printsiginfo': signal.c:453:9: error: 'siginfo_t' has no member named 'si_timerid' sip->si_timerid, sip->si_overrun); ^ signal.c:453:26: error: 'siginfo_t' has no member named 'si_overrun' sip->si_timerid, sip->si_overrun); uClibc needs to be patched in order to fix this problem. In the meantime we disable strace for MIPS when using a uClibc toolchain. Fixes: http://autobuild.buildroot.net/results/91c/91c0413e755c365332bc15d1d69ab3d6160ae78c/ Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* strace: upgrade to 4.9, supports ARCVineet Gupta2014-09-066-230/+6
| | | | | | | | | | | | | | Also get rid of the backport patches which are already present upstream. Tested on ARC with LFS [Peter: drop incomplete !LFS patch, depend on BR2_LARGEFILE] Signed-off-by: Vineet Gupta <vgupta@synopsys.com> Cc: arc-linux-dev@synopsys.com Cc: Max Filippov <jcmvbkbc@gmail.com> Cc: Anton Blanchard <anton@samba.org> Cc: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* strace: fix ptrace {PEEK, POKE}USER arguments decoding on xtensaMax Filippov2014-06-191-0/+76
| | | | | | Backported from: 57fac759ca0945f5608ed6a2228c697f8fb67cd6 Signed-off-by: Max Filippov <jcmvbkbc@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* strace: add serial number to existing patch file namesMax Filippov2014-06-193-0/+0
| | | | | Signed-off-by: Max Filippov <jcmvbkbc@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* strace: Fix build issue with duplicate ptrace_peeksiginfo_args definitionAnton Blanchard2014-01-082-0/+131
| | | | | | | | | Backport a patch from upstream to fix a conflict between glibc headers and recent kernel headers (v3.10 or newer). Signed-off-by: Anton Blanchard <anton@samba.org> Acked-by: Spenser Gilliland <spenser@gillilanding.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* strace: disable unsupported nios2 archBaruch Siach2013-12-011-1/+1
| | | | | | | | Fixes http://autobuild.buildroot.net/results/88f330254a83fbc105a74e76df586672d2c369c4/ Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* strace: fix legal infoGustavo Zacarias2013-06-101-1/+1
| | | | | | | | The license file changed from COPYRIGHT->COPYING. Fixes: http://autobuild.buildroot.net/results/b61/b61e1775cd1eec83470424e88ced5bd49e0cd469/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* strace: upgrade to 4.8, supporting now aarch64, and xtensaChris Zankel2013-06-104-30/+5
| | | | | | | | | | | | | | | | | | | Remove 'strace-fix-arm-bad-syscall.patch'. This patch had been integrated in v4.6 (commit: 9bc6340d2) and was later replaced with a generic solution in v.7 (commit: 2ce12ed31c2). Strace still cannot handle non-LFS environments, so a modified version of strace-fix-disabled-largefile-syscalls.patch remains. The 64-bit syscalls (sys_truncate64, etc.) are references in the sysent structure but the functinon definitions are commented out becuase of the missing LFS support. The workaround for the 'forced lfs mode' doesn't seem to be necessary anymore. Build tested on arm w and w/o LFS support. [Peter: arc still not supported] Signed-off-by: Chris Zankel <chris@zankel.net> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Normalize separator size to 80Alexandre Belloni2013-06-061-2/+2
| | | | | Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* strace: unavailable for AArch64 and ARCGustavo Zacarias2013-05-111-1/+1
| | | | | | | | | | | strace isn't available for the AArch64 and ARC architectures. The patchset for AArch64 is somewhat big and complicated (needs updates to other bits) so it'd probably be better to use a git version of strace or wait for a new release. http://autobuild.buildroot.net/results/506f4adec348f0b616ad09bddbcbc242e38253b8/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
OpenPOWER on IntegriCloud