summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* libglib2: fix compilation for aarch64 and arcAlexey Brodkin2014-04-171-0/+56
| | | | | | | | | Copied from here - https://github.com/openembedded/oe-core/blob/master/meta/recipes-core/glib-2.0/glib-2.0/0001-gio-Fix-Werror-format-string-errors-from-mismatched-.patch Initially posted here - http://lists.openembedded.org/pipermail/openembedded-core/2013-October/085174.html Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* kexec: bump to version 2.0.6Sven Neumann2014-04-173-70/+1
| | | | | | | Remove two patches which have been included upstream. Signed-off-by: Sven Neumann <neumann@teufel.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* xbmc: Fix compile error with missing host-gettextBernd Kuhls2014-04-171-1/+1
| | | | | | | | | | | | | autoreconf -vif lib/cpluff autoreconf: Entering directory `lib/cpluff' autoreconf: running: autopoint --force Can't exec "autopoint": No such file or directory at /home/buildroot/output/host/usr/share/autoconf/Autom4te/FileUtils.pm line 345. autoreconf: failed to run autopoint: No such file or directory autoreconf: autopoint is needed because this package uses Gettext make[1]: *** [lib/cpluff/configure] Error 1 Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* qt5script: Check for QtGui before building the examplesVicente Olivert Riera2014-04-171-0/+46
| | | | | | | | | | | | | | | | Adding an upstream patch to fix an autobuild failure. qsdbg and marshal examples need QtGui module. If QtGui is not installed they fail to compile. Upstream commit: https://github.com/qtproject/qtscript/commit/e4453c92ee41943a3a1d67a725804a44e747f64e Fixes: http://autobuild.buildroot.net/results/0e6/0e63bc604f3ec422996eb0f5fd92f4437954ca04/ Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* zeromq: bump to version 4.0.4Jerzy Grzegorek2014-04-171-1/+1
| | | | | Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* imagemagick: bump to version 6.8.9-0Jerzy Grzegorek2014-04-171-1/+1
| | | | | Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* sqlite: version bump 3.8.4.3Bernd Kuhls2014-04-171-1/+1
| | | | | Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* nftables: new packageGustavo Zacarias2014-04-173-0/+41
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* libnftnl: bump to version 1.0.1Gustavo Zacarias2014-04-171-2/+2
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* libsigsegv: not available on MicroblazeThomas Petazzoni2014-04-161-0/+1
| | | | | | | | Fixes: http://autobuild.buildroot.org/results/dd5/dd583e1c11bba814cd0f124eeeffeca5657a0aa9/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/mesa3d: fix improper dependency of blind optionYann E. MORIN2014-04-161-4/+7
| | | | | | | | | | | | | | | | | | | | | | | | | Currently, the blind option BR2_PACKAGE_MESA3D_DRI_DRIVER depends on !STATIC. But this option is also selected by the various DRI drivers, and none of them currently depend on !STATIC (although there is a comment stating DRI drivers need !STATIC, there's nothing to enforce that). So, we could well end-up with an inconsistent configuration, where some DRI drivers are selected even though STATIC is set. Enclose all DRI drivers in an 'if !STATIC' condition, remove the dependency from the blind option, move the comment so it is nearer the affected drivers, rephrase the comment to match the rules about dependencies on toolchain features. [Thomas: really use the right wording for the comment about the dynamic library dependency.] Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Paul Cercueil <paul@crapouillou.net> Cc: Bernd Kuhls <berndkuhls@hotmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* liblogging: enable systemd compatibility libsEric Le Bihan2014-04-161-0/+1
| | | | | | | | | | | | If systemd is chosen as init system, liblogging will enable the installation of compatibility libraries in systemd. When liblogging will be updated to depend on libsystemd.so, this selection will have to be removed. Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* systemd: add option to enable compatibility libsEric Le Bihan2014-04-162-0/+19
| | | | | | | | | | | | | | | | | | | | Since systemd 209, some libraries have been merged into libsystemd.so: - libsystemd-daemon.so - libsystemd-id128.so - libsystemd-journal.so - libsystemd-login.so A new configuration menu entry has been added to enable the installation of compatibility pkg-config files, so that programs that depend on them can still be built. [Thomas: as suggested by Yann during the review, add an else clause with --disable-compat-libs.] Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* luajit: needs for 32bit archictectures a 32bit host gccFabio Porcedda2014-04-161-0/+4
| | | | | | | | | | | | For 32 bit archictectures the luajit package needs a host compiler able to generate 32 bit code using the "-m32" option so check if that option is supported. Signed-off-by: Fabio Porcedda <fabio.porcedda@gmail.com> Cc: Yann E. MORIN <yann.morin.1998@free.fr> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Cc: François Perrad <francois.perrad@gadz.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* toolchain: add a hidden config option to enable the toolchain packageFabio Porcedda2014-04-162-8/+7
| | | | | | | | | | | | | | | | The usual way to enable a package using the package infrastructure is to use a config option so instead to add the toolchain package to the TARGETS variable in the Makefile add a config option like all the other toolchain packages. [Thomas: remove comment that no longer made sense in the main Makefile, and add a comment above the new hidden Config.in option to explain what it is useful for.] Signed-off-by: Fabio Porcedda <fabio.porcedda@gmail.com> Cc: Arnout Vandecappelle <arnout@mind.be> Cc: Yann E. MORIN <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* host-libxml2: Prefer python2 when python3 is also installedBernd Kuhls2014-04-161-0/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes mesa3d build errors: http://autobuild.buildroot.net/results/d10/d105a0b3ca11fad34f9a2dae0dae9bd041d918a6/ http://autobuild.buildroot.net/results/d71/d7121443715024d15a66ff1abf1261803c10cd35/ http://autobuild.buildroot.net/results/ce6/ce64164d76972f82acab277afc9c95a876c6433e/ checking for python2... python2 checking python2 module: libxml2... no configure: error: failed to find required module libxml2 make: *** [/home/test/test/1/output/build/mesa3d-10.0.4/.stamp_configured] Error 1 mesa3d needs python2 bindings installed by libxml2. To enforce their build option BR2_PACKAGE_HOST_LIBXML2_PYTHON is used exclusively by mesa3d so this patch does not affect other packages. Without this patch host-libxml2 installs the python bindings in $(HOST_DIR)/usr/lib/$(PYTHON3_VERSION_MAJOR) using this defconfig: BR2_PACKAGE_MESA3D=y BR2_PACKAGE_PYTHON3=y because $(HOST_DIR)/usr/bin/python points to $(HOST_DIR)/usr/bin/python3: Quote from host-libxml2 configure log: Found python in /home/fli4l/br2/buildroot/output/host/usr/bin/python Found Python version 3.4 HOST_$(PACKAGE)_NEEDS_HOST_PYTHON does not work here because libxml2 does not use the python-package infrastructure. libxml2-python2.patch extends the python detection code in host-libxml2 to first look for python2, to keep the patch small I did not update the indentions: Found python2 in /home/fli4l/br2/buildroot/output/host/usr/bin/python2 Found Python version 2.7 Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Tested-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* Makefile: add PATH to the USER_HOOKS_EXTRA_ENVSamuel Martin2014-04-161-0/+1
| | | | | | | | | | This can be useful for post-{build,image} scripts, in case some host-tools were specifically built to be used by these scripts. Signed-off-by: Samuel Martin <s.martin49@gmail.com> Cc: "Yann E. MORIN" <yann.morin.1998@free.fr> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* pkg-cmake.mk: add PATH in the configure command environmentSamuel Martin2014-04-161-0/+2
| | | | | | | | | Because BR_PATH is not exported in the environment beforehand running cmake, it is necessary to add it on the cmake configure command. Signed-off-by: Samuel Martin <s.martin49@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* infra: remove unused {TARGET, HOST}_PATH definitionSamuel Martin2014-04-161-3/+0
| | | | | | | | | Since the variables TARGET_PATH and HOST_PATH are not used anymore, let's remove them. Signed-off-by: Samuel Martin <s.martin49@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* *.mk: replace (TARGET|HOST)_PATH by BR_PATHSamuel Martin2014-04-168-14/+14
| | | | | | | | | | | | Thanks to the 2 previous patches of the series, BR_PATH contains all locations in which host-packages may install programs. This patch replaces the occurrences TARGET_PATH and HOST_PATH with BR_PATH, everywhere these variables are used in the *.mk files. Signed-off-by: Samuel Martin <s.martin49@gmail.com> Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* Makefile: add $(HOST_DIR)/sbin to BR_PATHSamuel Martin2014-04-161-1/+1
| | | | | | | | Extend BR_PATH because a few host-packages install programs in this location. Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* Makefile: introduce BR_PATHSamuel Martin2014-04-162-3/+5
| | | | | | | | | Since the HOST_PATH and TARGET_PATH variables almost contain the same things, let's factorize this in a single BR_PATH. Signed-off-by: Samuel Martin <s.martin49@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* mtd: fix build against recent uClibc 0.9.33Baruch Siach2014-04-162-45/+61
| | | | | | | | | | | | | Commit fae7cc33a1 added a local rpmatch() implementation. However, the rpmatch() implementation was backported to the 0.9.33 branch, thus breaking the Buildroot default toolchain. Rename the local rpmatch() to avoid collision. Fixes: http://autobuild.buildroot.net/results/51f/51fe39bd942e4d8d0045ac810708719b9459e21f/ Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* host-nodejs: use g++ as linkerSamuel Martin2014-04-161-2/+8
| | | | | | | | Fixes: http://autobuild.buildroot.net/results/f6b/f6b80ae32acf7f89bb1c12999679ff1be9733d44/ Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* agent++: need dynamic library supportLuca Ceresoli2014-04-161-2/+4
| | | | | | | Required by SNMP++. Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* snmp++: need dynamic library supportLuca Ceresoli2014-04-161-2/+4
| | | | | | | | Fixes: http://autobuild.buildroot.net/results/7b9/7b9ec11514219e5f315df0b30204f431b4c4f8a1/ Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package: add Boehm-Demers-Weiser gc libraryalex.bennee@linaro.org2014-04-163-0/+27
| | | | | | | | | | | | | | | | This is needed for applications like Zile [Thomas: - use $(...) instead of ${...} to reference LIBGC_VERSION - add missing dependency on libatomic_ops dependencies - fix DEPENDANCIES -> DEPENDENCIES - replace += by = in dependencies definition - add host-pkgconf to the list of dependencies - fix license, it's a X11-style permissive license - fix license file, COPYING didn't exist, use README.md instead] Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* libatomic_ops: introduce a BR2_PACKAGE_LIBATOMIC_ARCH_SUPPORTS hidden optionThomas Petazzoni2014-04-151-1/+5
| | | | | | | | | In preparation to the introduction of packages that select libatomic_ops, this commit adds an hidden BR2_PACKAGE_LIBATOMIC_ARCH_SUPPORTS option which allows to easily depend on the architectures that libatomic_ops is available for. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* host-python-pyrex: use the HOST_*_NEEDS_HOST_PYTHON infrastructureSamuel Martin2014-04-151-1/+1
| | | | | | | | | | | python-pyrex does not support python3. So, using the *_NEEDS_HOST_PYTHON infrastructure will make sure we won't try building it for python3. Besides, it will automatically take care of adding the right host-python package to the dependency list. Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* nodejs: force python interpreterSamuel Martin2014-04-151-6/+18
| | | | | | | | | | | | | nodejs build system is based on python, and it does not support python3. This patch makes sure python2 is used for the build. Note that, setting PYTHON=... at configure time or in the make environment is not enough to override all the hard-coded python call, so we have to sed some python scripts to avoid being screwed. Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* nodejs: use the standard configure/make optionsSamuel Martin2014-04-151-3/+9
| | | | | | | | | Also cleanup leading whitespace. Note that overloading LD in required to avoid linker failures. Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* xserver_xorg-server: Compile fix for mips64Bernd Kuhls2014-04-151-0/+17
| | | | | Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* xserver_xorg-server: Bump version to 1.15.1Bernd Kuhls2014-04-151-1/+1
| | | | | Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* xproto_xproto: Bump version to 7.0.26Bernd Kuhls2014-04-151-1/+1
| | | | | Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* flann: new packageDavide Viti2014-04-153-0/+48
| | | | | | | | | [Thomas: changed license from BSD to BSD-3c, to be more specific.] Signed-off-by: Davide Viti <zinosat@tiscali.it> CC: minimod@morethan.org CC: patrickdepinguin@gmail.com Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* jquery-mobile : new packageSagaert Johan2014-04-153-0/+73
| | | | | | | | | | | Since version 1.4 jquery-mobile includes the core-jquery. No need for extra dependencies. [Thomas: remove trailing spaces in Config.in file, and rewrap help text.] Signed-off-by: Sagaert Johan <sagaert.johan@skynet.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* jquery-ui: switch to sources.buildroot.netGustavo Zacarias2014-04-151-1/+4
| | | | | | | | | | | | | | Switch to sources.buildroot.net cached zipfile. Upstream changed the zipfile and the internal directory structure without notifying anyone or changing the filename thus causing breakage. And we can't use github release tarballs since they are not minified. And we shouldn't reflect this in the install hook since an old cached tarball wouldn't work, and we'd break anyone using the old package file with the new one too. Thanks upstream! Fixes: http://autobuild.buildroot.net/results/43a/43a16a44a26b38f4c6a2f352d8bfe5e07af6b2e3/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* libcurl: drop polarssl supportGustavo Zacarias2014-04-151-3/+0
| | | | | | | | As of curl 7.36.0 it doesn't support polarssl < 1.3 any longer. Fixes: http://autobuild.buildroot.net/results/d82/d82c3618e9dde3da7e36ba2b58545a9a8de5e442/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* openvpn: bump to version 2.3.3Gustavo Zacarias2014-04-151-1/+1
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* flac: needs wcharGustavo Zacarias2014-04-155-3/+16
| | | | | | | | Fixes: http://autobuild.buildroot.net/results/873/873a1b3551c5fe04fa477fd682ff91fecdd41606/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* fdk-aac: Disable for MIPS I, II, III and IVVicente Olivert Riera2014-04-151-0/+4
| | | | | | | | | | This package uses the 'msub' instruction which is available only in mips32 and mips64 ISAs. [Thomas: replicate the new dependency to the comment.] Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* flite: new packageSamuel Martin2014-04-144-0/+88
| | | | | | | | | | [Thomas: rewrap Config.in help text, and use proper format for wchar comment according to the Buildroot manual.] Signed-off-by: Samuel Martin <s.martin49@gmail.com> Cc: Eric Jarrige <eric.jarrige@armadeus.org> Cc: Julien Boibessot <julien.boibessot@armadeus.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* mutt: Add options for imap/pop3 support, enable optional iconv/OpenSSL supportBernd Kuhls2014-04-142-1/+44
| | | | | | | [Thomas: keep a normal 'config' instead of 'menuconfig' for mutt.] Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* mutt: Bump version to 1.5.23Bernd Kuhls2014-04-142-18/+2
| | | | | | | | removed upstream applied patch mutt-02-automake.patch http://dev.mutt.org/trac/changeset/0488deb39a35 Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* openpgm: make its build system python2/python3 friendlySamuel Martin2014-04-142-0/+43
| | | | | | | | | | | | This patch fixes build issue when python3 is enabled, and host python2 interpreter is not available. Fixes: http://autobuild.buildroot.net/results/01f/01f886a073439c0639ed93e596b68bcadf1a5824/ Signed-off-by: Samuel Martin <s.martin49@gmail.com> Cc: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* omniorb: force python interperterSamuel Martin2014-04-141-0/+4
| | | | | | | | | | | | | | | | Omniorb build-system requires python2 interpreter. By default, it looks for python program, which may fallback on the system python interpreter in case python is disabled and python3 is enabled. So, this patch enforces the python interpreter to python2 built by Buildroot. Fixes: http://autobuild.buildroot.org/results/b4f/b4f3a2602ba0224ac3253c4bf6ed87ec045df772/ Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* toolchain-external: add Linaro ARM big endian toolchainThomas Petazzoni2014-04-142-1/+36
| | | | | | | | | | Linaro has started to release ARM big endian toolchains, so we integrate this toolchain in the external toolchain logic of Buildroot. Since ARM big endian is probably going to be a lot more uncommon than ARM little endian, we will only support one version at a time of this toolchain. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* toolchain-external: bump Linaro AArch64 toolchainsThomas Petazzoni2014-04-142-18/+18
| | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* toolchain-external: remove useless info in help text of Linaro ARM toolchainsThomas Petazzoni2014-04-141-6/+0
| | | | | | | | | | | The information "To use this toolchain, you must disable soft float usage." which was visible in the help text of Linaro toolchains is no longer useful, since those toolchains are only visible when the ARM EABIhf ABI is selected, which by design is not compatible with soft-float. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
* toolchain-external: bump Linaro ARM toolchainsThomas Petazzoni2014-04-142-24/+24
| | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
OpenPOWER on IntegriCloud