summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* wolfssl: fix build on ARMV8Sergio Prado2018-01-151-4/+1
| | | | | | | | | | | | | | | | | | Build on ARMV8 fails when hardware acceleration is enabled: /tmp/ccmGP5RI.s: Assembler messages: /tmp/ccmGP5RI.s:532: Error: invalid addressing mode at operand 2 -- `ld1 {v0.2d},[x0,256]' /tmp/ccmGP5RI.s:568: Error: invalid addressing mode at operand 2 -- `st1 {v0.2d},[x0,256]' /tmp/ccmGP5RI.s:581: Error: invalid addressing mode at operand 2 -- `ld1 {v0.2d},[x0,256]' /tmp/ccmGP5RI.s:621: Error: invalid addressing mode at operand 2 -- `st1 {v0.2d},[x0,256]' So let's disable ARMv8 hardware acceleration for now. Fixes: http://autobuild.buildroot.net/results/6080648394d09a0d382087831ee6f063c7638be9 Signed-off-by: Sergio Prado <sergio.prado@e-labworks.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* augeas: bump to version 1.9.0Jörg Krause2018-01-154-3/+66
| | | | | | | | | | | | | | | | Add two patches from upstream to fix a build issue when building an example. Ideally, the examples should not be build at all. However, upstream disliked the idea of adding configure options like `--disable-examples` [1]. So we'll make do with the patches and force a autoreconf. Additionaly, the signature was checked and a hash for the license file is added. [1] https://github.com/hercules-team/augeas/issues/535 Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* armbian-firmware: fail build for missing fileRicardo Martincoski2018-01-151-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | When a file is listed to be installed but is missing from the package source currently the first tar command exits with error code but it is ignored and the build succeeds. This issue by itself is minor because those listed files that are present in the package source get installed to the target. But the code is currently error prone, e.g. to a typo in the file list. Fix this by first creating a tarball in the build directory and then installing it, instead of using a pipe between the two tar invocations. Also use && between the commands, so the first command that exits with error code fails the build. Since the two tar invocations remain in use, the desired behavior remains the same: - list of files can contain *; - list of files can contain file inside path, and the path is then replicated in the target; - symlinks are not followed but are installed. Signed-off-by: Ricardo Martincoski <ricardo.martincoski@gmail.com> Cc: Sergey Matyukevich <geomatsi@gmail.com> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* linux-firmware: fix install for Chelsio T[45]Ricardo Martincoski2018-01-151-4/+4
| | | | | | | | | | | | | | | | | | | | | | It's broken for the last 3 version bumps, since 1c9846ecc9 "linux-firmware: Bump to the latest version" Fix it by updating the name of the file to install. Do not use * since it would install also old versions that would take 1MB extra space in the target. A comment to remember to update the file name when bumping the package is not needed because a previous patch in the series makes the build to fail for missing file. Signed-off-by: Ricardo Martincoski <ricardo.martincoski@gmail.com> Cc: Fabio Estevam <festevam@gmail.com> Cc: Peter Korsgaard <peter@korsgaard.com> Cc: Peter Seiderer <ps.report@gmx.net> Cc: Yann E. MORIN <yann.morin.1998@free.fr> Cc: Yegor Yefremov <yegorslists@googlemail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* linux-firmware: fail build for missing fileRicardo Martincoski2018-01-151-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | When a file is listed to be installed but is missing from the package source currently the first tar command exits with error code but it is ignored and the build succeeds. This issue by itself is minor because those listed files that are present in the package source get installed to the target. But the code is currently error prone, e.g. to a typo in the file list. Fix this by first creating a tarball in the build directory and then installing it, instead of using a pipe between the two tar invocations. Also use && between the commands, so the first command that exits with error code fails the build. Since the two tar invocations remain in use, the desired behavior remains the same: - list of files can contain *; - list of files can contain file inside path, and the path is then replicated in the target; - symlinks are not followed but are installed. Signed-off-by: Ricardo Martincoski <ricardo.martincoski@gmail.com> Cc: Fabio Estevam <festevam@gmail.com> Cc: Peter Korsgaard <peter@korsgaard.com> Cc: Peter Seiderer <ps.report@gmx.net> Cc: Yann E. MORIN <yann.morin.1998@free.fr> Cc: Yegor Yefremov <yegorslists@googlemail.com> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* xen: bump to version 4.9.1Peter Korsgaard2018-01-153-67/+2
| | | | | | | | | | | Drop 0003-tools-libxc-xc_dom_arm-add-missing-variable-initiali.patch as that is now upstream: https://xenbits.xenproject.org/gitweb/?p=xen.git;a=commit;h=88bfbf90e35f1213f9967a97dee0b2039f9998a4 Drop security patches as 4.9.1 includes up to xsa-245. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* configs/openblocks_a6_defconfig: bump linux kernel to 4.14.13Peter Korsgaard2018-01-151-3/+3
| | | | Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* configs/sheevaplug_defconfig: bump linux kernel to 4.14.13Peter Korsgaard2018-01-151-3/+3
| | | | Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* python-xlib: fix check-package warningJoseph Kogut2018-01-151-2/+2
| | | | | | Signed-off-by: Joseph Kogut <joseph.kogut@gmail.com> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* minnowboard-max: defconfigs: use silvermont x86 variantPeter Korsgaard2018-01-152-2/+2
| | | | | | As that is the CPU core in the E38xx Atoms used on the Minnowboard max. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* minnowboard-max: defconfigs: bump kernel to 4.14.13Peter Korsgaard2018-01-153-5/+6
| | | | | | Use CONFIG_UNWINDER_FRAME_POINTER as CONFIG_UNWINDER_ORC needs libelf. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* domoticz: fix build with boost 1.66Fabrice Fontaine2018-01-151-0/+56
| | | | | | | | | | | | | | | Patch fetch from one of the answer of https://github.com/domoticz/domoticz/issues/2034 (issue still opened, no official PR sent upstream) Boost asio changed its API: - http://www.boost.org/doc/libs/1_66_0/doc/html/boost_asio/net_ts.html Fixes: - http://autobuild.buildroot.net/results/5f02c8fc84889748f283ee1cb76248bb0880215a Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* swupdate: remove empty lineJörg Krause2018-01-151-1/+0
| | | | | | | | | | | | | | | | Reported by Yann E. Morin running: ``` $ ./utils/check-package package/swupdate/swupdate.mk package/swupdate/swupdate.mk:42: consecutive empty lines 140 lines processed 1 warnings generated ``` Reported-by: Yann E. MORIN <yann.morin.1998@free.fr> Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* kvm-unit-tests: test for rdseed/rdrandMatt Weber2018-01-141-0/+110
| | | | | | | | | | | | | | | | | | | The build fails when the host binutils isn't at least 2.23 (2.22.x introduced RDSEED). The host toolchain is used for x86_64 target builds where we need to do a 32bit build. Most other buildroot builds are using a much newer binutils unless it's a external older toolchain. Fixes: http://autobuild.buildroot.net/results/c39/c3987a3cbd2960b0ff50f872636bdfd8d1a9c820/ Upstream: https://marc.info/?l=kvm&m=151580743523259&w=2 Signed-off-by: Matthew Weber <matthew.weber@rockwellcollins.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/waylandpp: bump version to 0.2.1Bernd Kuhls2018-01-142-2/+2
| | | | | Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/bash: add /bin/bash to /etc/shellsRomain Naour2018-01-141-0/+4
| | | | | | | | | | | | | | When bash is selected, /bin/bash is not added to /etc/shells (see man shells). So, login tools like dropbear reject the ssh connexions for users using bash as shell in /etc/passwd. buildroot authpriv.warn dropbear[853]: User 'kubu' has invalid shell, rejected Reported-by: Jeremy Rosen <jeremy.rosen@smile.fr> Signed-off-by: Romain Naour <romain.naour@smile.fr> Cc: "Yann E. MORIN" <yann.morin.1998@free.fr> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/linux-firmware: fix incorrect line-continuationYann E. MORIN2018-01-142-1/+2
| | | | | | | | | | | Partially fixes: https://gitlab.com/buildroot.org/buildroot/-/jobs/47806089 And add myself to the list of devloppers for it. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* support/dockerfile: add directives to run as non-rootYann E. MORIN2018-01-121-0/+7
| | | | | | | | | | | | | | | | | | | | Currently, our jobs on the gitlab-ci infra are running as root, which is problematic for two reasons: - this is not the usual way Buildroot is built; - it may miss issues where running as non-root is problematic. So, complement our Dockerfile with directives to add a new user and run everything as that user, as demonstrated by this build job: https://gitlab.com/ymorin/buildroot-ci/-/jobs/46929562 Additional, enforce an UTF-8 locale while running. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Arnout Vandecappelle <arnout@mind.be> Cc: Peter Korsgaard <peter@korsgaard.com> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* mpd: bump to version 0.20.15Jörg Krause2018-01-122-2/+2
| | | | | Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* uboot-tools: bump to version 2018.01Jörg Krause2018-01-123-65/+2
| | | | | | | | | | Drop patch 0004-uboot-tools-disable-pylibfdt.patch. The issue addressed by this patch has been fixed in upstream commit 15b97f5c5e6d88e0560c6928f3acd01c999a494d. Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks> Tested-by: Matthew Weber <matthew.weber@rockwellcollins.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* uboot: bump to version 2018.01Jörg Krause2018-01-122-3/+3
| | | | | Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* board/ci20: create a SD card imageJohannes Schmitz2018-01-124-25/+79
| | | | | | | | | | | | | Add a genimage.cfg to create a working sdcard.img for the ci20 hardware. We also need a uboot-env.txt to create the partition for the uboot environment. Update the board/ci20/readme.txt with the related information. Remove the tftp netboot description from the readme as it is already to complicated for a basic bootable example. Signed-off-by: Johannes Schmitz <johannes.schmitz1@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* boost: bump to version 1.66.0Jörg Krause2018-01-123-12/+3
| | | | | | | | Drop the metaparse module as it is header only library now. No need for legacy handling as the module is available unconditionally in Boost. Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/ti-cgt-pru: bump to 2.2.1Romain Naour2018-01-122-4/+6
| | | | | | | | | | | | | | | | | | | | See: http://www.ti.com/tool/download/PRU-CGT-2-2 The ti-cgt-pru v2.1.x installer are affected by a bug with recent distribution (Fedora 27 and Ubuntu 17.10) using kernel 4.13 or 4.14 with a glibc 2.26. The installer is stuck in a futex(wait) system call. While at it, add license hash. Fixes: http://autobuild.buildroot.net/results/68f/68f60ad38d9b6eae83b5d233966616a25d8c9391 Signed-off-by: Romain Naour <romain.naour@gmail.com> Cc: Ash Charles <ash.charles@savoirfairelinux.com> Cc: Matthew Weber <matthew.weber@rockwellcollins.com> Tested-by: Matt Weber <matthew.weber@rockwellcollins.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* support/config-fragments: br-powerpc-internal-full: remove old optionRomain Naour2018-01-121-1/+0
| | | | | | | | | | | | | | | | | BR2_TOOLCHAIN_BUILDROOT_INET_IPV6 has been removed with the commit [1]. Since this option is still in br-powerpc-internal-full config-fragment, the powerpc configuration is droped by autobuild-run script: WARN: toolchain can't be used Missing: BR2_TOOLCHAIN_BUILDROOT_INET_IPV6=y [Sat, 06 Jan 2018 03:03:43] WARN: failed to generate configuration [1] 4bcacfd2c05f45171c011d4af7731c6f848819a4 Signed-off-by: Romain Naour <romain.naour@gmail.com> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* scanpypi: get license names from SPDX databaseYegor Yefremov2018-01-121-55/+79
| | | | | | | | | | | | Use spdx_lookup package to compare packages' license file texts with SPDX database. This feature is optional. Bonus: fix wrong indentation. Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* imx-gpu-viv: fix compiling issues with EGL_API_FBGary Bisson2018-01-121-4/+18
| | | | | | | | | | | | | | | | | | | | | Just like the previous commit did: c9ecdd2b96 gpu-viv-bin-mx6q: fix compiling issues with EGL_API_FB Difference is that in latest package, eglvivante.h is included after a EGL_API_FB check in eglplatform.h, giving the following error: /.../sysroot/usr/include/EGL/eglplatform.h:146:10: fatal error: X11/Xlib.h: No such file or directory #include <X11/Xlib.h> Also, this patch introduce IMX_GPU_VIV_FIXUP_PKGCONFIG which fixes the pkgconfig files (for some reason default egl.pc file isn't the same as the one for fb target). Finally, this patch removes references to libVIVANTE which is now replaced by libVDK. Signed-off-by: Gary Bisson <gary.bisson@boundarydevices.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* daq: fix build against the musl C librarySergio Prado2018-01-121-9/+34
| | | | | | | | | | | Musl doesn't have <sys/unistd.h>, so let's change to <unistd.h>. Fixes: http://autobuild.buildroot.net/results/054f6581f67338b28af4dc2203b285ae1055581c http://autobuild.buildroot.net/results/99ec5d70b2ecf3a17fd5b5461d3e6b8ec0d22bfa Signed-off-by: Sergio Prado <sergio.prado@e-labworks.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* swupdate: bump to version 2017.11Jörg Krause2018-01-125-133/+71
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove upstream patch 0001-Fix-SHA256-hash-verification.patch. Re-enable support for Lua 5.1 and LuaJIT, which was removed in version 2017.09 because of compatibility issues [1]. Meanwhile, the issues have been resolved upstream [2]. Note, that `CONFIG_HANDLER_IN_LUA` is now supported by Lua 5.1/LuaJIT, too. Add a fixup command `SWUPDATE_SET_LUA_VERSION` to set the correct base name for the Lua/LuaJIT pkg-config file used by the swupdates config option `LUAPKG`. Fix a small type in the help text: 'in my mind' -> 'in mind'. Regenerated the .config script by doing: ``` make swupdate-menuconfig make swupdate-update-config ``` .. and removing the paths for the build options manually. [1] http://patchwork.ozlabs.org/patch/795958/ [2] https://github.com/sbabic/swupdate/commit/7b49b8dc59acc0591fe9823f1739ba7422eb30c7 Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* system: only expose getty options for busybox and sysvinitThomas Petazzoni2018-01-121-0/+4
| | | | | | | | | | | | | | | | Only busybox and sysvinit handle the BR2_TARGET_GENERIC_GETTY_TERM and BR2_TARGET_GENERIC_GETTY_OPTIONS options; the other init systems do not. So, protect those options behind appropriate dependencies on busybox or sysvinit. Fixes #10301. Reported-by: Michael Heinemann <posted@heine.so> Suggested-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* linux-firmware: add support for intel iwlwifi 9xxxPeter Seiderer2018-01-122-0/+11
| | | | | Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* linux-firmware: bump version to 65b1c68Peter Seiderer2018-01-122-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changes since last version (17e6288): 02d857e linux-firmware: DMC firmware for skylake v1.27 00a92a3 nfp: update firmware for Agilio CX SmartNICs c752e24 nfp: change firmware directory layout b39260f nfp: add firmware for tc-flower 89c6211 linux-firmware: intel: Add Cannonlake audio firmware 71a4800 amdgpu: update vega10 vce firmware 30946b9 amdgpu: add firmware for Raven 73d13b5 linux-firmware: Add firmware file for Intel Bluetooth 9560 041aff8 linux-firmware: Add firmware file for Intel Bluetooth 9260 c113d33 linux-firmware: Update firmware file for Intel Bluetooth 8265 a42f895 linux-firmware: Update firmware patch for Intel Bluetooth 8260 5d98692 Merge branch 'cnl' of git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/firmware e4252cf Revert commits a42f895, c113d33, 041aff8, 73d13b5 db9964e linux-firmware: Add firmware file for Intel Bluetooth 9560 97339b3 linux-firmware: Add firmware file for Intel Bluetooth 9260 9a843a1 linux-firmware: Update firmware file for Intel Bluetooth 8265 fdee922 linux-firmware: Update firmware patch for Intel Bluetooth 8260 bc2164d Merge commit 'b39260f04b9b0a9da8a337098f73cbca7c4e9b2d' of https://github.com/Netronome/linux-firmware 7f93c9d brcm: add CYW4373 firmwares and Cypress license file 2451bb2 linux-firmware: liquidio: add v1.7.0 vswitch firmware 2567e09 nvidia: add GP108 signed firmware 4a77cab linux-firmware: DMC firmware for cannonlake v1.07 2eefafb rtlwifi: rtl8723de: Add firmware for new driver/device 8650396 wl127x/wl128x: update firmwares 65b1c68 wl18xx: update firmware file 8.9.0.0.76 Signed-off-by: Peter Seiderer <ps.report@gmx.net> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* mcookie: correct wrong memset argumentPeter Korsgaard2018-01-121-1/+1
| | | | | | | | | | | | | | | | | | | Fixes #10216 Building mcookie generates a warning about possible wrong arguments to memset: mcookie.c:207:26: warning: argument to ‘sizeof’ in ‘memset’ call is the same expression as the destination; did you mean to dereference it? [-Wsizeof-pointer-memaccess] memset(ctx, 0, sizeof(ctx)); /* In case it's sensitive */ ctx is a pointer to a structure, so the code should use the size of the structure and not the size of the pointer when it tries to clear the structure, similar to how it got fixed upstream back in 2009: https://git.kernel.org/pub/scm/utils/util-linux/util-linux.git/commit/lib/md5.c?id=6596057175c6ed342dc20e85eae8a42eb29b629f Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* lz4: install programs as well as librariesThomas Petazzoni2018-01-121-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Prior to commit 8ad38a4fc2007df4bee9a941aed46c8771b6a84c ("package/lz4: bump version to r131"), the lz4 package was installing both libraries and programs, but this commit changed the behavior to only install libraries. The contributor might have been confused by the fact that the build command was "$(MAKE) ... -C $(@D) liblz4", suggesting that only the library was built. But since the install command was "$(MAKE) ... -C $(@D) install", the programs were effectively built as part of the install step, and installed as well. Since it makes sense for lz4 to also installs its programs, this commit adjusts the package accordingly. It is worth mentioning that using the "all" target during the build step is important. Indeed, otherwise the programs/Makefile has a "default" target that doesn't build everything (especially the lz4c program) and it end up being built as part of the install step, due to how the makefile dependencies are handled in the lz4 project. To make sure that everything gets built during the build step, we explicitly use the "all" target. Fixes bug #9996 Reported-by: Jamin Collins <jamin.collins@gmail.com> Initial-analysis-by: Arnout Vandecappelle <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* cjson: bump to version 1.7.1Fabrice Fontaine2018-01-122-2/+2
| | | | | Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* boinc: bump to version 7.8.5Fabrice Fontaine2018-01-122-2/+2
| | | | | Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* libsodium: bump to version 1.0.16Baruch Siach2018-01-122-2/+3
| | | | | | | | Add pgp signature reference. Cc: Frank Hunleth <fhunleth@troodon-software.com> Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* gnupg2: bump to version 2.2.4Baruch Siach2018-01-122-5/+6
| | | | | | | | Add license hash. Cc: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* libgcrypt: bump to version 1.8.2Baruch Siach2018-01-122-4/+5
| | | | | | | Add license hash. Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* e2fsprogs: bump to version 1.43.8Baruch Siach2018-01-122-3/+3
| | | | | Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* tslib: update to 1.15Martin Kepplinger2018-01-122-4/+5
| | | | | | | | | | | | As usual, https://github.com/kergoth/tslib/releases has the changelog summary. This release includes a new plugin "invert" that is being built by default; so we add that to the list of statically compiled in plugins for static builds. Signed-off-by: Martin Kepplinger <martink@posteo.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* busybox: don't remove S01logging when CONFIG_SYSLOGD is disabledThomas Petazzoni2018-01-101-1/+1
| | | | | | | | | | | | | | | | | | | The current busybox.mk explicitly removes S01logging if CONFIG_SYSLOGD is disabled in the Busybox configuration. However: - This causes the removal of the S01logging script potentially installed by another package (currently syslog-ng, rsyslog and sysklogd can all install a S01logging script). - We generally don't try to clean-up stuff that we may have installed in a previous make invocation and that is no longer needed following a configuration change. Fixes bug #10176 Reported-by: Karl Krach <mail@kkrach.de> Fix-provided-by: Karl Krach <mail@kkrach.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/kmsxx: don't install static libraries when BR2_SHARED_STATIC_LIBS=yThomas Petazzoni2018-01-101-1/+4
| | | | | | | | | | | | | | | | The kmsxx build system can only build either shared libraries *or* static libraries, not both. Therefore, the build currently fails when BR2_SHARED_STATIC_LIBS=y because we try to install the static libraries, that haven't been built. We fix this by not installing the static libraries when BR2_SHARED_STATIC_LIBS=y, making BR2_SHARED_STATIC_LIBS=y essentially the same as BR2_SHARED_LIBS=y for this package. Fixes bug #10331. Reported-by: Frederic MATHIEU <frederic.mathieu@dualis.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* xfsprogs: fix upstream submission linkThomas Petazzoni2018-01-101-1/+1
| | | | | | | The oss.sgi.com mailing list archives are no longer available, point to spinics.net instead. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/avahi: fix typo in avahi_tmpfiles.confThomas Petazzoni2018-01-101-1/+1
| | | | | | | | | | There is an obvious typo in avahi_tmpfiles.conf: avahi-autoipd is badly spelled. Fixes bug #10641. Reported-by: Michael Heinemann <posted@heine.so> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/intel-microcode: security bump to version 20180108Bernd Kuhls2018-01-102-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Quoting releasenote: "Intel Processor Microcode Package for Linux 20180108 Release -- Updates upon 20171117 release -- IVT C0 (06-3e-04:ed) 428->42a SKL-U/Y D0 (06-4e-03:c0) ba->c2 BDW-U/Y E/F (06-3d-04:c0) 25->28 HSW-ULT Cx/Dx (06-45-01:72) 20->21 Crystalwell Cx (06-46-01:32) 17->18 BDW-H E/G (06-47-01:22) 17->1b HSX-EX E0 (06-3f-04:80) 0f->10 SKL-H/S R0 (06-5e-03:36) ba->c2 HSW Cx/Dx (06-3c-03:32) 22->23 HSX C0 (06-3f-02:6f) 3a->3b BDX-DE V0/V1 (06-56-02:10) 0f->14 BDX-DE V2 (06-56-03:10) 700000d->7000011 KBL-U/Y H0 (06-8e-09:c0) 62->80 KBL Y0 / CFL D0 (06-8e-0a:c0) 70->80 KBL-H/S B0 (06-9e-09:2a) 5e->80 CFL U0 (06-9e-0a:22) 70->80 CFL B0 (06-9e-0b:02) 72->80 SKX H0 (06-55-04:b7) 2000035->200003c GLK B0 (06-7a-01:01) 1e->22" Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/{mesa3d, mesa3d-headers}: bump version to 17.3.2Bernd Kuhls2018-01-103-7/+7
| | | | | Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* configs/olimex_a20_olinuxino_lime*: bump Linux and U-Boot versionsFrancois Perrad2018-01-103-5/+5
| | | | | Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* webkitgtk: security bump to version 2.18.5Adrian Perez de Castro2018-01-102-5/+5
| | | | | | | | | | | | | | | This is a maintenance release of the current stable WebKitGTK+ version, which contains mitigations for CVE-2017-5753 and CVE-2017-5715, the vulnerabilities known as the "Spectre" attack. It also contains a fix which allows building the reference documentation with newer gtk-doc versions. Release notes can be found in the announcement: https://webkitgtk.org/2018/01/10/webkitgtk2.18.5-released.html Signed-off-by: Adrian Perez de Castro <aperez@igalia.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* linux-headers: bump 4.{4, 9, 14}.x seriesFabio Estevam2018-01-101-3/+3
| | | | | Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
OpenPOWER on IntegriCloud