summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* fastd: fix build with newer libsodiumBaruch Siach2017-12-081-0/+137
| | | | | | | | | | | | | | | Add upstream patch removing aes128-ctr support that libsodium no longer provides. Fixes: http://autobuild.buildroot.net/results/90c/90c526491a9eb6b5ceb38a0218fd480c03208217/ http://autobuild.buildroot.net/results/f81/f815dbfee7099f3b8fea7036e1fd10385f8c6a80/ http://autobuild.buildroot.net/results/329/3299d413ee98963e62c0df4087604c9872fcad68/ Cc: Alexander Dahl <post@lespocky.de> Signed-off-by: Baruch Siach <baruch@tkos.co.il> [Thomas: fix patch numbering, as noticed by Alexander Dahl.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* python-pyftpdlib: bump to version 1.5.3Yegor Yefremov2017-12-082-5/+6
| | | | | | | Add licence checksum. Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* python-ws4py: bump to version 0.4.2Yegor Yefremov2017-12-082-4/+4
| | | | | Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* circus: bump to version 0.14.0Yegor Yefremov2017-12-082-4/+5
| | | | | | | Add licence checksum. Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* python-iowait: add licence checksumYegor Yefremov2017-12-081-2/+2
| | | | | Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* glibc: security bump to the latest 2.26 branchBaruch Siach2017-12-082-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | List of fixes from the 2.26 branch NEWS files: CVE-2017-15670: The glob function, when invoked with GLOB_TILDE, suffered from a one-byte overflow during ~ operator processing (either on the stack or the heap, depending on the length of the user name). Reported by Tim Rühsen. CVE-2017-15671: The glob function, when invoked with GLOB_TILDE, would sometimes fail to free memory allocated during ~ operator processing, leading to a memory leak and, potentially, to a denial of service. CVE-2017-15804: The glob function, when invoked with GLOB_TILDE and without GLOB_NOESCAPE, could write past the end of a buffer while unescaping user names. Reported by Tim Rühsen. CVE-2017-17426: The malloc function, when called with an object size near the value SIZE_MAX, would return a pointer to a buffer which is too small, instead of NULL. This was a regression introduced with the new malloc thread cache in glibc 2.26. Reported by Iain Buclaw. Cc: Waldemar Brodkorb <wbx@openadk.org> Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/Config.in: fix alphabetical orderJerzy Grzegorek2017-12-081-1/+1
| | | | | Signed-off-by: Jerzy Grzegorek <jerzy.m.grzegorek@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* boot: uboot: fix typoYegor Yefremov2017-12-081-1/+1
| | | | | | | Replace "depend" with "depends". Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* binaries-marvell: new packageSergey Matyukevich2017-12-085-0/+58
| | | | | | | | | | | | | | | | | | | Some systems, including Marvell Armada 7k/8k SoCs, have a separate System Control Processor (SCP) for power management, clocks, reset and system control. ATF Boot Loader stage 2 (BL2) loads optional SCP_BL2 image into a platform-specific region of secure memory. This package adds SCP_BL2 firmware for Marvell Armada 7040 and 8040 SoCs. Signed-off-by: Sergey Matyukevich <geomatsi@gmail.com> [Thomas: - Use "binaries-marvell" in the Config.in prompt and in the .mk file header. - Change the license information. - Adjust license information: it is GPL-2.0 with the FreeRTOS exception, and therefore can be redistributed.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* mv-ddr-marvell: new packageSergey Matyukevich2017-12-085-0/+26
| | | | | | | | | | | | | | | | | This package adds Marvell Armada SoC DDR training algorithms. This code is not built separately, it is needed as dependency to build ATF firmware for Marvell Armada SoCs. Signed-off-by: Sergey Matyukevich <geomatsi@gmail.com> [Thomas: - Remove MV_DDR_MARVELL_SRC_SYMLINK, ATF will directly pick up the mv-ddr-marvell code from where it is. - Use "mv-ddr-marvell" as the Config.in prompt, and in the comment header of the .mk file. - Add upstream URL in Config.in help text - Adjust license information.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* uboot: add support for bundling ATF BL31 into U-BootJagan Teki2017-12-082-0/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Some ARM64 platforms (such as Allwinner A64/H5) have a boot process where U-Boot encapsulates the BL31 part of the ARM trusted firmware. For such platforms, we need to build ATF before U-Boot, and pass a BL31 variable pointing to ATF bl31.bin to the U-Boot build process. This commit introduces a BR2_TARGET_UBOOT_NEEDS_ATF_BL31 variable to achieve this. Signed-off-by: Jagan Teki <jagan@amarulasolutions.com> [Thomas: - Rename option to BR2_TARGET_UBOOT_NEEDS_ATF_BL31 - Drop changes to arm-trusted-firmware.mk, they are taken care of by previous commits. - Improve Config.in help text - Add missing dependency on arm-trusted-firmware when BR2_TARGET_UBOOT_NEEDS_ATF_BL31 is enabled. - Use bl31.bin from $(BINARIES_DIR) instead of taking it from ATF's build dir.] [Peter: depend on toplevel atf option and select bl31 option. Ensure it cannot be enabled together with ARM_TRUSTED_FIRMWARE_UBOOT_AS_BL33 as that would cause circular dependencies] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Tested-by: Jagan Teki <jagan@amarulasolutions.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* arm-trusted-firmware: allow to generate the BL31 imageThomas Petazzoni2017-12-082-0/+11
| | | | | | | | | | Some platforms (e.g Allwinner ARM64) don't build a FIP image out of ATF, but only a BL31 image, which is then encapsulated in U-Boot. This commit adds an ATF option to build such an image. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Tested-by: Jagan Teki <jagan@amarulasolutions.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* arm-trusted-firmware: add BR2_TARGET_ARM_TRUSTED_FIRMWARE_UBOOT_AS_BL33Thomas Petazzoni2017-12-083-3/+15
| | | | | | | | | | | | | | | | | | | | | ATF can be used in different ways: - ATF encapsulates U-Boot as the BL33, which is what is done on ARM Juno (currently supported in Buildroot) and Marvell platforms (soon to be supported) - U-Boot encapsulates ATF's BL31, which is what is done on Allwinner ARM64 platforms. Until now we were assumming the former was always the case, but obviously it isn't. Therefore, this patch adds an option that allows to explicitly tell ATF that it encapsulates U-Boot as its BL33. We adapt the only defconfig that uses ATF so that it enables this option as appropriate. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* arm-trusted-firmware: add option to enable/disable building FIP imageThomas Petazzoni2017-12-083-1/+16
| | | | | | | | | | | | | | | | | | | | Currently, our arm-trusted-firmware unconditionally builds a FIP (Firmware Image Package). While this is often needed on platforms where ATF encapsulates U-Boot, it is not the case on some other platforms where it's U-Boot that encapsulates parts of ATF. In order to prepare the support for the later platforms, we make building the FIP image optional, and update the only defconfig we have that uses ARM Trusted Firmware. Note: we considered adding a "default y" here to preserve backward compatibility, but there really isn't any default that is sane: whether a FIP image needs to be built or not is purely platform specific. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Reviewed-by: Sergey Matyukevich <geomatsi@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* .gitlab-ci.yml: refresh following the addition of orangepi_lite_defconfigThomas Petazzoni2017-12-081-0/+1
| | | | | | | | Fixes: https://gitlab.com/buildroot.org/buildroot/-/jobs/43702501 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* python-pytablewriter: bump to version 0.27.1Yegor Yefremov2017-12-083-4/+6
| | | | | | | Add licence checksum. Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/libbluray: bump version to 1.0.2Bernd Kuhls2017-12-082-3/+4
| | | | | | | Added license hash. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* libostree: change license to LGPL-2.0+Marcus Folkesson2017-12-081-1/+1
| | | | | | | The license is actually GNU LIBRARY GENERAL PUBLIC LICENSE Signed-off-by: Marcus Folkesson <marcus.folkesson@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* arch/arm: default to Cortex-A53 for AArch64Yann E. MORIN2017-12-071-0/+1
| | | | | | | | | | | | | | Since we re-organised the list of cores (in 52d500aa35) and introduced some new cores (in e9960da6ec, d632d9e5a9, 6317a199ec), the default for AArch64 was accidently changed from A53 to A35. So, restore the default to A53 for AArch64. Reported-by: daggs <daggs@gmx.com> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: daggs <daggs@gmx.com> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/ltp-testsuite: Add upstream patch to fix build on uClibc-ngPetr Vorel2017-12-071-0/+28
| | | | | | | | Fixes: http://autobuild.buildroot.net/results/6c0506423c76b61018da26c2549570e3d9eb5763/ Signed-off-by: Petr Vorel <petr.vorel@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* DEVELOPERS: Add Matt Weber to XenMatt Weber2017-12-071-0/+1
| | | | | Signed-off-by: Matthew Weber <matthew.weber@rockwellcollins.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* python-pytablereader: bump to version 0.15.0Yegor Yefremov2017-12-073-4/+6
| | | | | | | Add licence checksum. Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* python-tabledata: new packageYegor Yefremov2017-12-074-0/+38
| | | | | Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* python-dataproperty: bump to version 0.29.1Yegor Yefremov2017-12-073-8/+7
| | | | | | | Add licence checksum. Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* python-pytz: bump to version 2017.3Yegor Yefremov2017-12-072-5/+12
| | | | | | | Add licence checksum. Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* libostree: install to stagingMarcus Folkesson2017-12-071-0/+1
| | | | | | | Install the libraries to staging to be usable by other packages. Signed-off-by: Marcus Folkesson <marcus.folkesson@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* rsync: add security fix patchesBaruch Siach2017-12-073-0/+112
| | | | | | | | Fixes CVE-2017-17433 and CVE-2017-17434: remote bypass of security restrictions. Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* msmtp: bump to version 1.6.6Baruch Siach2017-12-072-4/+7
| | | | | | Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* linux-headers: bump 4.1.x seriesBernd Kuhls2017-12-071-1/+1
| | | | | Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* board/orangepi: add support for orangepi-lite boardJan Kraval2017-12-078-0/+121
| | | | | | | | | | | | This board is quite similar to orangepi-one board. Instead of ethernet, it has RTL8189FTV SDIO WiFi chip. Board support package includes the following components: - mainline u-boot 2017.09 - mainline kernel 4.13.11 Signed-off-by: Jan Kraval <jan.kraval@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* libmaxminddb: bump to version 1.3.1Fabrice Fontaine2017-12-072-2/+2
| | | | | Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* axfsutils: bump versionChris Brandt2017-12-074-41/+2
| | | | | | | | The patches are no longer needed because they have been pushed back into the upstream axfs repository. Signed-off-by: Chris Brandt <chris.brandt@renesas.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* stunnel: bump to version 5.44Baruch Siach2017-12-072-3/+6
| | | | | | | Add license files hashes. Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* screen: bump to version 4.6.2Baruch Siach2017-12-075-46/+8
| | | | | | | | | | | | Refresh patch #6. Drop patch #9, parallel build fixed in upstream commit 7dad1f268f12. Renumber the next patch. Add reference to upstream signature, and license hash. Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* flann: Disable find package for HDF5Johan Oudinet2017-12-061-1/+2
| | | | | | | | | | The HDF5 package is used by flann for testing purpose only and is not part of buildroot packages. However, if present in the host, it will be used and trigger the unsafe header/library path used in cross-compilation error. Signed-off-by: Johan Oudinet <johan.oudinet@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* erlang: Add a patch for hosts without libzJohan Oudinet2017-12-061-0/+42
| | | | | | | | | | | | | | | Since commit 640c988fd4, erts/configure adds -lz to LIBS but this variable is also used in some Dynamic Erlang drivers. Fix Makefiles in such drivers to use the LDLIBS variable instead. This patch has been reported upstream (see https://bugs.erlang.org/browse/ERL-529) and should fix: http://autobuild.buildroot.net/results/3a3b9a4568c706bd6caad3c63d356680c8405ac5/ Signed-off-by: Johan Oudinet <johan.oudinet@gmail.com> Tested-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/tor: Install default config and systemd .service fileMario Lang2017-12-061-0/+12
| | | | | Signed-off-by: Mario Lang <mlang@blind.guru> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* DEVELOPERS: Add myself to packages/poco/Yegor Yefremov2017-12-061-0/+1
| | | | | Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* poco: bump to version 1.8.0.1Yegor Yefremov2017-12-062-2/+3
| | | | | | | Add licence checksum. Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* nginx-dav-ext: bump to v0.1.0Adam Duskett2017-12-062-3/+4
| | | | | | | Also update the license file location and add a hash for the license file. Signed-off-by: Adam Duskett <aduskett@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* mpd: bump to version 0.20.12Jörg Krause2017-12-062-2/+2
| | | | | Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* xenomai: bump to 3.0.6Norbert Lange2017-12-062-2/+2
| | | | | | | | | | | | This new version includes a fix to allow compilation with compilers defaulting to -fpie (gcc 6+). It also a fix for a critical bug in Cobalt: http://xenomai.org/pipermail/xenomai/2017-November/037923.html Signed-off-by: Norbert Lange <nolange79@gmail.com> Reviewed-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/waylandpp: bump version to 0.1.6Bernd Kuhls2017-12-062-2/+2
| | | | | Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/wayland-protocols: bump version to 1.12Bernd Kuhls2017-12-062-5/+6
| | | | | | | Added license hash. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* axel: bump to version 2.16.1Ismael Luceno2017-12-062-3/+3
| | | | | | | | | | | | | Fixes building against static libssl: http://autobuild.buildroot.net/results/7edb3756a07bbac27f852332b81677feb6156a48/ The major change between 2.16 and 2.16.1 that fixes static linking with libssl is that pkg-config is now used to detect libssl. Therefore, we add a dependency on host-pkgconf. Signed-off-by: Ismael Luceno <ismael@iodev.co.uk> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* axel: Fix OpenSSL dependencyIsmael Luceno2017-12-061-4/+1
| | | | | | | | openssl is a virtual package, that can be provided by either libressl or libopenssl, so there's no need to check for libressl separately. Signed-off-by: Ismael Luceno <ismael@iodev.co.uk> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* DEVELOPERS: Add myself to axel packageIsmael Luceno2017-12-061-0/+3
| | | | | Signed-off-by: Ismael Luceno <ismael@iodev.co.uk> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/omxplayer: add missing dependency to alsa-libYann E. MORIN2017-12-062-2/+3
| | | | | | | | | | | | Since the bump in 58a00a13 (omxplayer: bump to version 2ee17b2), omxplayer gained a dependency to alsa-lib. Fixes: http://autobuild.buildroot.org/results/652/65212c59a37398681b341263bd76ba8a65ff7828/ Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Julius Kriukas <julius@kriukas.lt> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* linux-headers: security bump 4.{4, 9, 14}.x seriesFabio Estevam2017-12-061-3/+3
| | | | | | | | Fixes CVE-2017-1000405. Signed-off-by: Fabio Estevam <festevam@gmail.com> [Thomas: adjust commit description to mention the CVE being fixed.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* linux: bump default to version 4.14.4Fabio Estevam2017-12-061-1/+1
| | | | | Signed-off-by: Fabio Estevam <festevam@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
OpenPOWER on IntegriCloud