summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | gnutls: security bump to version 3.2.15Gustavo Zacarias2014-05-301-1/+1
| | | | | | | | | | | | | | Fixes GNUTLS-SA-2014-3 (CVE-2014-3466). Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | manual: Fix BR2_GLOBAL_PATCH_DIR exampleSebastien Roy2014-05-291-1/+1
| | | | | | | | | | | | | | | | | | As discussed on irc, there is a missing part in the BR2_GLOBAL_PATCH_DIR example compared to the ASCII figure under customize-packages section. Signed-off-by: Sebastien Roy <sebastien.roy@savoirfairelinux.com> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | qt5base: stop qt stripping installed librariesWill Wagner2014-05-291-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | By default the 'make install' step for qt5base will strip all the binaries and libraries when they are installed to staging. This hinders debugging as the libraries in staging dir have been stripped and is unnecessary as buildroot will strip all files on the target Signed-off-by: Will Wagner <will_wagner@carallon.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Reviewed-by: Fatih Aşıcı <fatih.asici@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | thrift: disable for ARCBaruch Siach2014-05-291-0/+2
| | | | | | | | | | | | | | | | thrift uses the __sync_fetch_and_add() atomic primitive that is not available for ARC. Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | libfribidi: depend on host-pkgconfBaruch Siach2014-05-291-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | libfribidi needs macros from pkgconf to generate its configure script. Since commit 5693f236a2a0 (libfribidi: bump version) we AUTORECONF, so host-pkgconf is also needed. Fixes: http://autobuild.buildroot.net/results/5d7/5d76a8333fb05e903460ad51dc0737c18431d033/ Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | sysklogd: needs MMUBaruch Siach2014-05-291-0/+2
| | | | | | | | | | | | | | | | Fixes: http://autobuild.buildroot.net/results/bf1/bf1a6e1d4798c5abea4ff5114279329d6d90548f/ Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | u-boot: use spl/u-boot-spl.bin as default spl filePeter Korsgaard2014-05-291-2/+2
| | | | | | | | | | | | | | | | Ever since u-boot introduced the generic spl support in u-boot 2012.10, the default spl output file has been spl/u-boot-spl.bin and not u-boot-spl.bin, so use that as a more sane default value. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | manual: remove contributor list and add copyrightThomas De Schampheleire2014-05-291-7/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | As discussed on the mailing list [1], remove the limited explicit list of contributors in favor of the general mention of 'The Buildroot developers'. Add a copyright statement. Move the generation info to the front. [1] http://lists.busybox.net/pipermail/buildroot/2014-May/097589.html [Peter: remove trailing +, minor rewording] Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | package/exim: security bumpYann E. MORIN2014-05-281-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | Bump exim to get an urgent security fix. We should not be impacted, since we're not building with DMARC (where the flaw is), but better safe than sorry. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Gustavo Zacarias <gustavo@zacarias.com.ar> Tested-by: Luca Ceresoli <luca@lucaceresoli.net> Acked-by: Luca Ceresoli <luca@lucaceresoli.net> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | fs/tar: use qstrip to clean up build outputThomas De Schampheleire2014-05-281-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | When using the tar filesystem method, the build output shows at the end: echo " tar -c""f <br>/output/images/rootfs.tar -C <br>/output/target ." >> <br>/output/build/_fakeroot.fs The inner set of quotes can be easily removed by properly stripping the tar options (coming from the buildroot configuration). Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Acked-by: Romain Naour <romain.naour@openwide.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | infra: permissions/users/device tables: avoid adding empty entriesThomas De Schampheleire2014-05-281-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In pkg-generic.mk, an entry would be added to each of the permissions, devices and users tables, even if FOO_PERMISSIONS/DEVICES/USERS is empty. In that last case, the entry would contain only the separator, which is substituted to '\n' in fs/common.mk. For configurations with many packages, this would render the build output a bit odd, containing many \n instances (even though the end result in the target would of course be the same). This patch cleans up the build output by only adding to these tables when the package actually specified contents for them. Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Tested-by: Romain Naour <romain.naour@openwide.fr> Acked-by: Romain Naour <romain.naour@openwide.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | Update for 2014.05-rc3Peter Korsgaard2014-05-284-6/+34
| | | | | | | | Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | dropbear: fix missing directory with systemdMaxime Hadjinlian2014-05-282-4/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | The current SysV startup script create a directory which is necessary for dropbear to correctly work. This creation is not done with systemd. Instead of both init creating the directory, we add the creation of this directory to the INSTALL_TARGET_CMDS to make sure it's present. [Peter: use make syntax for TARGET_DIR as pointed out by Thomas] Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | package/exim: fix static linkingYann E. MORIN2014-05-281-2/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes http://autobuild.buildroot.net/results/0a3/0a392087878f80a70435981856455a30152b684d/ When building static, we need to tell exim that it needs to link statically (obviously), and that it should link against pthreads. Yet, exim is still not happy with that, as it still wants to build something (a version-related program) at install time, so we need to replicate the ld flags at install time. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | monit: uses fork(), disable for nommuPeter Korsgaard2014-05-281-0/+2
| | | | | | | | Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | manual: explicitize manual licenseThomas De Schampheleire2014-05-271-0/+5
| | | | | | | | | | | | | | | | | | | | People reading the Buildroot manual online cannot immediately know what its license is (unlike reading it from within the source tree). To avoid any discussion, explicitize this in the manual. Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | dvb-apps: fix static linking with libiconvPeter Korsgaard2014-05-271-4/+2
| | | | | | | | | | | | | | | | | | Fixes http://autobuild.buildroot.net/results/4b5/4b56b89dd0ccd3b7e4017782e8d48b9c71207ff7/ Pass the libraries to be linked in LDLIBS instead of LDFLAGS so the end up after the object files on the linker command line. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | gdb: remove remaining 6.6a reference for bfinPeter Korsgaard2014-05-271-2/+0
| | | | | | | | | | | | | | | | | | | | | | Fixes http://autobuild.buildroot.net/results/3e2/3e2b733758651f7a168832de2d3b34afc171609d/ We recently (dfc3cc23af: gdb: switch to 7.x for Blackfin) moved to the normal 7.x versions for bfin, but Config.in wasn't updated, causing bfin to still use the old 6.6a variant (but without the uClibc patch) if the host-gdb isn't selected, breaking the build. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | gdb: don't force makeinfo programs for GDB_FROM_GIT variantsPeter Korsgaard2014-05-271-4/+4
| | | | | | | | | | | | | | | | | | | | | | Fixes: http://autobuild.buildroot.net/results/16d/16d4a83eb1e1b9d65641de47f2a2bc5d8ab18bdd/ http://autobuild.buildroot.net/results/df6/df64fe6e834f016267f522f089e00a08b1fd893e/ The GDB_FROM_GIT variants unconditionally use makeinfo, so ensure our host-texinfo version is used instead of the missing script. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | libnss: Enable for MIPS64 n32 platformsVicente Olivert Riera2014-05-262-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | After talking with upstream we concluded that MIPS64 n32 is treated as a 32-bit architecture by libnss because it has 32-bit pointers, so USE_64=1 should not be set in that case. Upstream bug: https://bugzilla.mozilla.org/show_bug.cgi?id=1010730 WRT: http://git.buildroot.net/buildroot/commit/?id=73e6ae0fe6a69f88183ae33401f2314088b5f799 Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | midori: force host-python dependency for waf build-systemPeter Korsgaard2014-05-261-3/+4
| | | | | | | | | | | | | | | | | | Fixes http://autobuild.buildroot.net/results/d48/d48b68dd6a43fa9a224237e8f458ca8987a3d7b4/ Similar to the recent fix to jack2 (fc8fcec306da). The waf version included in midori (1.5.19) is not compatible with python 3.4. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | slang: needs mmuPeter Korsgaard2014-05-262-0/+3
| | | | | | | | | | | | Fixes http://autobuild.buildroot.net/results/dbc/dbce9e591466717d9c87f42b5f192d8fd1be0475/ Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | python2: Fix disabling module bsddbBernd Kuhls2014-05-261-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Using this minimal defconfig BR2_TOOLCHAIN_EXTERNAL=y BR2_PACKAGE_PYTHON=y BR2_PACKAGE_BERKELEYDB=y the current code does not prevent the build of output/build/python-2.7.6/Modules/_bsddb.o because the module is really called _bsddb, see python-2.7.6/Modules/_bsddb.c, line 9604. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | acl: clarify license infoPeter Korsgaard2014-05-261-1/+1
| | | | | | | | | | | | As pointed out by Thomas Petazzoni in his review. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | attr: clarify license infoPeter Korsgaard2014-05-261-1/+1
| | | | | | | | | | | | As pointed out by Thomas Petazzoni in his review. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | xbmc: Add missing unicode properties supportsMaxime Hadjinlian2014-05-251-0/+1
| | | | | | | | | | | | | | | | | | At startup, XBMC complains that PCRE is lacking unicode properties supports. Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Tested-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | hwdata: add license informationHeiko Abraham2014-05-251-0/+2
| | | | | | | | | | | | | | Add missing license info and file for package 'hwdata' [Peter: GPLv2 should be '+' variant, clarify that it is dual licensed] Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | attr: add license informationHeiko Abraham2014-05-251-0/+2
| | | | | | | | | | | | | | Add missing license info and file for package 'attr' [Peter: change to '+' version of licenses] Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | acl: add license informationHeiko Abraham2014-05-251-0/+2
| | | | | | | | | | | | | | Add missing license info and file for package 'acl' [Peter: change to '+' version of licenses] Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | website: add alt-tags to imagesThomas De Schampheleire2014-05-252-2/+4
| | | | | | | | | | Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | website: fix typos and HTML on support pageThomas De Schampheleire2014-05-251-16/+16
| | | | | | | | | | | | | | | | Fix a few typos on the support page, and add correct HTML <p> </p> tag pairs. Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | website: remove remaining references to uclibc.orgThomas De Schampheleire2014-05-253-3/+3
| | | | | | | | | | | | | | | | The website still used some uclibc.org URLs which can now use buildroot.org. Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | website: rework Contribute page to avoid duplication with manualThomas De Schampheleire2014-05-251-33/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | The manual contains details about how users can contribute to buildroot. The website also had such a list, but with much less detail and not containing all topics. In order to avoid duplicating this information, simply list the different topics without detail on the website, and add a link to the relevent chapter of the manual. [Peter: slightly reword] Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | package/rpi-userland: bump versionYann E. MORIN2014-05-251-1/+1
| | | | | | | | | | | | | | | | Important fix to EGL surface validation. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | php: fix more iconv related build failuresGustavo Zacarias2014-05-251-24/+57
| | | | | | | | | | | | | | | | | | See php-01-no-iconv.patch for the gory details. Fixes: http://autobuild.buildroot.net/results/1c9/1c9bdfe55288430dca80a1bb514b85353d2f1c54/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Tested-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | lesstif: needs MMUBaruch Siach2014-05-251-0/+1
| | | | | | | | | | | | | | | | Fixes: http://autobuild.buildroot.net/results/9f7/9f718c9c9907d9aa2a7a0c45c872f5a8f34b8399/ Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | config: kernel.org is now https-onlyYann E. MORIN2014-05-241-1/+1
| | | | | | | | | | | | | | | | Every requests on kernel.org gets redirected to https. So just set our kernel.org settings straight to begin with. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | package/samba{,4}: disable on nios2Yann E. MORIN2014-05-232-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | samba produces particularly large binaries, and the relocations needed for it do not fit in the possible relocation mechanisms available on nios2. Since samba is very unlikely to be used on nios2, let's just disable it, as we've done for AVR32. Fixes: http://autobuild.buildroot.net/results/7b9/7b9dcb537f98714fe57fe384ecbb49bd9ae52aee/ Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Gustavo Zacarias <gustavo@zacarias.com.ar> Acked-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | package/connman: update homepageYann E. MORIN2014-05-231-1/+1
| | | | | | | | | | Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | mplayer: Add support for ARCAnton Kolesov2014-05-232-2/+15
| | | | | | | | | | | | | | | | | | | | | | | | This patch adds support for ARC architecture in Mplayer's configure script. Same patch has been submitted to upstream MPlayer. This patch should be removed after Buildroot will bump to next version of MPlayer (after 1.1.1). Fixes http://autobuild.buildroot.net/results/f62/f62ace7ba49d492ea224bb8f3beb547389aab517/ [Peter: add autobuilder link] Signed-off-by: Anton Kolesov <Anton.Kolesov@synopsys.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | rdesktop: security bump to version 1.8.2Gustavo Zacarias2014-05-232-4/+13
| | | | | | | | | | | | | | | | Long overdue, fixes CVE-2008-1801, CVE-2008-1802, CVE-2008-1803 and CVE-2011-1595. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | lttng-babeltrace: needs posix_fallocateBaruch Siach2014-05-231-2/+4
| | | | | | | | | | | | | | | | Fixes: http://autobuild.buildroot.net/results/d8b/d8b5ccc643fe0fb5577392fed37e05b89d4a3951/ Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | httping: fix static linking when libintl+libiconv are enabledPeter Korsgaard2014-05-231-1/+4
| | | | | | | | | | | | | | | | | | Fixes http://autobuild.buildroot.net/results/365/365d6be787c5560aa1daa28065668261e1171d24/ If libiconv is enabled, libintl will contain references to it, so we need to explicitly link against it when statically linking against libintl. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | system/timezone: check localtime existsYann E. MORIN2014-05-222-0/+10
| | | | | | | | | | | | | | | | | | When installing a localtime, check it is a valid timezone. [Peter: extend error message to make it clear to the user what to change] Reported-by: Sagaert Johan <sagaert.johan@skynet.be> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | ruby: disable openssl for host variantGustavo Zacarias2014-05-221-1/+2
| | | | | | | | | | | | | | | | | | | | | | As reported by Fatih Aşıcı on the mailing list it sometimes fails with the host openssl depending on versions when development files are installed. And as suggested by Thomas Petazzoni it's really not required for anything so just disable it. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | dosfstools: fix static linking with libiconvPeter Korsgaard2014-05-221-4/+2
| | | | | | | | | | | | | | | | | | | | | | | | Fixes http://autobuild.buildroot.net/results/246/246c067f1e9def748498f0c6fa6988c036e1d109/ Pass the libraries to be linked in LDLIBS instead of LDFLAGS so the end up after the object files on the linker command line. While we are at it, use TARGET_CONFIGURE_OPTS instead of explictly passing CC/CFLAGS/LDFLAGS. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | flite: fix static linking against alsaBaruch Siach2014-05-222-0/+22
| | | | | | | | | | | | | | | | Fixes: http://autobuild.buildroot.net/results/3ff/3ff2217a4fccbddbdb2bc8ade68c88fc52848d36/ Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | libv4l: needs mmuGustavo Zacarias2014-05-222-0/+4
| | | | | | | | | | | | | | | | Fixes: http://autobuild.buildroot.net/results/989/989d32f3532283817e9439aa78cceff5983dc421/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | Update for 2014.05-rc2Peter Korsgaard2014-05-214-6/+58
| | | | | | | | Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* | wpa_supplicant: fix internal TLS implementation security issuesBaruch Siach2014-05-213-0/+140
| | | | | | | | | | | | | | | | Add upstream patches fixing internal TLS validation of X.509 certificates. See http://lists.shmoo.com/pipermail/hostap/2014-May/030273.html for details. Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
OpenPOWER on IntegriCloud