summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* botan: requires a toolchain with threadsFrancois Perrad2014-10-111-2/+3
| | | | | | | fixes http://autobuild.buildroot.org/results/3df/3dfc002d8c19001dea4f13aa06cc6ec3f65fc4cb/ Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* vlc: fix build when Qt4 development files are installed on the hostThomas Petazzoni2014-10-101-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | When Qt4 development files are installed on the host, VLC uses /usr/bin/moc, /usr/bin/uic and /usr/bin/rcc when Qt support is enabled. However, those host installed versions are not necessarily compatible with the Qt version used in Buildroot, causes some build failures. This commit therefore passes explicit ac_cv_path_MOC, ac_cv_path_RCC and ac_cv_path_UIC variables to make sure the Qt host tools built by Buildroot are used. Note that the VLC configure.ac script uses 'pkg-config --variable=exec_prefix QtCore' to find the location of such tools, but this invocation returns /usr. One solution would have been to extend the pkgconf-01-fix-variable.patch we have against pkgconf to also cover exec_prefix, but this has more uncertain consequences than just fixing VLC. Fixes: http://autobuild.buildroot.org/results/061/06174eaeb7f2b8a591395e607912ad72623b79e3/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Cc: Bernd Kuhls <bernd.kuhls@t-online.de> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Tested-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/upmpdcli: bump to version 0.8.2Jörg Krause2014-10-103-200/+1
| | | | | | | Remove of uclibc and musl patches since they are upstream now. Signed-off-by: Jörg Krause <jkrause@posteo.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* nginx: Depends on MMUYuvaraj Patil2014-10-101-0/+2
| | | | | | | | | | | This package needs MMU. Hence added dependency on BR2_USE_MMU Fixes: http://autobuild.buildroot.net/results/224/2240f11fc52e07ff64913844078e2616842a63dc// [Peter: also add dependency to menuconfig option] Signed-off-by: Yuvaraj Patil <yuvaraj.patil@wipro.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* iw: bump to version 3.17Gustavo Zacarias2014-10-102-2/+2
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* wireless-regdb: bump to version 2014.10.07Gustavo Zacarias2014-10-102-2/+2
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* linux-headers: bump 3.{16, 14, 10}.x seriesGustavo Zacarias2014-10-101-3/+3
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* libgeotiff: add hash fileThomas Petazzoni2014-10-101-0/+2
| | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* libgeotiff: add license informationThomas Petazzoni2014-10-101-0/+2
| | | | | | [Peter: use X11-style instead of X-style] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* libgeotiff: explicit optional dependencies on zlib and jpegThomas Petazzoni2014-10-101-0/+14
| | | | | | | | In order to provide consistent behavior, this commit explicits the optional dependencies of libgeotiff on zlib and jpeg. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* libgeotiff: fix static linking issueThomas Petazzoni2014-10-102-1/+81
| | | | | | | | | | | | | | | | This commit adds a patch to improve the libgeotiff configure script to use pkg-config to detect libtiff, which allows to properly take into account dependant libraries such as libz and libjpeg. As a consequence, we now autoreconf the libgeotiff package, and add host-pkgconf as a dependency. Fixes: http://autobuild.buildroot.org/results/649/6498d6516a412b12d68fa9f6a66172021abadc34/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* libgeotiff: bump to version 1.4.0Thomas Petazzoni2014-10-091-1/+1
| | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* gcc/gcc-initial: fix build of the AVR32 toolchainThomas Petazzoni2014-10-091-2/+7
| | | | | | | | | | | | | | | | | | | | | | | | | Since we switched to a two stage gcc build process, the AVR32 toolchain stopped building. This is because with such an old gcc version, we cannot use the all-target-libgcc and install-target-libgcc targets. Before the two stage gcc, libgcc was only built in gcc-intermediate, which carried a similar logic. This commit basically restores in gcc-initial the logic that used to be in gcc-intermediate, which consists in using the all-target-libcc and install-target-libgcc targets only for gcc versions others than the AVR32 one. Using the BR2_GCC_SUPPORTS_FINEGRAINEDMTUNE option has a way of distinguishing the old AVR32 compiler from the other gcc versions is a bit ugly, but it's what was done in gcc-intermediate before. And since the AVR32 support is due to go away at some point in the hopefully near future, we don't care that much. This will fix the build of the two AVR32 defconfig that have been constantly failing since switching to the two stage gcc process. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* toolchain: external 3.17 headers typo fixKaroly Kasza2014-10-091-1/+1
| | | | | | | | | | Commit 2d312b7b61c98716535513a2743a85d4d7e8a084 had a typo "." instead of "_" in BR2_TOOLCHAIN_HEADERS_AT_LEAST_3.17. This made selecting 3.17 as custom external headers version impossible. Signed-off-by: Karoly Kasza <kaszak@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* botan: add type to BR2_PACKAGE_BOTAN_ARCH_SUPPORTS optionThomas Petazzoni2014-10-081-0/+1
| | | | | | | | | | | | | | Commit 1737af367993326ee47e847bd755806c8a78ced8 ('botan: limit to supported CPU architectures') introduced the BR2_PACKAGE_BOTAN_ARCH_SUPPORTS with a default value, but forgot to define a type, which leads to a kconfig warning: package/botan/Config.in:1:warning: config symbol defined without type This commit fixes that by properly setting the type. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* botan: limit to supported CPU architecturesThomas Petazzoni2014-10-081-0/+8
| | | | | | | | | | | | See src/build-data/arch/ for the list of supported CPU architectures. Fixes: http://autobuild.buildroot.org/results/69f/69fdecb06a03e6a95adfab70adf8ebf45971f0da/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Cc: Francois Perrad <fperrad@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* x264: fix non-standard indentation of variable definitionsThomas Petazzoni2014-10-081-5/+5
| | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* x264: fix typo in variable nameThomas Petazzoni2014-10-081-1/+1
| | | | | | | | | Fixes: http://autobuild.buildroot.org/results/d37/d37856be02bdff5711fc5d6fb1f3d4614fe5fed3/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* ARC: gcc - fixes for improperly calculated jump/branch offsetsAlexey Brodkin2014-10-084-0/+240
| | | | | | | | | | | | | | | | | | | | | | | Symptoms usually seen are like that: --->--- Error: operand out of range (128 is not between -128 and 127) --->--- where range may differ. Since compiler tries to use jump/branch instructions with the shortest encoding of offset it's important to calculate required offset properly. In case of miscalculation by compiler later assembler throws an error because of inability to encode requested value. Fixes are taken from current development branch of GCC for ARC and will be a part of the next release of ARC tools, so at that point patch should be dropped. Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com> Cc: Anton Kolesov <akolesov@synopsys.com> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Cc: Peter Korsgaard <peter@korsgaard.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* ulogd: only for kernels <= 3.16.xGustavo Zacarias2014-10-081-0/+3
| | | | | | | | | | The ulog netfilter target has been deprecated for some time and removed in kernels >= 3.17.x so limit it to older headers. Fixes: http://autobuild.buildroot.net/results/9ca/9ca43764c7363f9a00b8a0c7df20a492c00088b5/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* configs/qemu: enable tmpfs for custom configsGustavo Zacarias2014-10-0810-2/+16
| | | | | | | | | Enable TMPFS support for our custom qemu kernel configs, it's generally used and can lead to failures/confusion. Moreover enable ACL & XATTR TMPFS support for SystemD. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* linux-headers: bump 3.12.x seriesGustavo Zacarias2014-10-081-1/+1
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* jansson: bump to 2.7Yegor Yefremov2014-10-081-1/+1
| | | | | Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* quota: don't try to strip binaries during installationPeter Korsgaard2014-10-081-0/+1
| | | | | | | | | quota strips binaries during installation by default using 'install -s', but that uses the host strip so doesn't work for cross compilation, and stripping or not is handled globally in Buildroot during target-finalize, so disable it here. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* quota: bump to version 4.01Jerzy Grzegorek2014-10-083-3/+6
| | | | | | | | Also add hash file. [Peter: fix .hash comment typo] Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* quota: rename patchJerzy Grzegorek2014-10-081-0/+0
| | | | | Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* libmicrohttpd: bump to version 0.9.38Gustavo Zacarias2014-10-082-1/+3
| | | | | | | Also add hash file. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* sysklogd: security bump to version 1.5.1Gustavo Zacarias2014-10-083-13/+5
| | | | | | | | | | | | | Fixes CVE-2014-3634 - invalid priority values between 192 and 1023 (directly or arrived at via overflow wraparound) can propagate through code causing out-of-bounds access to the f_pmask array within the 'filed' structure by up to 104 bytes past its end. Switch to vanilla since Debian hasn't handled this yet and add hash file. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* procps-ng: bump to version 3.3.10Gustavo Zacarias2014-10-082-1/+4
| | | | | | | Also add hash file. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* bash: minor install tweaksGustavo Zacarias2014-10-081-10/+4
| | | | | | | | Remove the old symlink backup since we don't do uninstalls now. Make the busybox dependency conditional shorter. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/upmpdcli: Add patch to fix build error with muslJörg Krause2014-10-081-0/+40
| | | | | | | | | | Fix build error with musl: - Instead of using the nonstandard pthread_yield call use the standardized sched_yield. Signed-off-by: Jörg Krause <jkrause@posteo.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* configs/olimex_imx233_olinuxino: bump kernel to version 3.17Gustavo Zacarias2014-10-082-25/+4
| | | | | | | | The audio patch has not been upstreamed and no longer applies. [Peter: explain why patch is dropped] Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* botan: new packageFrancois Perrad2014-10-083-0/+73
| | | | | Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* ffmpeg: enable x264 supportDavid du Colombier2014-10-071-0/+7
| | | | | Signed-off-by: David du Colombier <0intro@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* x264: new packageDavid du Colombier2014-10-074-0/+115
| | | | | | | | This package is based on an earlier package proposed by Ayaka in December 2013. Signed-off-by: David du Colombier <0intro@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* slang: disable termcapGustavo Zacarias2014-10-072-0/+8
| | | | | | | | | | We don't have/do it and sometimes it misdetects. Fixes: http://autobuild.buildroot.net/results/ec9/ec9f1d7680aa50357d9a6646cef610dcaa1e8041/ Also add hash file. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* libva-intel-driver: add tarball hashPeter Korsgaard2014-10-071-0/+2
| | | | Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* libva: add tarball hashPeter Korsgaard2014-10-071-0/+2
| | | | Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/ffmpeg: Bump version to 2.4.2Bernd Kuhls2014-10-072-86/+1
| | | | | | | removed ffmpeg-0002-arm4-arm5.patch, applied upstream Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/libva-intel-driver: Bump version to 1.4.0Bernd Kuhls2014-10-071-1/+1
| | | | | Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/libva: Bump version to 1.4.0Bernd Kuhls2014-10-071-1/+1
| | | | | Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* ti-utils: link with pthread to avoid build failureYuvaraj Patil2014-10-071-1/+1
| | | | | | | | | | | Add '-lpthread' option to LIBS in ti-utils.mk file to link this package with pthread Fixes: http://autobuild.buildroot.net/results/132/132072d849a3ec572aa80e51833bf6906a54400a// Signed-off-by: Yuvaraj Patil <yuvaraj.patil@wipro.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* ser2net: Fix compilation failures due to missing TIOCSRS485 macroVicente Olivert Riera2014-10-071-0/+65
| | | | | | | | | | | | | | | | | | | | | | Apply a patch sent upstream to fix a compilation failure present on some architectures which do not define the TIOCSRS485 macro and do not include the <asm-generic/ioctls.h> header. This is how the error looks like: devcfg.c:781:34: error: 'TIOCSRS485' undeclared (first use in this function) Patch sent upstream: https://sourceforge.net/p/ser2net/mailman/message/32905302/ Fixes: http://autobuild.buildroot.net/results/5376a3f64c95f14449b956df006741ffeca1350b/ http://autobuild.buildroot.net/results/d182d94562a549c79c0c9fb01777a7cb83d7ab4c/ http://autobuild.buildroot.net/results/478c5ad2f5541adef4218ad485aab4d78cf29210/ Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Reviewed-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* ts5x00: bump to Linux 3.17Vivien Didelot2014-10-073-120/+2
| | | | | | | | | | The support for the TS-5400 platform is mainlined since Linux 3.17. This commit removes the outdated support patch and bumps the kernel headers (and thus Linux) to 3.17.x. Signed-off-by: Vivien Didelot <vivien.didelot@savoirfairelinux.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* openssh: mention release announcement in hash fileBaruch Siach2014-10-071-0/+2
| | | | | | | | Also, add sha1 hash from the announcement. Cc: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qemu/ppc64-pseries: update to the latest versionsGustavo Zacarias2014-10-072-4/+4
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qemu/ppc-virtex-ml507: update to the latest versionsGustavo Zacarias2014-10-072-7/+11
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qemu/ppc-mpc8544ds: update to the latest versionsGustavo Zacarias2014-10-072-5/+5
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qemu/ppc-g3beige: update to the latest versionsGustavo Zacarias2014-10-073-9/+7
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qemu/x86: update to the latest versionsGustavo Zacarias2014-10-073-6/+6
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
OpenPOWER on IntegriCloud