summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* logrotate: bump to version 3.11.0Adam Duskett2017-02-074-85/+2
| | | | | | | | | Also removed both patches as they have been added to this release. Aslo removed reference to github patch in makefile as it has been added to this release as well. Signed-off-by: Adam Duskett <Adamduskett@outlook.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* ntp: security bump to verserion 4.2.8p9Adam Duskett2017-02-073-13/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This version of ntp fixes several vulnerabilities. CVE-2016-9311 CVE-2016-9310 CVE-2016-7427 CVE-2016-7428 CVE-2016-9312 CVE-2016-7431 CVE-2016-7434 CVE-2016-7429 CVE-2016-7426 CVE-2016-7433 http://www.kb.cert.org/vuls/id/633847 In addition, libssl_compat.h is now included in many files, which references openssl/evp.h, openssl/dsa.h, and openssl/rsa.h. Even if a you pass --disable-ssl as a configuration option, these files are now required. As such, I have also added openssl as a dependency, and it is now automatically selected when you select ntp. Signed-off-by: Adam Duskett <aduskett@codeblue.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* docs/manual: centralize recommendations about BR2_DL_DIRLuca Ceresoli2017-02-072-2/+5
| | | | | | | | | | | | | | | | We currently have two places where we recommend where BR2_DL_DIR should be set: "Environment variables" and "Location of downloaded packages". The former recommends setting BR2_DL_DIR in the .config, the latter kind of endorses using ~/.bashrc. We prefer suggesting the ~/.bashrc way since it avoids downloading the same file multiple times, and anyway it's wise to have all the details in a unique place. So remove the .config suggestion from "Environment variables" and let it just point to "Location of downloaded packages". Cc: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* docs/manual: suggest 'YES' as the value for LIBFOO_GIT_SUBMODULESLuca Ceresoli2017-02-071-5/+6
| | | | | | | | | | | | The manual mentions LIBFOO_GIT_SUBMODULES but does not tell what value it should have. The implementation only checks whether the variable is non-empty, but we should suggest a specific value to avoid people wondering what they have to set, and to try setting weird values. Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Cc: Baruch Siach <baruch@tkos.co.il> Cc: Ricardo Herrero <ricardo.herrero@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* tslib: bump to 1.4Martin Kepplinger2017-02-074-39/+4
| | | | | | | | | | additionally, this: * removes the patch adding missing headers (fixed upstream) * slightly changes the package description Signed-off-by: Martin Kepplinger <martin.kepplinger@ginzinger.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* python-service-identity: bump version to 16.0.0Yegor Yefremov2017-02-072-5/+5
| | | | | Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* python-ubjson: bump to version 0.8.5Yegor Yefremov2017-02-072-5/+5
| | | | | Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* python-pyopenssl: bump to version 16.2.0Yegor Yefremov2017-02-072-5/+5
| | | | | Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* python-cbor: bump to version 1.0.0Yegor Yefremov2017-02-072-5/+5
| | | | | Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* configs/qemu_nios2: add custom kernel headers versionRomain Naour2017-02-071-0/+3
| | | | | | | | | When this qemu nios2 defconfig has been added, the insternal toolchain used for testing was build with Linux kernel headers 4.9, so BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_4_9 was missing in the defconfig. Signed-off-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* ruby: assume we always have finite, isinf and isnan for uClibcVicente Olivert Riera2017-02-071-0/+11
| | | | | | | | | | | | | | | | | | | | | | | On uClibc, finite, isinf and isnan are not directly implemented as functions. Instead math.h #define's these to __finite, __isinf and __isnan, which are real functions. This confuses the Ruby configure script which use AC_REPLACE_FUNCS to detect these, as it really checks for a function without including math.h. Because of the naming difference the checks fail, therefore the symbols HAVE_FINITE, HAVE_ISINF and HAVE_ISNAN are not defined. Ruby code relies on those symbols in order to define its own version of the finite, isinf and isnan functions. Since the symbols haven't been defined, those definitions cause conflicts with the already-existing functions. Fixes: http://autobuild.buildroot.net/results/f34/f34dc20749c6f6d12c51eddf3ee6c2ef41d7c13d/ [Peter: extend description, add comment in .mk] Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* ipsec-tools: fix typo in variable namePeter Korsgaard2017-02-071-1/+1
| | | | | | | | | | As pointed out during the check-package discussion, there is a typo in a variable name: http://lists.busybox.net/pipermail/buildroot/2016-December/180765.html Reported-by: Ricardo Martincoski <ricardo.martincoski@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* libftdi: fix typo in variable namePeter Korsgaard2017-02-071-3/+3
| | | | | | | | | | As pointed out during the check-package discussion, there is a typo in a variable name: http://lists.busybox.net/pipermail/buildroot/2016-December/180765.html Reported-by: Ricardo Martincoski <ricardo.martincoski@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* on2-8170-libs: fix typo in variable namePeter Korsgaard2017-02-071-1/+1
| | | | | | | | | | As pointed out during the check-package discussion, there is a typo in a variable name: http://lists.busybox.net/pipermail/buildroot/2016-December/180765.html Reported-by: Ricardo Martincoski <ricardo.martincoski@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* gst1-plugins-ugly: fix typo in variable namePeter Korsgaard2017-02-071-1/+1
| | | | | | | | | | As pointed out during the check-package discussion, there is a typo in a variable name: http://lists.busybox.net/pipermail/buildroot/2016-December/180765.html Reported-by: Ricardo Martincoski <ricardo.martincoski@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* avrdude: fix typo in variable namePeter Korsgaard2017-02-071-1/+1
| | | | | | | | | | As pointed out during the check-package discussion, there is a typo in a variable name: http://lists.busybox.net/pipermail/buildroot/2016-December/180765.html Reported-by: Ricardo Martincoski <ricardo.martincoski@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* drbd-utils: fix typo in variable namePeter Korsgaard2017-02-071-2/+2
| | | | | | | | | | As pointed out during the check-package discussion, there is a typo in a variable name: http://lists.busybox.net/pipermail/buildroot/2016-December/180765.html Reported-by: Ricardo Martincoski <ricardo.martincoski@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* babeld: fix typo in variable namePeter Korsgaard2017-02-071-2/+2
| | | | | | | | | | | | | As pointed out during the check-package discussion, there is a typo in a variable name: http://lists.busybox.net/pipermail/buildroot/2016-December/180765.html Fixing that also shows that the license file was misspelled, so fix that as well (LICENSE/LICENCE). Reported-by: Ricardo Martincoski <ricardo.martincoski@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* poppler: fix typo in variable namePeter Korsgaard2017-02-071-1/+1
| | | | | | | | | | As pointed out during the check-package discussion, there is a typo in a variable name: http://lists.busybox.net/pipermail/buildroot/2016-December/180765.html Reported-by: Ricardo Martincoski <ricardo.martincoski@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* libcec: remove LIBCEC_AUTORECONF variableRahul Bedarkar2017-02-071-2/+0
| | | | | | | | libcec is a cmake based package. LIBCEC_AUTORECONF is meaningless in this context. Signed-off-by: Rahul Bedarkar <rahul.bedarkar@imgtec.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* binutils: backport fix for xg_reverse_shift_countMax Filippov2017-02-061-0/+33
| | | | | | | | | | binutils-2.27 gas has bug that results in the following kind of build error when assembling bb[cs]i.l on big-endian xtensa targets: ieee754-sf.S:237: Error: invalid symbolic operand Signed-off-by: Max Filippov <jcmvbkbc@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* python-gunicorn: fix build issue with python2Maxime Hadjinlian2017-02-061-0/+12
| | | | | | | | | | | | | | | | Fix: http://autobuild.buildroot.org/results/b2d/b2d43dd3c52cc9f586009a10a40f97b07548322d/build-end.log The issue arise from the fact that we compile all *.py files, but the _gaiohttp.py file is using Python3 ("yield from") syntax which causes an error. So if we are using Python2, delete this file as it won't ever be imported anyway as it is checked by gunicorn in the __init__.py file of the worker module. Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/mbedtls: make compression support a config optionJörg Krause2017-02-062-1/+13
| | | | | | | | | | | | | | | | | Enabling TLS compression may make mbedTLS vulnerable to the CRIME attack [1]. It should not be enabled unless is is sure CRIME and similar attacks are not applicable to the particulare situation. As zlib is probably enabled in most systems, the user might end up with a vulnerable system without knowing. So, instead of enabling compression support if the zlib package is available, we make the compression support a config option. This way, the user has to explicitly enable compression support and is warned by the help text about the risk. [1] https://tls.mbed.org/kb/how-to/deflate-compression-in-ssl-tls Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/ffmpeg: bump version to 3.2.3Bernd Kuhls2017-02-062-2/+2
| | | | | Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* systemd: add missing dhcp.network fileThomas Petazzoni2017-02-061-0/+4
| | | | | | | | This file was missing from commit 84d997d6890f1d045c4d6084148fd9b2d674a6c7 ("system(d): allow auto net configuration with networkd") Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* libiio: Bump to version 0.9Paul Cercueil2017-02-066-62/+84
| | | | | | | | | | | | This new version introduces a lot of bug fixes and some new API functions. Additionally, the IIO Daemon is now able to share the local IIO devices through USB (using FunctionFS). [Peter: usbd option needs 3.18+ headers, reorder options for menuconfig] Signed-off-by: Paul Cercueil <paul.cercueil@analog.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* sudo: Add ldap support for sudoers rulesChris Frederick2017-02-061-0/+7
| | | | | | | | | | | | Automatically build sudo with ldap support when openldap is enabled. When sudo is built with ldap, /etc/sudoers is only read in for defaults, all rules need to be provided via ldap which is configured by the user in /etc/ldap.conf. Signed-off-by: Chris Frederick <cdf123@cdf123.net> Reviewed-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* size-stats: don't count hard linksFrank Hunleth2017-02-061-1/+10
| | | | | | | | | | | | | | | This change adds inode tracking to the size-stats script so that hard links don't cause files to be double counted. This has a significant effect on the size computation for some packages. For example, git has around a dozen hard links to a large file. Before this change, git would weigh in at about 170 MB with the total filesystem size reported as 175 MB. The actual rootfs.ext2 size was around 16 MB. With the change, the git package registers at 10.5 MB with a total filesystem size of 15.8 MB. Signed-off-by: Frank Hunleth <fhunleth@troodon-software.com> Acked-by: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* gst1-imx: add menuconfig to select each plugin individuallyGary Bisson2017-02-062-21/+121
| | | | | | | | Also making it clearer as for what each plugin dependencies are. Signed-off-by: Gary Bisson <gary.bisson@boundarydevices.com> [Thomas: invert conditions to avoid empty ifeq ... else statements.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* openntpd: fix Config.in comment dependencyThomas Petazzoni2017-02-061-0/+1
| | | | | | | | | | | | BR2_PACKAGE_OPENNTPD has a "depends on !BR2_PACKAGE_NTP" because the openntpd package conflicts with the ntp package. So the Config.in comment of openntpd should also not be visible when ntp is selected. Otherwise the comment will show up when the user has a non-NPTL toolchain, and once he enables NPTL support, the comment disappears, but the package option doesn't appear. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* imagemagick: fix build of png support when jpeg support is disabledPeter Korsgaard2017-02-061-0/+47
| | | | | | | | | | | | | | | | | | | | | | | | | Fixes: http://autobuild.buildroot.net/results/d20/d20eecec8e7b947759185f77a6c8e610dd7393f3/ http://autobuild.buildroot.net/results/ee1/ee15efa8ae3f95244980810155ff7ba9f885a59d/ http://autobuild.buildroot.net/results/aa8/aa80f2fd4c7dd884ea8a1b55ad15a40c7bf40501/ http://autobuild.buildroot.net/results/9aa/9aaa044f78115d7f599ea09669c0d6bface5633e/ This combination is broken since 7.0.4-6. Since commit a9e228f8ac26 (Implemented a private PNG caNv (canvas) chunk), PNGsLong gets called unconditionally, but it is only defined if JPEG support is enabled (which defines JNG_SUPPORTED), breaking the build: MagickCore/.libs/libMagickCore-7.Q16HDRI.a(MagickCore_libMagickCore_7_Q16HDRI_la-png.o): In function `WriteOnePNGImage': png.c:(.text+0x748d): undefined reference to `PNGsLong' png.c:(.text+0x74b7): undefined reference to `PNGsLong' Fix it by adding a patch unconditionally defining the helper function. Patch submitted upstream. Signed-off-by: Peter Korsgaard <peter@korsgaard.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/cpio: Fix GNU Mirror PathBrian Redbeard2017-02-061-1/+1
| | | | | | | Replacing ftpmirror.gnu.org with BR2_GNU_MIRROR variable Signed-off-by: Brian 'redbeard' Harrington <redbeard@coreos.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/libtasn1: Fix GNU Mirror PathBrian Redbeard2017-02-061-1/+1
| | | | | | | Replacing ftpmirror.gnu.org with BR2_GNU_MIRROR variable Signed-off-by: Brian 'redbeard' Harrington <redbeard@coreos.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/lightning: Fix GNU Mirror PathBrian Redbeard2017-02-061-1/+1
| | | | | | | Replacing ftpmirror.gnu.org with BR2_GNU_MIRROR variable Signed-off-by: Brian 'redbeard' Harrington <redbeard@coreos.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* system(d): allow auto net configuration with networkdEric Le Bihan2017-02-062-6/+12
| | | | | | | | | | | | | | | Allow automatic network configuration via systemd-networkd if selected. If systemd-networkd is enabled and $BR2_SYSTEM_DHCP is set, then create a .network file to configure the selected network interface via DHCP. Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr> [Thomas: - merge the two patches from Eric into just one - instead of generating the dhcp.network file completely from the .mk file, use a template file, and "sed" it with the right network interface] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* python-bitstring: new packageYegor Yefremov2017-02-064-0/+23
| | | | | Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* python-attrs: new packageYegor Yefremov2017-02-064-0/+26
| | | | | Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* efl: do not force dependency on libudev by making eeze a config option.Gustavo Sverzut Barbieri2017-02-063-10/+44
| | | | | | | | | | | | | | | | | Although highly recommended to be enabled, EFL's eeze can be disabled and thus no dependency on libudev or dynamic device management. Since 'BR2_PACKAGE_HAS_UDEV' has two ways to be satisfied (eudev or systemd) we can't automatically select it, instead show a comment and use 'depends on'. Signed-off-by: Gustavo Sverzut Barbieri <barbieri@profusion.mobi> [Romain: - Propagate the eeze dependency to enlightenment and efl Wayland - Remove udev provider from eeze comment in efl's Config.in - Add comments when eeze is not available] Signed-off-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* qt5base: add Config.in option to pass custom Qt5 optionsBryce Ferguson2017-02-062-0/+13
| | | | | | | | | | | To reduce the qt5base binary size, we can disable unnecessary features. Instead of trying to map every qt5base option to buildroot, create a single config that we can pass any option too. Then append those to the ones generated by buildroot. Signed-off-by: Brandon Maier <brandon.maier@rockwellcollins.com> Signed-off-by: Bryce Ferguson <bryce.ferguson@rockwellcollins.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* DEVELOPERS: add Thomas De Schapheleire for opkg-utilsThomas Petazzoni2017-02-061-0/+1
| | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* opkg-utils: new packageThomas De Schampheleire2017-02-064-0/+30
| | | | | | | | | Originally, the opkg sources also contained the tools needed to _create_ an opkg package. In later releases, this code has been split to a separate package opkg-utils. Signed-off-by: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* wget: bump version to 1.19Vicente Olivert Riera2017-02-063-136/+2
| | | | | | | | | package/wget/0001-utils-rename-base64_-encode-decode.patch already included in this release, so drop it: http://git.savannah.gnu.org/cgit/wget.git/commit/?id=e4e9d3c1c801190b5c8232284b26d170924b1696 Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* pps-tools: bump to version 97eaef2ab82a46d13ea5e00270712d6475fbe42bAdam Duskett2017-02-062-2/+2
| | | | | Signed-off-by: Adam Duskett <aduskett@codeblue.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* x264: bump to version 97eaef2ab82a46d13ea5e00270712d6475fbe42bAdam Duskett2017-02-062-2/+2
| | | | | Signed-off-by: Adam Duskett <aduskett@codeblue.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* nginx-naxsi: bump to version 0.55.2Adam Duskett2017-02-062-2/+2
| | | | | Signed-off-by: Adam Duskett <aduskett@codeblue.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* linux-firmware: bump to version 6d3bc8886517d171068fd1263176b8b5c51df204Adam Duskett2017-02-062-1/+3
| | | | | Signed-off-by: Adam Duskett <aduskett@codeblue.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/libplatform: bump version to 2.1.0Bernd Kuhls2017-02-064-45/+43
| | | | | | | | | | | | | | | | | | Rebased patch 0001. Updated license info after https://github.com/Pulse-Eight/platform/commit/a1e5905874d5cdbce110344558d21a2810dead9c Fixes: http://autobuild.buildroot.org/results/052/052b29efb3e5b208003ea40aa6499297bbbb7ad4/ http://autobuild.buildroot.org/results/0d4/0d4d7fefc86269e825c6cc842077daccf9b4f7ee/ http://autobuild.buildroot.org/results/700/7003798bbb8dbed72d651863149490221583057b/ ... Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs/odroidc2: bump kernel version to ↵Dagg Stompler2017-02-061-1/+1
| | | | | | | | | | a7fe6f2258e30c7a547908b5480bdbe6b56d6d3c this kernel rev has numerous bug fixes, framework upgrades and new features added. Signed-off-by: Dagg Stompler <daggs@gmx.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs/odroidc2: bump uboot version to eb5d2d16fd45f52ec49e9b4ff9d562630c08e61cDagg Stompler2017-02-061-1/+1
| | | | | | | | this version bump allows usage of hardkernel's secure signatures when booting a system Signed-off-by: Dagg Stompler <daggs@gmx.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs/odroidc2: update boot.ini to 5ce6bcc6d8048ba5ff351516b751d52f5cda6981Dagg Stompler2017-02-061-13/+139
| | | | | | | | | | | changes: - add multicam support - add the new options - organization and add uhs and card remove controls - clarify hdmi/dvi/vga selection Signed-off-by: Dagg Stompler <daggs@gmx.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
OpenPOWER on IntegriCloud