summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | docs: add a page to thank our sponsorsThomas Petazzoni2013-11-132-0/+42
| | | | | | | | | | | | | | | | | | | | Offer a little bit more visibility to the companies who sponsored us, either by sponsoring the developer days, or development boards. Hopefully this will encourage other companies to do the same :) Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | docs: announce the upcoming Buildroot Developer DayThomas Petazzoni2013-11-131-0/+25
| | | | | | | | | | | | | | [Peter: drop 'the' before FOSDEM] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | libplayer: propagate mplayer arm variant dependenciesPeter Korsgaard2013-11-131-0/+4
| | | | | | | | | | | | Fixes http://autobuild.buildroot.net/results/a91/a91647e9aca73611f3866a672c61d4d820ea1ce6/ Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | libvncserver: fix build without pthreadPeter Korsgaard2013-11-131-0/+4
| | | | | | | | | | | | Fixes http://autobuild.buildroot.net/results/761/7618028d0781269d2f6f0a14d814da456f207475/ Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | qt5base: fix posix_fallocate patchSamuel Martin2013-11-131-2/+1
| | | | | | | | | | | | | | | | Fixes: http://autobuild.buildroot.net/results/a07/a07c1825a5295a8343cd89f0901d9a74a764d804/build-end.log Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | news.html: add 2013.11-rc1 annoucement linkPeter Korsgaard2013-11-131-1/+2
|/ | | | Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* Update for 2013.11-rc1Peter Korsgaard2013-11-124-14/+27
| | | | Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* legal info: fix saving of host package licensesThomas De Schampheleire2013-11-121-4/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Due to some tricky make behavior, the license texts of host packages that did not provide an explicit HOST_FOO_LICENSE_FILES definition was not saved. The problem is that it is not straightforward to use a variable defined/updated inside an evaluated block as input to a foreach statement. If you try to use $(FOO) then only the original value of FOO is used for foreach, any update inside the block is ignored. However, if you use $$(FOO), the entire contents of FOO (typically a list of items) is passed as one item to foreach, thus causing just one iteration instead of several. >From Arnout Vandecapelle's explanation: Any variable referenced with a single $ inside the inner-generic-package macro is expanded before the resulting contents are eval'ed. Therefore, it is not possible to refer to variables defined by the inner-generic-package macro from within a single-$ function call. To fix the problem, one should defer the evaluation of the entire block using double dollar signs. Additionally, a few empty lines have been added to the legal-info-foo block for clarity. Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Acked-by: Luca Ceresoli <luca@lucaceresoli.net> Tested-by: Luca Ceresoli <luca@lucaceresoli.net> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* tstools: perform shared library linking step using gcc rather than ldPeter Korsgaard2013-11-121-1/+2
| | | | | | | | Fixes http://autobuild.buildroot.net/results/c45/c45bbdaff6cff56b5646add38032f29bb5520f16 Using ld directly breaks with certain toolchain configurations. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qt5base: add missing hunk in posix_fallocate patchFatih Aşıcı2013-11-121-2/+15
| | | | | Signed-off-by: Fatih Aşıcı <fatih.asici@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qt5base: detect posix_fallocate() at configure timeFatih Aşıcı2013-11-121-0/+154
| | | | | | | Fixes http://autobuild.buildroot.net/results/555278227680e90737e6dbe0a6dcc035507150aa/ Signed-off-by: Fatih Aşıcı <fatih.asici@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* samba: security bump to version 3.6.20Gustavo Zacarias2013-11-121-1/+1
| | | | | | | Fixes CVE-2013-4475 and CVE-2013-4476. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* CHANGES: update with recent changesPeter Korsgaard2013-11-121-0/+105
| | | | Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* docs/news.html: announce dev meeting reportPeter Korsgaard2013-11-111-0/+11
| | | | Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* docs/about.html: we support internal (e)glibc toolchains as well nowPeter Korsgaard2013-11-111-2/+2
| | | | Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* gcc: don't patch gcc if there are no patches to applyMischa Jonker2013-11-111-1/+3
| | | | | | | | | | | While the generic package handler checks for a directory with patches before starting apply-patches.sh, this is not the case for gcc: the script is called, even if there is no directory with patches. This results into a build failure, as apply-patches exits with error code 1 if the directory doesn't exist. Signed-off-by: Mischa Jonker <mjonker@synopsys.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* toolchain-external: make sure (e)glibc isn't chosen when BR2_PREFER_STATIC_LIB=yThomas Petazzoni2013-11-111-0/+37
| | | | | | | | | | | (e)glibc doesn't support a fully statically linked userspace. Even a basic program such as Busybox fails to do authentication due to glibc loading some libraries dynamically. Therefore, we disable the possibility of using a (e)glibc toolchain when BR2_PREFER_STATIC_LIB=y. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* toolchain-buildroot: make sure glibc isn't chosen when BR2_PREFER_STATIC_LIB=yThomas Petazzoni2013-11-111-0/+5
| | | | | | | | | | | (e)glibc doesn't support a fully statically linked userspace. Even a basic program such as Busybox fails to do authentication due to glibc loading some libraries dynamically. Therefore, we disable the possibility of building a glibc toolchain when BR2_PREFER_STATIC_LIB=y. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* toolchain-buildroot: glibc and eglibc support is no longer experimentalThomas Petazzoni2013-11-111-2/+2
| | | | | | | | | The glibc and eglibc support has been introduced since a little bit of time now, I believe we can remove the "experimental" statement next to it. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* icu: Doesn't work on ARC yetMischa Jonker2013-11-115-1/+9
| | | | | | | | | icu depends on __sync_sub_and_fetch and other atomic primitives that don't exist in the ARC toolchain yet. [Peter: adjust beecrypt/php comment dependency, don't mention atomic builtins] Signed-off-by: Mischa Jonker <mjonker@synopsys.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* Config.in files: whitespace cleanupThomas De Schampheleire2013-11-1170-407/+407
| | | | | | | | | | This patch fixes the following whitespace problems in Config.in files: - trailing whitespace - spaces instead of tabs for indentation - help text not indented with tab + 2 spaces Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* liblog4c-localtime: fix linking error without pthreadPeter Korsgaard2013-11-111-0/+29
| | | | | | | | | | | Fixes http://autobuild.buildroot.net/results/34f/34f238cdb1b1b4be1a11143b5e4a17c78c2fc289/ The rollingfile functionality only gets built if pthread support is available, but a call to these functions from log4c_fini() was outside the #if WITH_ROLLINGFILE conditional, causing linker errors when the library is used. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* libqmi: fix autobuild failuresSimon Dawson2013-11-111-0/+3
| | | | | | | | | | | | | The libqmi build specifies -Werror in the CFLAGS by default. This causes build failures such as the following. http://autobuild.buildroot.net/results/070/070449299aa9025c4bc6769524a6e22d66c92a65/ The -Werror flag can be disabled using a configuration switch. [Peter: use =no instead and add a comment explaining why] Signed-off-by: Simon Dawson <spdawson@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* ethtool: bump version to 3.12.1Thomas Petazzoni2013-11-111-1/+1
| | | | | | | | | | | | | | | | | | | | | | | 3.12 release notes: * Fix: Remove alternate method to check for VLAN tag offload on Linux < 2.6.37 (-k/-K options) * Fix: Hide state of VLAN tag offload and LRO if the kernel is too old for us to reliably detect them (-k option) * Feature: Add register dump support for Solarflare SFC9100 family (-d option) 3.12.1 release notes: This includes a couple of changes that should have gone into 3.12. * Fix: Memory corruption when applying external calibration to SFF-8472 module diagnostics (-m option) * Feature: Add Intel 82599 and x540 DCB registers to dump (-d option) Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* docs/manual: Add version number to perl in prerequisitesMischa Jonker2013-11-111-1/+1
| | | | | | | | Building host-bison needs perl 5.8.7+, as it uses the "-f" option for site customization scripts. This feature was added in 5.8.7. Signed-off-by: Mischa Jonker <mjonker@synopsys.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* pciutils: bump versionThomas Petazzoni2013-11-111-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | I have just released version 3.2.1 of the pciutils. It's purely a maintenance release with a couple of minor bug fixes and minor improvements. Thus quoth the changelog: 2013-11-10 Martin Mares <mj@ucw.cz> * Released as 3.2.1. * CardBus bridge capabilities are displayed. * PCIe L1 PM substates are decoded. * Various bugs were fixed in decoding of PCIe capabilities. * The sysfs back-end does not spit out unnecessary warnings when empty slots report only a partial device address. This actually happens on IBM pSeries. * Updated pci.ids to the today's snapshot of the database. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* log4cxx: needs threadsSimon Dawson2013-11-111-2/+4
| | | | | | | | | Fixes build failures such as the following. http://autobuild.buildroot.net/results/7b73901d9e8b5098cd96b54d292bb3ffffb3fe37/ Signed-off-by: Simon Dawson <spdawson@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* gst-plugins-ugly: bump versionPeter Korsgaard2013-11-111-1/+1
| | | | | | Bugfix release. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* gst1-plugins-bad: bump versionPeter Korsgaard2013-11-112-40/+1
| | | | | | Bugfix release. Patch is now upstream. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* gst1-plugins-good: bump versionPeter Korsgaard2013-11-112-47/+1
| | | | | | Bugfix release. Patch is now upstream. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* gst1-plugins-base: bump versionPeter Korsgaard2013-11-111-1/+1
| | | | | | Bugfix release. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* gstreamer1: bump versionPeter Korsgaard2013-11-111-1/+1
| | | | | | Bugfix release. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* iozone: disable for uClibc 0.9.31Simon Dawson2013-11-111-0/+1
| | | | | | | | | | | uClibc 0.9.31.x does not include the pthread_setaffinity_np GNU extension. Fixes build failures such as the following. http://autobuild.buildroot.net/results/e21526c0c18733310d3fb322d79d5fff3a71af51/ Signed-off-by: Simon Dawson <spdawson@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* imagemagick: bump versionPeter Korsgaard2013-11-111-1/+1
| | | | | | The -3 version is no longer available at the upstream URL. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* cppdb: fix comment dependencyPeter Korsgaard2013-11-111-0/+1
| | | | | | As noticed by Thomas De Schampheleir. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* cppdb: new packageGustavo Zacarias2013-11-113-0/+36
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* xmlstarlet: bump to version 1.5.0Axel Lin2013-11-111-1/+1
| | | | | Signed-off-by: Axel Lin <axel.lin@ingics.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* xmlstarlet: add license informationAxel Lin2013-11-111-0/+2
| | | | | | Signed-off-by: Axel Lin <axel.lin@ingics.com> Acked-by: Arnout Vandecappelle <arnout@mind.be> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* system: move init system option above /dev management.eric.le.bihan.dev@free.fr2013-11-111-29/+29
| | | | | | | | The option to choose init system was below the one for /dev management. As Systemd forces the use of udev, it is logical to swap them. Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/rpi-userland: bump versionYann E. MORIN2013-11-111-1/+1
| | | | | | | | Bump for a few more options (eg. setting the palette in 4- or 8bpp, and rendering camera preview with GL). Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/rpi-firmware: bump versionYann E. MORIN2013-11-111-1/+1
| | | | | | | | | | Bump bootloader and GPU firmware for misc fixes: - cec fixes - DTS buffering - others (pause_burst_frames enabled by default. WTF is that?) Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* p910nd: new packageGustavo Zacarias2013-11-113-0/+31
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* openpowerlink: bump to version 1.8.4Romain Naour2013-11-114-102/+2
| | | | | Signed-off-by: Romain Naour <romain.naour@openwide.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* libmodbus: bump version and change download locationYegor Yefremov2013-11-111-2/+4
| | | | | | | | | The license of libmodbus is LGPL v2.1 or later and the licence of programs in tests directory is GPL v3. So specify only LGPL v2.1. Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* hplip: bump to version 3.13.10Olivier Schonken2013-11-112-40/+1
| | | | | | | | Sections of the hplip-fix-make.patch patch file were removed, because they no longer appear in the Makefile.am file. Signed-off-by: Olivier Schonken <olivier.schonken@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* iptables: add support for connlabel match and nfnl_osfGustavo Zacarias2013-11-111-0/+10
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* ipset: bump to version 6.20.1Gustavo Zacarias2013-11-112-27/+1
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* imagemagick: bump to version 6.8.7-3Jerzy Grzegorek2013-11-111-1/+1
| | | | | Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* util-linux: disable fallocate for avr32Simon Dawson2013-11-111-0/+1
| | | | | | | | | | | The fallocate syscall is not implemented in the avr32 toolchain. Fixes build failures such as the following. http://autobuild.buildroot.net/results/bc4/bc41a3fea20181526eb247ac910244aa2aa4c4c0/ Signed-off-by: Simon Dawson <spdawson@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* uboot-tools: factor out common mkimage infrastructureArnout Vandecappelle2013-11-113-16/+20
| | | | | Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
OpenPOWER on IntegriCloud