summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* package/clamav: fix build with uClibcYann E. MORIN2014-11-161-0/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | clamav wants to use backtrace, and decides whether it can use it if it detects a glibc >= 2.1. But uClibc does impersonate a glibc >= 2.1, so clamav concludes it is possible to use backtrace. So it includes execinfo.h, which is missing in our default uClibc config file. So, just extend the test so that backtrace support is disable on uClibc, unless it has been configured with backtrace support. A far better solution would be to add a ./configure check for backtrace, but this patch is sufficient enough. Fixes: http://autobuild.buildroot.net/results/cff/cffa32fcedda735983d4805d6d4fa77844539b10/ http://autobuild.buildroot.net/results/e0a/e0a765a94a538b0b936ea512f7aba0264fac6309/ ... Bugtracker: https://bugzilla.clamav.net/show_bug.cgi?id=11170 [Peter: add bugtracker URL as suggested by Bernd] Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Acked-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/libv4l: needs headers >= 3.0Yann E. MORIN2014-11-161-2/+4
| | | | | | | | | | | | | | | | libv4l includes linux/media.h, which was introduced in v.2.6.39. So, require at least 3.0 to be sure, since we have toolchains (like the Code Sourcery Powerpc 2011.03) that still use 2.6.38 headers. Fixes: http://autobuild.buildroot.net/results/ff7/ff7977c1cea0edfd230e12b74fc2c34bac7a0e4e/ http://autobuild.buildroot.net/results/2bd/2bd30d942ec718e0a46ba2d1c043c9b6e2e6578b/ http://autobuild.buildroot.net/results/c37/c371f4de7ec4b959310ca8e08cf289385fa0feae/ ... Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/duma: add missing define when installingYann E. MORIN2014-11-161-2/+2
| | | | | | | | | Commit 3ab9774 (package/duma: do not let Makefile guess OS) added a define to not let duma's build system guess the OS, mostly to avoid a warning, but forgot to add that same define to the install commands. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* packae/duma: do not build test programsYann E. MORIN2014-11-162-0/+19
| | | | | | | | | | | | | | | | | Building test programs fails for a static link, because duma.a redefines memcpy and strcpy, which are already present in the C library. Fixes quite some build failures: http://autobuild.buildroot.net/results/3c7/3c7a4751c7ca71ad429c2d67f380aa225f151350/ (arm) http://autobuild.buildroot.net/results/358/358293d22ae24237719f0aa27e88e87d03856973/ (x86_64) http://autobuild.buildroot.net/results/947/9472d78b890639d3204e1942491f1eae62fb8a36/ (powerpc) http://autobuild.buildroot.net/results/ffd/ffd2e7ab7a6045f5eeaa25cd25088ad0a5b6509a/ (i686) ... Also rename patches according to the new naming scheme. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/aircrack-ng: fix static buildYann E. MORIN2014-11-161-2/+3
| | | | | | | | | | | | | | | | | | | | | | Two fixes in one: - openssl's libcrypto needs -lz, but because aircrack-ng does not use pkg-config, it misses this dependency. The proper fix would be to use pkg-config, like is done for pcre with patch 0001-Makefile-use-pkg-config-to-find-libpcre-it-s-more-cros.patch but adding -lz is much easier. - sqlite needs -lpthread, so -lpthread must be added _after_ -lsqlite, but we currently add it before. So, force -lpthread after -lsqlite when we are doing a static build. Fixes: http://autobuild.buildroot.net/results/1ea/1ea877851e9d2aeeaf9d320bef12321ec2925b5b/ http://autobuild.buildroot.net/results/cdf/cdf0203fc99d5f7e41e508f6d9edb78a0f0ea732/ Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* host-qemu: fix installFrancois Perrad2014-11-151-1/+1
| | | | | | | | at configure time, PREFIX is already set with $(HOST_DIR)/usr so, don't use DESTDIR Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* iputils: fix openssl selectGustavo Zacarias2014-11-151-1/+1
| | | | | | | It's BR2_PACKAGE_OPENSSL, not BR2_OPENSSL... oops! Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* dovecot: fix static buildBaruch Siach2014-11-141-0/+24
| | | | | | | | | | Add a patch removing reference to MODULE_SUFFIX when it is undefined. Fixes: http://autobuild.buildroot.net/results/c68/c6844bbffff1cd4f738a5fced011d28f73c90b16/ Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* botan: disable for static buildsFrancois Perrad2014-11-141-2/+3
| | | | | | | | | it tries to include <dlfcn.h> see http://autobuild.buildroot.net/results/2d1/2d1563e253b669b45c9df449c5b3a750c04a43dc/ Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/sysvinit: drop tty1/2Gustavo Zacarias2014-11-141-3/+0
| | | | | | | | We don't do it for busybox init so do the same for consistency here. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/qt5webkit: fix build failureSamuel Martin2014-11-141-0/+31
| | | | | | | | | | This patch fixes build failure when the host python interpreter is python3. Fixes: http://autobuild.buildroot.net/results/af8/af8f3d3cc018006cee58d57cd9e8c6d8b3de3247/ Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/qt5webkit: rename patch to the new conventionSamuel Martin2014-11-141-0/+0
| | | | | Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* dbus: security bump to version 1.8.10Gustavo Zacarias2014-11-142-1/+3
| | | | | | | | Fixes: CVE-2014-7824 - Denial of service via incomplete fix for CVE-2014-3636 Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* php: security bump to version 5.5.19Gustavo Zacarias2014-11-142-2/+2
| | | | | | | | | | Fixes: CVE-2014-3710 - fileinfo: out-of-bounds read in elf note headers. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Reviewed-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Tested-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* docs/manual/resources.txt: fix patchwork linkPeter Korsgaard2014-11-131-1/+1
| | | | | | | The patchwork website needs the trailing slash, otherwise it returns a 404. Reported-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* doc/news.html: fix html tag closingPeter Korsgaard2014-11-131-1/+1
| | | | | | From the recent dev days meeting report addition. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* python3: don't use wcsftime() on uClibcThomas Petazzoni2014-11-131-0/+6
| | | | | | | | | | | As investigated in bug #7646, wcsftime() doesn't work properly with uClibc. Until it gets fixed in uClibc, let's tell Python 3 to not use it. Python 3 will fall back to strftime(), which works properly. [Peter: fix typo in comment] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Cc: Beyonlo <beyonlo@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* docs/news.html: add link to report from ELCE developers daysPeter Korsgaard2014-11-131-0/+16
| | | | | | And annonce the next one as well. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* docs/news.html: add 2014.11-rc1 announcement linkPeter Korsgaard2014-11-131-1/+2
| | | | Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* ruby: security bump to version 2.1.5Gustavo Zacarias2014-11-132-3/+3
| | | | | | | | Fixes: CVE-2014-8090 - Another Denial Of Service XML Expansion. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* wireshark: security bump to version 1.12.2Gustavo Zacarias2014-11-132-4/+4
| | | | | | | | | | | | Fixes: CVE-2014-8710 - SigComp UDVM buffer overflow. CVE-2014-8711 - AMQP crash. CVE-2014-8712 - NCP crashes. CVE-2014-8713 - NCP crashes. CVE-2014-8714 - TN5250 infinite loops. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* libmemcached: disable sanitizerGustavo Zacarias2014-11-133-1/+26
| | | | | | | | | The tests are flawed and we don't generally enable a dozen hardening CFLAGS automatically. Fixes: http://autobuild.buildroot.net/results/a84/a84ab4f0fdea6bbab971ba379e3066cddb25bfaa/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qt5base: unconditionally install network, sql, xml and test modules to targetPeter Korsgaard2014-11-131-12/+4
| | | | | | | | | | | | The qt5 build system currently unconditionally builds and installs into staging these libraries, so ensure they also get installed into target to make sure we don't end up with dynamic linker errors at runtime. From src.pro: SUBDIRS += src_network src_sql src_xml src_testlib Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* qt5base: unconditionally install Qt5printSupport if widgets are enabledPeter Korsgaard2014-11-131-4/+2
| | | | | | | | | | | | | | | | | | | | | | | The qt5 build system currently unconditionally builds and installs into staging Qt5PrintSupport if widgets are enabled, so ensure it also gets installed into target to make sure we don't end up with dynamic linker errors at runtime: test: error while loading shared libraries: libQt5PrintSupport.so.5: cannot open shared object file: No such file or directory From src.pro: !contains(QT_CONFIG, no-gui) { .. !wince*:!winrt { SUBDIRS += src_printsupport src_plugins.depends += src_printsupport } } Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* schifra: mark as brokenThomas Petazzoni2014-11-131-0/+5
| | | | | | | | | | | There are many build failures caused by schifra, due to upstream changing the tarball without doing new releases. Since has been an on-going problem for some time, and is now the #1 issue in the autobuilders. So let's mark this package broken, until someone cares enough to fix it, or until we remove it. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* Update for 2014.11-rc1Peter Korsgaard2014-11-124-9/+22
| | | | Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* CHANGES: update with recent changesPeter Korsgaard2014-11-121-0/+23
| | | | Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/shairport-sync: fix avahi dependencyJörg Krause2014-11-121-2/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | shairport-sync uses mDNS to pubish its service. This task is implemented (among others) in avahi and tinysvcmdns. To use avahi as the mDNS backend, shairport-sync requires libavahi-client or libdns_sd. Both will work, but libavahi-client is sufficient. To get libavahi-client support from avahi BR2_PACKAGE_AVAHI_DAEMON and BR2_PACKAGE_DBUS needs to be selected. Unfortunatly this is not immediately obvious if you've not checked avahis configure file. A BR2_PACKAGE_LIBAVAHI_CLIENT config symbol may help here for clarification, but is not present yet. Fixes autobuild errors: - http://autobuild.buildroot.net/results/a6a/a6ab7641a3cafcdaeffe11f08d5fcacbbb882d8d/ - http://autobuild.buildroot.net/results/cb4/cb41980f2fb416d627bea0950e1dae727eae0ca6/ - http://autobuild.buildroot.net/results/009/00929df01474813be576936e80e86374efdbc327/ - http://autobuild.buildroot.net/results/a40/a40b8cf9aaa4ade4d96524219276cfad2920104c/ - http://autobuild.buildroot.net/results/03f/03fff2805b3348f2557bbef73a716eadea3add03/ and some more. Signed-off-by: Jörg Krause <jkrause@posteo.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* bmon: uclinux is also linuxGustavo Zacarias2014-11-122-0/+27
| | | | | | | | Fixes: http://autobuild.buildroot.net/results/4d0/4d0c3c8b68b37f532378f19041379cb5c5798950/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* libmemcached: disable libmudflapth supportGustavo Zacarias2014-11-121-1/+3
| | | | | | | | | | We're not handling it (copying it) for external toolchains and it's causing build failures. Fixes: http://autobuild.buildroot.net/results/9d1/9d1e414850307487d65435216ae0ddee56d1098f/ http://autobuild.buildroot.net/results/f08/f08c8e5514e054397428677f08fadac5386189dc/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* CHANGES: update with recent changesPeter Korsgaard2014-11-121-0/+207
| | | | | | The description of important changes still needs to be added. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* sysv init scripts: fix == bashismAndré Erdmann2014-11-1112-27/+27
| | | | | | | | | | | | | | | | | test a == b is not available in e.g. dash. Command(s) used for editing: q=\[\"\'\] operand="${q}?[$]?[a-zA-Z0-9_\?]+${q}?" ## doesn't detect ${VAR} test_expr="(\[\s+${operand}\s+)==(\s+${operand}\s+\])" find . -type f -name '[SK][0-9][0-9]*' | \ xargs sed -r -e "s@${test_expr}@\1=\2@g" -i Signed-off-by: André Erdmann <dywi@mailerd.de> Acked-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* configs/apf9328: bump to a modern kernelThomas Petazzoni2014-11-113-47/+5
| | | | | | | | | | | | | | | | | | Since the apf9238 support is in the mainline kernel, we can bump to kernel 3.17.2. The patches can be removed because: - linux-3.1.1-0001-fixes_arm_mach-types_for_apf9328.patch is no longer needed, since the machine number for apf9328 is now upstream. - linux-3.1.1-0002-add_missing_config_option_for_apf9328.patch is no longer needed, because the MTD_CFI_INTELEXT option is selected by the imx_v4_v5_defconfig. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* configs/apf9328: use default gcc versionThomas Petazzoni2014-11-111-1/+0
| | | | | | | | | The gcc 4.4 version has been deprecated recently, so we cannot use it anymore. Since this platform is just using a normal ARM processor with nothing special, we can expect the default gcc version to just work. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* configs/apf9328: don't use sstripThomas Petazzoni2014-11-111-1/+0
| | | | | | | | There is no reason in a defconfig to select sstrip specifically, so let's get rid of it. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* tcpdump: fix static buildBaruch Siach2014-11-111-0/+4
| | | | | | | | | | | | | Commit 746116d1eb2e (tcpdump: use libpcap shared library) broke static build of tcpdump, because its configure script doesn't take into account indirect dependencies of libpcap. Add these dependencies to the LIBS configure parameter. Fixes: http://autobuild.buildroot.net/results/fd231d34e4bb0306609b021e9e74eb862b7bd6bd/ Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* aircrack-ng: security bump to version 1.2-rc1Gustavo Zacarias2014-11-116-39/+115
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes: CVE-2014-8321 - gps_tracer stack overflow CVE-2014-8322 - tcp_test length parameter inconsistency CVE-2014-8323 - buddy-ng missing check in data format CVE-2014-8324 - net_get missing check for invalid values Previous CVE patch dropped since the fix is upstream. Also add hash file. Drop iw runtime dep since it's only one of many required by airmon-zc (a script) which require a ton of conditionals for just that tool. It will tell somewhat nicely if they're missing. These would be: awk - from busybox or gawk ethtool grep - from busybox or grep ip or ifconfig - from busybox, iproute2 or net-tools iw lspci - from pciutils (needs full variant) lsusb - from usbutils (needs full variant) modprobe/modinfo - from busybox or kmod uname - from busybox or coreutils [Peter: drop double -lpthread from sqlite conditional] Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* zeromq: security bump to version 4.0.5Gustavo Zacarias2014-11-113-1/+4
| | | | | | | | | | | | | Fixes: CVE-2014-7202 - stream_engine.cpp in libzmq (aka ZeroMQ/C++)) 4.0.5 before 4.0.5 allows man-in-the-middle attackers to conduct downgrade attacks via a crafted connection request. CVE-2014-7203 - libzmq (aka ZeroMQ/C++) 4.0.x before 4.0.5 does not ensure that nonces are unique, which allows man-in-the-middle attackers to conduct replay attacks via unspecified vectors. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* docs/manual: cleanup github helper docsYann E. MORIN2014-11-111-1/+2
| | | | | | | | | | | | | Explicitly state that the github helper should not be used when there is a release tarball. Properly render the list by separating it from the previous paragraph. [Peter: fix typo as pointed out by Maxime] Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Acked-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* alsa-utils: fix linking with intlVicente Olivert Riera2014-11-112-5/+6
| | | | | | | | | | | | | | | | | | | | alsa-utils needs to link with intl if the toolchain needs gettext and locale is set. Otherwise we will see an error like this one: alsamixer-cli.o: In function `main': cli.c:(.text.startup+0x4d): undefined reference to `libintl_textdomain' cli.c:(.text.startup+0xc1): undefined reference to `libintl_gettext' cli.c:(.text.startup+0xd5): undefined reference to `libintl_gettext' cli.c:(.text.startup+0xe9): undefined reference to `libintl_gettext' cli.c:(.text.startup+0x1fd): undefined reference to `libintl_gettext' cli.c:(.text.startup+0x223): undefined reference to `libintl_gettext' Fixes: http://autobuild.buildroot.net/results/707/707016a2490fc97b98d17e2b6a9c6423a56bb4a9/ [Peter: correct autobuilder reference] Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* nodejs: disable ssl2 and ssl3 when openssl is not builtFabio Porcedda2014-11-111-1/+2
| | | | | | | | | | | | | | | | | | The nodejs version 0.10.33 is compiled with SSLv2 and SSLv3 protocol support by default so it fails to build if the package openssl was not built. To fix this build failure disable SSLv2 and SSLv3 protcol suppport if the openssl package is not built. Fixes: http://autobuild.buildroot.net/results/e1fb34818ff1167aa008b4011befb9fd14c81293 http://autobuild.buildroot.net/results/8b72b0c311f2f7f7430aca5f7cca1f7d82d1c213 http://autobuild.buildroot.net/results/e5f87dc635e0e6a6d1cc234529a433e12d810097 http://autobuild.buildroot.net/results/3c4a5be556cfbd0d0e632757887ebc2f1de64bba Signed-off-by: Fabio Porcedda <fabio.porcedda@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* util-linux: re-enable libmount and binaries on MicroblazeThomas Petazzoni2014-11-111-4/+0
| | | | | | | | | | | | | | | | | | | | | | In commit 442aa88f95d6c4a921aa3d4de91f54d50bd0cd35 ("util-linux: bump version and revamp options"), Gustavo disabled util-linux libmount and binaries on microblaze, as it was not building properly. However, as mentionned in the comment, these options were disabled on Microblaze due to "libc lacks UTIME_NOW & UTIME_COMMIT for libmount". This was true specifically for the microblaze external toolchain that we were using at the time. But we are no longer using this external toolchain (which proved to be broken in many ways), and have microblaze support in our internal backend. I have verified that with our internal toolchain, util-linux with libmount and the binaries enabled builds fine. Those options are not selected by anything else in Buildroot, so there's no other package impacted by this dependency change. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* mpd: bump to version 0.19.3Gustavo Zacarias2014-11-112-2/+2
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* toolchain-external: update Linaro toolchainsThomas Petazzoni2014-11-112-13/+13
| | | | | | | | | | | Bump the ARM, ARMeb and AArch64 Linaro toolchains from 14.08 to 14.09. We can't bump to 14.10, because they completely changed the toolchains and they are now completely broken: they switched from Crosstool-NG to a new build tool to generate the toolchain, and now the sysroot handling is completely borked. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* rt-tests: bump version to 0.89Alexey Brodkin2014-11-113-49/+64
| | | | | | | | | | | | | | | | | | With this change we're moving to the latest version of rt-tests. Existing patches were updated so they apply on sources without errors and warnings. In "01-fix-build-system.patch" CFLAGS substitution was removed because now external CFLAGS are accepted: http://git.kernel.org/cgit/linux/kernel/git/clrkwllms/rt-tests.git/commit/?id=dfcef6e557b7980a33aa30b45bde196ed1780eb1 Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Cc: Peter Korsgaard <peter@korsgaard.com> Cc: Arnout Vandecappelle <arnout@mind.be> Cc: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* rt-tests: switch site from Debian snapshot to Linux's gitAlexey Brodkin2014-11-111-3/+2
| | | | | | | | | | | | | | | | Origin of "rt-tests" is: git://git.kernel.org/pub/scm/linux/kernel/git/clrkwllms/rt-tests.git Switching to this new "origin" simplifies version bumping because there's no need in updating Debian snapshot folder as it was done already here: http://git.buildroot.net/buildroot/commit/package/rt-tests?id=da330e508c2d95e898ac52a2aa39426a5f6d0506 Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Cc: Peter Korsgaard <peter@korsgaard.com> Cc: Arnout Vandecappelle <arnout@mind.be> Cc: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* rt-tests: rename patch to the new conventionAlexey Brodkin2014-11-112-0/+0
| | | | | | | | | | | | As a preparation to the introduction of an additional patch to rt-tests, let's rename the existing patch to the new naming convention. Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Cc: Peter Korsgaard <peter@korsgaard.com> Cc: Arnout Vandecappelle <arnout@mind.be> Cc: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* libgtk3: bump version to 3.14.5Vicente Olivert Riera2014-11-113-1/+60
| | | | | | | | | | - Bump version to 3.14.5 - Add a hash file - Add a new patch to fix a regression Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* libgtk3: rename patches to follow the new name structureVicente Olivert Riera2014-11-115-0/+0
| | | | | | Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* pciutils: bump to version 3.3.0Gustavo Zacarias2014-11-112-2/+2
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
OpenPOWER on IntegriCloud