summaryrefslogtreecommitdiffstats
path: root/package
Commit message (Collapse)AuthorAgeFilesLines
* 4th: create /usr/lib and /usr/bin before installationThomas Petazzoni2016-07-061-0/+4
| | | | | | | | | | | | | | | | The 4th build system doesn't create the installation directories by itself, causing $(HOST_DIR)/usr/lib to be a file containing the 4th library if $(HOST_DIR)/usr/lib doesn't already exist as a directory. Since 4th is the first package in the build order due to alphabetic ordering, it is very likely that it will install a file as $(HOST_DIR)/usr/lib, breaking the build of follow-up packages. Fixes: http://autobuild.buildroot.net/results/6291046ca0552e11b79a84df4a7844324d78ab97/ http://autobuild.buildroot.net/results/252642b7d6ec3f77142dcbd158f56ed8e2426c25/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* docker-containerd: needs CGO linkingThomas Petazzoni2016-07-061-0/+2
| | | | | | | | Fixes: http://autobuild.buildroot.net/results/09a23c8926ce32408fbbfa1fb5b3ed7c4f8733e3/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* python-humanize: new packageYegor Yefremov2016-07-064-0/+27
| | | | | Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/lapack: new packageBenjamin Kamath2016-07-064-0/+45
| | | | | | | | | | | | | | | lapack is a fortran-based linear algebra math library. Signed-off-by: Benjamin Kamath <bkamath@spaceflight.com> [Samuel: - Update to use BR2_TOOLCHAIN_HAS_FORTRAN symbol + add comment when the toolchain does not meet the requirements. - Update powerpc/uclibc dependencies to allow build with musl. - Bump to 3.6.1.] Signed-off-by: Samuel Martin <s.martin49@gmail.com> [Thomas: move comment about installed libraries from .mk file to Config.in help text.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/jemalloc: filter on suported architecturesYann E. MORIN2016-07-061-0/+12
| | | | | | | | | | | | | | | | | | | | jemalloc has a hard-coded list of supported architectures, which it uses to define the minimum alignment for allocations. It whines at build time (not at configure time) when it does not know that alignment. Fix that by making jemalloc depend on the known-supported architectures. Fixes: http://autobuild.buildroot.org/results/674/674b6022f9a403528a758c0785656d2bda79e0a9/ Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Eric Le Bihan <eric.le.bihan.dev@free.fr> Reviewed-by: Romain Naour <romain.naour@gmail.com> [Thomas: - split ARM and AArch64 dependencies on two lines - for SuperH, instead of using BR2_sh && !BR2_sh2, explicitly list the SH4 variants, since only SH4 is supported by jemalloc.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/python-pillow: fix wrong install stepAngelo Compagnucci2016-07-062-3/+12
| | | | | | | | | | | | This patch changes PYTHON_PILLOW_INSTALL_TARGET_CMDS to actually install pillow in target directory instead of host. While at it, it also fixes the version for the hash, and uses the more conventional "define ... endef" construct to define variables in python-pillow.mk. Signed-off-by: Angelo Compagnucci <angelo.compagnucci@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* 4th: new packageFrancois Perrad2016-07-065-0/+91
| | | | | | | | | | | Signed-off-by: Francois Perrad <francois.perrad@gadz.org> [Thomas: - fix the license information, it's GPLv3+, LGPLv3+. - add a comment about the COPYING file containing only the LGPLv3 text, even though there is some GPLv3+ code. - minor tweaks in the .mk file - rewrap Config.in help text.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* opus: don't use assembly when on ARM, but without ARM instructionsThomas Petazzoni2016-07-061-0/+6
| | | | | | | | | | | | The ARM assembly code in opus uses full ARM instructions, which won't work on Thumb-2 only platforms such as ARMv7-M, so we disable the assembly code in such situations. Fixes: http://autobuild.buildroot.net/results/ffa12ab7abadd76901228fc82da24e81bb6da625/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* libsigsegv: mark as not available on m68kThomas Petazzoni2016-07-061-0/+1
| | | | | | | | Fixes: http://autobuild.buildroot.net/results/059fd862bd3e9456783f2f4ba307df15dbab0d41/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* runc: add missing dependency on host-pkgconfThomas Petazzoni2016-07-061-1/+1
| | | | | | | | | | runc uses pkg-config to detect libseccomp, so we need to depend on it. Fixes: http://autobuild.buildroot.net/results/72f1cf194843b8519a3ebf213cdbf06873809055/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* runc: depends on CGO linking being supportedVicente Olivert Riera2016-07-061-1/+3
| | | | | | | | | Fixes: http://autobuild.buildroot.net/results/35d72aac0b0cc0ac92bf309d1a957d7903b1411a/ Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* flannel: depends on CGO linking being supportedVicente Olivert Riera2016-07-061-1/+3
| | | | | | | | | Fixes: http://autobuild.buildroot.net/results/3594f33800857cf57302f9b58e30d68f1d9c33b9/ Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* go: define a hidden boolean to specify if CGO linking is supportedVicente Olivert Riera2016-07-061-0/+8
| | | | | Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* audit: bump to version 2.6.3Thomas Petazzoni2016-07-062-2/+2
| | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* audit: fix build with older kernel versionsThomas Petazzoni2016-07-062-0/+61
| | | | | | | | | | | | This commit adds a patch to audit that fixes the build with kernel headers newer than 3.13, but older than 3.19. The patch has been submitted upstream. Fixes: http://autobuild.buildroot.net/results/2d3b2f8c2b9f7f2e04b88b1dccb83e183b5876b6/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* boot/uboot: fix missing closing parenthesisThomas Petazzoni2016-07-061-1/+1
| | | | | | | | | | | | There was a typo in commit b05ff12b6cd38566003b99291a47a56cbd88f396 ("uboot: install multiple spl images"), leading to a missing closing parenthesis. This commit fixes this typo. Fixes bug #9086 Reported-by: Jebodiah Sensai <dkaplan65@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* tekui: add missing dependency on dynamic libraryThomas Petazzoni2016-07-061-2/+4
| | | | | | | | | | | | | | tekui selects a bunch of Lua modules, which are only available when !BR2_STATIC_LIBS, so add this missing dependency. Fixes: http://autobuild.buildroot.net/results/0c8ae60a7c0dfb64ee12d557b1660a4a1fc84703/ While we're at it, use the lower-case name of the package in the Config.in comment. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/gdb: add dependency on host-textinfoRomain Naour2016-07-061-2/+9
| | | | | | | | | | | | | Starting with gdb 7.10, gdb wants to re-generate its documentation. We were trying to avoid that by patching the Makefiles, but it wasn't working in all situations. So, we simply add a dependency on host-texinfo in all case. Fixes: http://autobuild.buildroot.net/results/f72/f72eac3e2f995e93f0e8f215e68ce4356a696dcb Signed-off-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* python-pillow: fix typo on tiff package dependencyThomas Petazzoni2016-07-061-1/+1
| | | | | | | | Fixes: http://autobuild.buildroot.net/results/5ac12f08a366fc15ec138c900df0e5f62d0b70bc/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* freetype: bump version to 2.6.4Vicente Olivert Riera2016-07-062-4/+4
| | | | | Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* lvm2: bump version to 2.02.159Vicente Olivert Riera2016-07-062-2/+2
| | | | | Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* shellinabox: new packageOlivier Singla2016-07-065-0/+53
| | | | | | | | | | | | | | | | | Shell In A Box implements a web server that can export arbitrary command line tools to a web based terminal emulator. This emulator is accessible to any JavaScript and CSS enabled web browser and does not require any additional browser plugins. Signed-off-by: Olivier Singla <olivier.singla@gmail.com> [Thomas: - Use "select" instead of "depends on" for the OpenSSL dependency, and use alphabetic ordering. - Rewrap Config.in help text. - Use github macro - Explain why the OpenSSL dependency is mandatory, while --enable-ssl/--disable-ssl are available.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* uclibc: add ldd compile fix from upstreamWaldemar Brodkorb2016-07-061-0/+29
| | | | | | | | Fixes a build error, when uclibc utils is selected targeting Blackfin. Reported-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Waldemar Brodkorb <wbx@openadk.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* libiio: BR2_PACKAGE_LIBIIO_TESTS requires BR2_PACKAGE_LIBIIO_XML_BACKENDPaul Cercueil2016-07-061-0/+1
| | | | | Signed-off-by: Paul Cercueil <paul.cercueil@analog.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/python-pillow: new packageAngelo Compagnucci2016-07-054-0/+82
| | | | | | | | | | | | | | | | This patch adds python pillow, the friendly python image library fork, it includes a backported patch to disable configuration platfom guessing. Signed-off-by: Angelo Compagnucci <angelo.compagnucci@gmail.com> [Thomas: - Rewrap Config.in help text. - As suggested by Bernd Kuhls, bump the version to 3.3.0 and drop the patch that has been applied upstream. - Rework the optional dependency handling to follow what we do in most Buildroot packages. - Add licensing information.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/linknx: make it build with the musl C libraryBernd Kuhls2016-07-051-0/+37
| | | | | | | | Fixes http://autobuild.buildroot.net/results/c0f/c0f59d3f9eb115072d410ef199f4773f2c380d6d/ Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/sphinxbase: add missing dependency on host-bisonMaxime Hadjinlian2016-07-051-0/+3
| | | | | | | | | Fixes: http://autobuild.buildroot.net/results/741f04fce74b4dfc4d4405d14c82c21f67cbfff1/ Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* dante: new packageMaxime Hadjinlian2016-07-056-0/+103
| | | | | | | | | | | | | | Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> [Thomas: - Add dependency on BR2_USE_MMU - Rewrap Config.in help text - PID file goes in /var/run/ - Daemon to start is /usr/sbin/sockd, not /usr/sbin/dante - Remove staging installation, as it is not needed - Remove --enable-debug, since that's not what BR2_ENABLE_DEBUG is meant for - Install an example configuration file.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* circus: new packageYegor Yefremov2016-07-054-0/+39
| | | | | | | Reviewed-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> [Thomas: minor tweaks to Config.in.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/liboping: fix build after bumpYann E. MORIN2016-07-052-0/+41
| | | | | | | | | Fixes: http://autobuild.buildroot.org/results/6a9/6a9b4d7b1b3cd72e32579fbaf5a69dbde0fea8e4/ Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* squid: bump version to 3.5.20Vicente Olivert Riera2016-07-052-4/+4
| | | | | Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* libiio: Bump version to 0.7Paul Cercueil2016-07-056-83/+74
| | | | | | | | | | | | | | | | The two previous patches have been merged upstream, so they have been deleted here. Another patch (picked from upstream) has been added to fix the build with thread-less toolchains. Libiio v0.7 provides two new backends, a USB backend (using libusb-1.0) and a serial backend (using libserialport). Additionally, it is now possible to compile libiio with thread-less toolchains. In that case, thread safety is disabled. Signed-off-by: Paul Cercueil <paul.cercueil@analog.com> Reviewed-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* packages: use the <PKG>_TARGET_FINALIZE_HOOKSYann E. MORIN2016-07-057-28/+15
| | | | | | | | | | | | | | | | | | Register package-specific target-finalize hooks with the newly-introduced <PKG>_TARGET_FINALIZE_HOOKS. This incidentally fixes luarocks, which was registering target-finalize hooks even when it was not enabled. To be noted, the skeleton package is not converted, because it is not optional, we always have it; so its hooks would always be registered anyway. Besides, the followup patches would render this conversion moot anyway, since those hooks would be spread across the various skeleton packages. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Reviewed-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* core/pkg-generic: allow packages to declare target-finalize hooksYann E. MORIN2016-07-051-0/+2
| | | | | | | | | | | | | | | | | Currently, packages using target finalize hooks must remember that they need to register their hook in TARGET_FINALIZE_HOOKS conditionally (otherwise their hook will be triggered even if the package is disabled). In order to avoid this potential mistake, this commit introduces a per-package target-finalize hook variable, in which packages can register their target-finalize hooks, with the guarantee that they will only be triggered if the package is enabled. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Reviewed-by: Romain Naour <romain.naour@gmail.com> [Thomas: rework commit log.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/perl: use dummy hostnameYann E. MORIN2016-07-051-1/+1
| | | | | | | | | | | | | | | | | | | The hostname does not look like it serves any useful purpose, except maybe to set set perladmin email. Which is undoubtfully useless on the target. A followup commit will make the hostname depend on the default skeleton, so it won't always be available. We can not rely on it to be set. Besides, even today it is not guaranteed to be set; a user may well leave it empty. Use a dummy hostname. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Reviewed-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/rs485conf: new packageMarcin Niestroj2016-07-054-0/+32
| | | | | | Signed-off-by: Marcin Niestroj <m.niestroj@grinn-global.com> Reviewed-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/skeleton: respect variables namespaceYann E. MORIN2016-07-051-30/+30
| | | | | | | | | | | | | | | | | | | | | | | | In makefiles, variables have global scope. We traditionally ensure that we get no name clashing by prefixing all variables with the package name. Currently, this is not the case in the skeleton package, for historical reasons (code snippets copied over from the common Makefiles). We currently have a mix of naming for the variables: - some are indeed prefixed with SKELETON_ - some are prefixed with SYSTEM_ - some are prefixed with both - some are not prefixed Clean up these discrepancies, and prefix all variables with just SKELETON_ and drop the SYSTEM_ prefix. Also include SET_ in all variables that do set something (getty) for consistency across all the variables. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Reviewed-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* binutils: fix build of 2.26 when makeinfo is not availableThomas Petazzoni2016-07-051-0/+11
| | | | | | | | | | | | | The 2.26 binutils tarball has incorrect timestamps for the .info files, so binutils build system tries to regenerate them with makeinfo. In order to avoid depending on host-texinfo, we simply touch the .info files so that their timestamp is newer than the corresponding source files. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Reviewed-by: Romain Naour <romain.naour@gmail.com> Tested-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* gdb: add dependency on host-flex and host-bison for Git versionsThomas Petazzoni2016-07-051-2/+2
| | | | | | | | | gdb versions fetched from git (such as the ARC version) will not build with host-flex and host-bison. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Reviewed-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* gdb: add dependency on host-texinfoThomas Petazzoni2016-07-051-12/+6
| | | | | | | | | | | | | | | | | Just like binutils, when gdb is fetched from git, it wants to re-generate its documentation. We were trying to avoid that by patching the Makefiles, but it wasn't working in all situations. So, we simply add a dependency on host-texinfo when gdb is fetched from git, and remove our hackhish work-around. Fixes: http://autobuild.buildroot.net/results/80e63edc009d23cb939880a6f5ae2f220f07a96a/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Reviewed-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* binutils: build host-texinfo if neededThomas Petazzoni2016-07-052-161/+2
| | | | | | | | | | | This commit adds the dependency on host-texinfo to binutils, when the source is fetched from Git. Thanks to this, we can remove the 0800-Docs-Prevent-build-failures-when-makeinfo-is-missing.patch patch from the ARC-specific version of binutils. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Reviewed-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* texinfo: new host packageThomas Petazzoni2016-07-052-0/+15
| | | | | | | | | | | | We have tried multiple solutions to solve the "makeinfo" problem in binutils and gdb, without finding anything really convincing. So it seems like the easiest solution is to add a texinfo host package, and use it as a dependency of binutils/gdb when they are fetched from Git. This commit introduces just the host-texinfo package. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Reviewed-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* mesa3d: don't remove OpenGL pc when installing GalliumAkihiko Odaki2016-07-051-1/+4
| | | | | | | | | Gallium driver also provides DRI-like infrastructure and OpenGL. This change prevents from removing pkg-configs of them also when installing the driver. Signed-off-by: Akihiko Odaki <akihiko.odaki.4i@stu.hosei.ac.jp> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* iptables: add upstream patch to fix AR substitutionJordan Yelloz2016-07-052-0/+34
| | | | | | | | | | This ensures the correct AR is used for some of the iptables build process. This is the same fix as <https://bugs.gentoo.org/show_bug.cgi?id=444282> Signed-off-by: Jordan Yelloz <jordan@yelloz.me> [Thomas: use upstream patch instead of passing AR in the environment.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* qt5base: Enable KMS and GBM if Mesa 3D provides EGLAkihiko Odaki2016-07-051-1/+8
| | | | | Signed-off-by: Akihiko Odaki <akihiko.odaki.4i@stu.hosei.ac.jp> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* cmake: add documentation about how it is builtLuca Ceresoli2016-07-051-0/+12
| | | | | | | | | | | | | | | | | | | | | Commit 7b17bafc5d7948aff3059e058ada80ad1fc50500 by Davide Viti has a detailed explanation of some unusual techniques used for building host-cmake and (target-)cmake. This is useful information for whoever starts hacking on it, so copy it in the makefile, where it will be easily noticed. Also remove the sentence about host-cmake having a runtime dependency on host-pkgconfig (not true anymore: it's the specific cmake-packages that depend on it) and fix typos. Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Cc: Samuel Martin <s.martin49@gmail.com> Cc: Davide Viti <zinosat@tiscali.it> Cc: Arnout Vandecappelle <arnout@mind.be> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* cmake: move the host-pkgconf dependency from host-cmake to pkg-cmakeLuca Ceresoli2016-07-052-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | In 3d475ee0ba4d6eea6aca25594cfe5bb153ac804f a dependency on host-pkgconf was added to host-cmake. It is a workaround to fix build failures for packages that use pkgconf through a cmake module, but do not depend on host-pkgconf as they should. Since it is the package that needs host-pkgconf and not host-cmake itself, move the dependency to the proper place, in pkg-cmake.mk. Also copy the explanation on the mentioned commit as a comment in order to clarify why we do this. Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Cc: Samuel Martin <s.martin49@gmail.com> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Cc: Davide Viti <zinosat@tiscali.it> Cc: Arnout Vandecappelle <arnout@mind.be> Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> [Thomas: - update on top of master - drop empty HOST_CMAKE_DEPENDENCIES, no longer needed since host dependencies are no longer derived from target dependencies.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* uclibc: enable Linuxthreads for BlackfinWaldemar Brodkorb2016-07-051-1/+1
| | | | | | | | Enable Linuxthreads, a small binutils patch from upstream is required. Signed-off-by: Waldemar Brodkorb <wbx@openadk.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* binutils: add required upstream patch for bfinWaldemar Brodkorb2016-07-051-0/+30
| | | | | | | | This is required to build uClibc-ng with threading support and FDPIC binary format. Signed-off-by: Waldemar Brodkorb <wbx@openadk.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* jemalloc: new packageEric Le Bihan2016-07-054-0/+29
| | | | | | | | | | | | | This new package provides jemalloc, a malloc(3) implementation that emphasizes fragmentation avoidance and scalable concurrency support. A host variant is added as it will be used by rust. Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr> [Thomas: - remove trailing slash (noticed by Romain Naour) - add !BR2_STATIC_LIBS dependency (noticed by Romain Naour).] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
OpenPOWER on IntegriCloud