summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* testing/tests/download: test case for git refsRicardo Martincoski2019-02-048-0/+49
| | | | | | | | | | | | | | | | | | | | | | | | | | | | All upcoming tests for git refs will rely on the return code of make to determine whether a git ref can be downloaded or not and also to determine whether the downloaded content is correct (all of this taking advantage of the check-hash mechanism already in place for git packages). So to avoid false results i.e. in the case the check-hash mechanism become broken in the master branch, add some sanity checks before the actual test of download git refs. Add the minimum test case for git refs containing only sanity checks. Reuse the commit in the static repo. Add a br2-external with two packages to check that: - trying to download an invalid sha1 generates an error; - downloading a valid sha1 that contains unexpected content generates an error. In order to ease the maintenance and review, each upcoming patch adding checks to this test case will add at same time the commits to the static repo, the equivalent packages to the br2-external and code to the test case. Signed-off-by: Ricardo Martincoski <ricardo.martincoski@datacom.ind.br> Cc: Arnout Vandecappelle <arnout@mind.be> Tested-by: Matthew Weber <matthew.weber@rockwellcollins.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
* package/rrdtool: bump version from 1.6.0 to 1.7.0Charles Hardin2019-02-042-3/+5
| | | | | | | | | >From the releases at https://github.com/oetiker/rrdtool-1.x/releases which mentions this is not a user facing release but attempts to be more robust against odd input. Signed-off-by: Charles Hardin <charles.hardin@storagecraft.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/python-docker: bump version to 3.5.1Peter Korsgaard2019-02-043-55/+5
| | | | | | | | | | | Pypi now proves a sha256 hash as well. Drop 0001-setup.py-make-pip-optional.patch as upstream has now completely removed the docker-py checks: https://github.com/docker/docker-py/commit/accb9de52f6e383ad0335807f73c8c35bd6e7426 Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* python-docker-pycreds: bump version to 0.4.0Peter Korsgaard2019-02-042-5/+5
| | | | | | | | Needed by newer python-docker versions. Pypi now proves a sha256 hash as well. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* packages/glibc: Fix mcontext_t error that breaks RISC-V package buildsMark Corbin2019-02-041-0/+39
| | | | | | | | | | | | | | | The riscv-glibc repository version of glibc 2.26 will build for RISC-V 32bit, but when many packages are built against the resulting library an 'unknown type name mcontext_t' error is reported. The definition of mcontext_h in the ucontext.h header file needs to be moved outside of the '#ifdef __USE_MISC' structure to fix this issue. Fixes: http://autobuild.buildroot.net/results/5aa9cb29c459f511dc9c4fcf218dc9a842505aa3 Signed-off-by: Mark Corbin <mark.corbin@embecosm.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* libtommath: bump to version 1.1.0Francois Perrad2019-02-042-3/+6
| | | | | | | | The library was re-licensed to The Unlicense (https://unlicense.org/), more details on https://www.libtom.net/news/LTM_1.1.0RC1/ Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/pamtester: new packageCarlos Santos2019-02-045-0/+33
| | | | | | | | | | | | | | Utility for testing pluggable authentication modules (PAM) facility. While specifically designed to help PAM module authors to test their modules, that might also be handy for system administrators interested in building a centralised authentication system using common standards such as NIS, SASL and LDAP. Signed-off-by: Carlos Santos <casantos@datacom.com.br> Signed-off-by: Matthew Weber <matthew.weber@rockwellcollins.com> [Peter: drop spelling fix patch] Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* arch/mips: add (Marvell) Octeon III processorThomas De Schampheleire2019-02-041-0/+9
| | | | | | | | | | | | | The compiler recognizes a specific 'march' value for Octeon III processors, so create a 'Target Architecture Variant' entry for it in the target menu. Note: support for '-march=octeon3' was added in gcc 5.x. However, the official compiler provided by Marvell (Cavium Networks) uses gcc 4.7.x (and supports -march=octeon3 via their own modifications). For this reason, no line 'select BR2_ARCH_NEEDS_GCC_AT_LEAST_5' is added. Signed-off-by: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* arch/mips: add (Marvell) Octeon II processorThomas De Schampheleire2019-02-041-0/+8
| | | | | | | | The compiler recognizes a specific 'march' value for Octeon II processors, so create a 'Target Architecture Variant' entry for it in the target menu. Signed-off-by: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* arch/mips: introduce mips32r3 and mips64r3Thomas De Schampheleire2019-02-041-2/+18
| | | | | | | | | | | | | It's unclear why Buildroot only defined MIPS 32/64 releases 1, 2, 5 and 6 while 3 exists as well. Interesting fact: "Release 4 was skipped because the number four is perceived as unlucky in many Asian cultures." https://en.wikipedia.org/wiki/MIPS_architecture#MIPS32/MIPS64 Signed-off-by: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* support/testing/tests/download/gitremote: remove trailing whitespaceThomas Petazzoni2019-02-041-2/+2
| | | | | | | | | Fixes the following flake8 warnings: support/testing/tests/download/gitremote.py:29:67: W291 trailing whitespace support/testing/tests/download/gitremote.py:30:60: W291 trailing whitespace Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* package/bird: bump version to 2.0.3Adrien Gallouët2019-02-043-47/+4
| | | | | | | | Patch 0001 is no longer needed as it has been ported to this version. Also, the README changes but the licence is still GPL-2.0+ Signed-off-by: Adrien Gallouët <adrien@gallouet.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* Makefile: respect strip exclusions for special librariesJohn Keeping2019-02-041-20/+26
| | | | | | | | | | | | | | | | | | ld-*.so and libpthread*.so* are not stripped in the same way as other binaries because some applications need symbols in these libraries in order to operate correctly. However, the special handling for these binaries ignores the usual BR2_STRIP_EXCLUDE_* rules so it is not possible to build an image which has debugging symbols in these binaries. Pull out the common find functionality so that we can build two find commands that re-use the common exclusion rules. Fix-suggested-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Signed-off-by: John Keeping <john@metanate.com> Tested-by: Matt Weber <matthew.weber@rockwellcollins.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* testing/tests/download: add git hash testRicardo Martincoski2019-02-0419-0/+136
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add one test case to ensure the hash is checked for git packages: - correct hash; - wrong hash; - no hash file. Add required infra: - a GitRemote class, that can start a git server in the host machine to emulate a remote git server under the control of the test; - a new base class, called GitTestBase, that inherits from BRTest and must be subclassed by all git test cases. Its setUp() method takes care of configuring the build with a br2-external, avoiding to hit http://sources.buildroot.net by using an empty BR2_BACKUP_SITE. It also avoids downloading not pre-installed dependencies (i.e. lzip) every time by calling 'make dependencies' using the common dl directory, and it instantiates the GitRemote object. Besides the Python scripts, add some fixtures used during the tests: - a br2-external (git-hash) with one package for each part of the test case; - a static git bare repo (repo.git) to be served using GitRemote class. Neither the br2-external nor the check hash functionalities are the subject of these tests per se, so for simplicity limit the check to the error codes and don't look for the messages in the log. Thanks to Arnout for the hint about how to add a bare repo to test. Signed-off-by: Ricardo Martincoski <ricardo.martincoski@datacom.ind.br> Cc: Arnout Vandecappelle <arnout@mind.be> Tested-by: Matthew Weber <matthew.weber@rockwellcollins.com> [Arnout: split long line; reorder imports to satisfy flake8] Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
* package/utp_com: new packageVincent Prince2019-02-045-0/+33
| | | | | | | | | | This tool is used to send commands to imx6 based hardware using NXP's UTP protocol. Cc: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Vincent Prince <vincent.prince.fr@gmail.com> Signed-off-by: Matthew Weber <matthew.weber@rockwellcollins.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* package/sg3_utils: add support for building host variantMatt Weber2019-02-041-0/+1
| | | | | | | Initially used by the host build of the utp_com package. Signed-off-by: Matthew Weber <matthew.weber@rockwellcollins.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* infra: add force build flag for host dependenciesBryce Ferguson2019-02-042-0/+18
| | | | | | | | | | | | | | | This commit adds a config option which will force buildroot to build all host dependencies even if they are already present on the host system. This may be a desirable option if different hosts are used to build the same source. In this case, some packages will be built on one host that are not built on another. This is problematic if build source archives are cached afterwards for offline builds. Cc: Peter Korsgaard <peter@korsgaard.com> Signed-off-by: Bryce Ferguson <bryce.ferguson@rockwellcollins.com> Signed-off-by: Matt Weber <matthew.weber@rockwellcollins.com> [Peter: reword, drop exit 1, reshuffle] Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* support/scripts/graph-build-time: replace confusing colorsThomas De Schampheleire2019-02-041-1/+1
| | | | | | | | | | | The color for 'extract' is very similar to the one for 'install-images'. Both are cyan-like. Replace the former by a pale blue to make all colors sufficiently distinct. Signed-off-by: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com> Tested-by: Matthew Weber <matthew.weber@rockwellcollins.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
* support/scripts/graph-build-time: add download timesMathias De Mare2019-02-041-3/+3
| | | | | | | | | | | | | | | Total build time also involves download. Getting a visibility on the impact of that step can be important for users/admins, e.g. to evaluate different methods of BR2_PRIMARY_SITE. Colors used are some kind of purple (primary scheme) and light orange (alternate scheme). Signed-off-by: Mathias De Maré <mathias.de_mare@nokia.com> [ThomasDS: rebase and update colors to avoid confusion] Signed-off-by: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com> Tested-by: Matthew Weber <matthew.weber@rockwellcollins.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
* package/pugixml: add support for a limited set of configuration optionsWouter Vermeiren2019-02-042-0/+46
| | | | | | | | | | | | | | | | | | | | | | | Add config options for a few pugixml configurables. - Xpath support is enabled by default but has a size impact. Disabling it reduces the size significantly (it almost halves). Output of 'size' on the library compiled for x86: - Xpath support enabled 160374 1244 28 161646 2776e output/target/usr/lib/libpugixml.so.1.7 - Xpath support disabled 92754 880 8 93642 16dca usr/lib/libpugixml.so.1.7 - Compact and header-only modes are not strictly needed for our use case, but we did the work anyway and may be useful for someone else. Signed-off-by: Wouter Vermeiren <wouter.vermeiren@nokia.com> [ThomasDS: - align with Buildroot coding style - retain only feature options: xpath, compact mode, header-only] Signed-off-by: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com> Tested-by: Matthew Weber <matthew.weber@rockwellcollins.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
* package/ntp: use common sysv init installMatt Weber2019-02-041-2/+6
| | | | | | | | | Previously the sysv init script install was conditional based on ntpd being selected, now that sntp also has an init script and could be selected independent of ntpd, a common install is necessary. Signed-off-by: Matthew Weber <matthew.weber@rockwellcollins.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
* docs/website: fixing query.yahooapis.com shutdownAngelo Compagnucci2019-02-042-10/+10
| | | | | | | | | | | | | | This patch rework the use of query.yahooapis.com to do the conversion from xml to json required by our script and moves to the use of a js library. Datas are therefore now converted in json format on the client. Unfortunately, cause of the CORS restriction on nabble and buildroot.org, we cannot retrieve directly the xml data from these servers and we need a CORS proxy to do that. Signed-off-by: Angelo Compagnucci <angelo@amarulasolutions.com> [Peter: use sha256 integrity] Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* docs/website: consolidate CDN's and enable SRIJames Hilliard2019-02-042-6/+6
| | | | | | | | | | | | | | Some of our cdn's are going discontinued (rawgit) and some others are not recommended anymore, thus we update to the recommended cdnjs. This patch enables also SRI protection on js to be sure the modules we download are not manipulated in any way. About SRI: https://developer.mozilla.org/en-US/docs/Web/Security/Subresource_Integrity Signed-off-by: James Hilliard <james.hilliard1@gmail.com> Signed-off-by: Angelo Compagnucci <angelo@amarulasolutions.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/systemd: fix build on mips32Fabrice Fontaine2019-02-041-0/+116
| | | | | | | | | Fixes: - http://autobuild.buildroot.org/results/e484bc976266633029b26c8e21959ae4e9137da3 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Reviewed-by: Titouan Christophe <titouan.christophe@railnova.eu> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* Makefile: add update-defconfig targetVivien Didelot2019-02-041-2/+5
| | | | | | | | | | For symmetry with the Kconfig-based packages offering comprehensive targets like linux-update-defconfig, barebox-update-defconfig and so on, add a new top level update-defconfig target to run savedefconfig. Signed-off-by: Vivien Didelot <vivien.didelot@gmail.com> Reviewed-by: Titouan Christophe <titouan.christophe@railnova.eu> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/{clapack,armadillo}: re-enable on MIPSThomas De Schampheleire2019-02-042-3/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Commit d2b52cebf3b8b4a922a54d38a44a8a183406c5f1 disabled clapack on MIPS platforms, to fix an autobuild failure (unfortunately, the results are no longer available). The argument was: "Disable this package for MIPS because it needs IRIX headers and libraries." Nevertheless, today compilation on MIPS seems to work fine. Testing was done with test-pkg (armadillo depends on clapack): $ echo "BR2_PACKAGE_ARMADILLO=y" > config.snippet; $ utils/test-pkg -p armadillo -a -c config.snippet br-mips32r6-el-hf-glibc [1/8]: OK br-mips64-n64-full [2/8]: OK br-mips64r6-el-hf-glibc [3/8]: OK br-mipsel-o32-full [4/8]: OK mips64el-ctng_n32-linux-gnu [5/8]: OK mips64el-ctng_n64-linux-gnu [6/8]: OK sourcery-mips64 [7/8]: OK sourcery-mips [8/8]: OK 8 builds, 0 skipped, 0 build failed, 0 legal-info failed Manual build tests were also done for mips32r2 with gcc 4.9.x and gcc 7.x, and for M5150 with gcc 7.x (Buildroot-built toolchains in these three cases). Also building and running on Octeon III, using the toolchain provided by Cavium Networks / Marvell, works fine. Not seeing any problem (but also not understanding the original problem), re-enable clapack (and armadillo) on MIPS. If any problems would pop up in the future, they should be investigated in detail and a more fine-grained solution should be taken than disabling on MIPS altogether. Signed-off-by: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* package/libgeotiff: add optional proj dependencyFabrice Fontaine2019-02-041-0/+7
| | | | | Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* package/qemu: remove host-python dependency.Adam Duskett2019-02-041-6/+3
| | | | | | | | Now that Buildroot requires python >= 2.7, qemu no longer needs a host-python, as it does not use any external Python modules to build. Signed-off-by: Adam Duskett <Aduskett@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* package/libcpprestsdk: bump to version v2.10.10Adam Duskett2019-02-042-2/+2
| | | | | Signed-off-by: Adam Duskett <Aduskett@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* package/opentracing-cpp: needs threadsThomas De Schampheleire2019-02-041-2/+3
| | | | | | | | | opentracing-cpp uses std::mutex since 1.3.0. Fixes: http://autobuild.buildroot.net/results/121a9f2aacf9e7b1f5d0b3f2c55bc1da36c7cfb6/ Signed-off-by: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* prerequisite.txt: Bump python dependency to 2.7Adam Duskett2019-02-041-1/+1
| | | | | | | We now require python 2.7+, so update prerequisite.txt to match. Signed-off-by: Adam Duskett <Aduskett@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* dependencies.sh: Check for a host python version >= 2.7Adam Duskett2019-02-041-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Older distributions such as CentOS6 come with python2.6, which causes build failures in packages such as host-libglib2 because they require python2.7 and above. host-libglib2 will produce the error message: /bin/sh: python2.7: command not found Python2.7 is a hard-coded value in configure.ac. If one changes the value to just "python," the following stack trace is produced: Traceback (most recent call last): File "./gdbus-2.0/codegen/gdbus-codegen.in", line 55, in <module> self.outfile.write(LICENSE_STR.format(config.VERSION)) ValueError : sys.exit(codegen_main.codegen_main()) zero length field name in format Instead of supporting an ancient version of Python that had its support ended in October os 2013, it would be more pragmatic only to support Python2.7 and above. Luckily; CentOS6 has the centos-release-scl repository, which allows users to install python2.7, and Debian 8 comes with Python2.7 already, making this patch relatively low impact. Signed-off-by: Adam Duskett <Aduskett@gmail.com> [Peter: only look at major.minor to handle x.y.z with z < 10] Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/libpcap: bump to version 1.9.0Fabrice Fontaine2019-02-043-3/+29
| | | | | | | | | | | - Disable Endace DAG card support as libdag is not available in buildroot - Add upstream patch to fix build on musl Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Reviewed-by: Titouan Christophe <titouan.christophe@railnova.eu> Tested-by: Yann E . MORIN <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/systemd: add optional iptables dependencyFabrice Fontaine2019-02-041-0/+7
| | | | | | Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* package/kf5/kf5-kcoreaddons: new packagePierre Ducroquet2019-02-044-0/+34
| | | | | | | | | | | | | | | | | | | | | | | | | KCoreAddons provides classes built on top of QtCore to perform various tasks such as manipulating mime types, autosaving files, creating backup files, generating random sequences, performing text manipulations such as macro replacement, accessing user information and many more. Signed-off-by: Pierre Ducroquet <pinaraf@pinaraf.info> [yann.morin.1998@free.fr + titouan.christophe@railnova.eu: - add missing qt5tools select - fix hash for new version - fix check-package ] Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr> Signed-off-by: Titouan Christophe <titouan.christophe@railnova.eu> [Thomas: - fix typo in LICENSE_FILE -> LICENSE_FILES - add hash for license file - change license to LGPL-2.1 instead of LGPL-2.1+, since at least one file says "2.1" without the "or later" option, and so saying just LGPL-2.1 is the safe choice ] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* Introduce the variable BR2_TOOLCHAIN_HAS_UCONTEXTPatrick Havelange2019-02-042-10/+11
| | | | | | | | | | It is set when the platform exposes the struct ucontext_t. This avoids duplication of logic inside each package requiring the use of that type. Signed-off-by: Patrick Havelange <patrick.havelange@essensium.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/libgeotiff: fix build without C++Fabrice Fontaine2019-02-041-0/+65
| | | | | | | | | | | | | | | | Do not check for C++ compiler as libgeotiff is written in C otherwise build will fail on toolchains without a working C++ compiler: checking how to run the C++ preprocessor... /lib/cpp configure: error: in `/data/buildroot/buildroot-test/instance-1/output/build/libgeotiff-1.4.2': configure: error: C++ preprocessor "/lib/cpp" fails sanity check Fixes: - http://autobuild.buildroot.org/results/72f1c5c1b8fc337a1cff4b280abe99afd65f945b Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* package/intel-gmmlib: new packageLouis-Paul Cordier2019-02-045-0/+33
| | | | | | Signed-off-by: Louis-Paul Cordier <lpdev@cordier.org> [Thomas: updated DEVELOPERS file, bump to 18.4.1.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* package/ncdu: bump to version 1.13Gilles Talis2019-02-042-4/+7
| | | | | | | | Also added license hash Signed-off-by: Gilles Talis <gilles.talis@gmail.com> [Thomas: use a sha256 hash for the license file.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
* package/openssh: Set /var/empty permissionsChris Lesiak2019-02-031-0/+4
| | | | | | | | | | | | The openssh privilege separation feature, enabled by default, requires that the path /var/empty exists and has certain permissions (not writable by the sshd user). Note that nothing ever gets writting in this directory, so it works fine on a readonly rootfs. See README.privsep included as part of the openssh distribution. Signed-off-by: Chris Lesiak <chris.lesiak@licor.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
* package/netsurf: use TMP_PREFIX inside the build directoryThomas Petazzoni2019-02-031-1/+2
| | | | | | | | | | | | | | | | | | | | | | | The netsurf build system creates a stamp file inside TMP_PREFIX to know if the build was done, and if the stamp file exists, it doesn't do any build. Therefore, having this stamp file in STAGING_DIR prevents from rebuilding netsurf, even after removing its entire build directory: the stamp file exists in STAGING_DIR, and netsurf doesn't build anything, causing the installation to fail. We fix this by putting this temporary directory inside the netsurf build directory. We must mkdir this directory manually, otherwise the build fails with: COMPILE: src/stylesheet.c In file included from src/stylesheet.c:12:0: src/stylesheet.h:14:10: fatal error: libwapcaplet/libwapcaplet.h: No such file or directory ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~ compilation terminated. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> [Arnout: mkdir it first] Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
* package/ntp: sntp time sync scriptMatt Weber2019-02-034-1/+70
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch adds the installation of a startup script if the sntp utility is selected as an option. The utility is design to do a one time step/slew adjustment of the system time (similar to the ntpdate tool http://support.ntp.org/bin/view/Dev/DeprecatingNtpdate). One nice benefit over ntpdate is that sntp can run while ntpd is still running. However, ntpd may still need to be restarted if the time step was large enough. The script provides the ability to override the arguments as part of a /etc/defaults/sntp file. On a local LAN, the initial large step adjustment took less then one second to be retrieved and system time updated. If a user already has a RTC maintaining the time and the system was powered off for a long period of time, the script assumes a slew adjustment when +/- 128ms, rather then a time step(jump). This could be further tuned by a user with the /etc/defaults/sntp configuration file. One NTP pool server is being set as sntp uses all of the servers provided when the DNS is resolved as servers to attempt to retrieve time from before timing out. It looks like currently that is 4 servers per *pool.ntp.org hostname. Cc: Oscar Gomez Fuente <oscargomezf@gmail.com> Signed-off-by: Matthew Weber <matthew.weber@rockwellcollins.com> Tested-by: Oscar Gomez Fuente <oscargomezf@gmail.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
* linux: add option to enable support for Device Tree overlaysTitouan Christophe2019-02-032-0/+12
| | | | | | | | | | Add an option to compile device trees in Linux with symbol generation such that device tree overlays can be loaded on the target system Signed-off-by: Titouan Christophe <titouan.christophe@railnova.eu> [Arnout: remove "default n" and move setting of LINUX_MAKE_ENV to the place where the rest is set.] Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
* libpcap: add support for bluez5_utilsFabrice Fontaine2019-02-021-1/+2
| | | | | | | | | bluez5_utils support has been added since version 1.8.0 and https://github.com/the-tcpdump-group/libpcap/commit/b3776f3d50df9de9fcf702bd21a3ecb2539ffef4 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Reviewed-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* libpcap: remove unrecognized canusb optionFabrice Fontaine2019-02-021-7/+0
| | | | | | | | | canusb has been removed since version 1.8.1 and https://github.com/the-tcpdump-group/libpcap/commit/93ca5ff7030aaf1219e1de05ec89a68384bfc50b Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Reviewed-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/wireguard: bump version to 0.0.20190123Peter Korsgaard2019-02-022-3/+3
| | | | | | | For details of the changes, see the announcement: https://lists.zx2c4.com/pipermail/wireguard/2019-January/003805.html Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/s6-linux-utils: bump to 2.5.0.0Thomas De Schampheleire2019-02-023-30/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | In 2.4.0.2, compilation under glibc 2.28 is fixed (and our local patch can thus be removed). While at it, bump to the latest released version 2.5.0.0. Note: change in COPYING file is only the copyright year. >From the NEWS file: """ In 2.5.0.0 ---------- - Optional nsss support. - s6-devd, s6-uevent-listener, s6-uevent-spawner removed. In 2.4.0.2 ---------- - s6-logwatch rewrite. - Better portability with old glibc versions. - s6-uevent-listener and s6-uevent-spawner are marked as deprecated. (The mdevd package obsoletes them.) """ Signed-off-by: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* pcre2: bump to version 10.32Fabrice Fontaine2019-02-023-53/+4
| | | | | | | | | - Remove patch (already in version) - Update hash of license file: https://vcs.pcre.org/pcre2/code/trunk/LICENCE?r1=1001&r2=910 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/opentracing-cpp: bump version to v1.5.1Jan Heylen2019-02-023-79/+5
| | | | | | | | | | | Bump opentracing-cpp from 1.2.0 to 1.5.1. The license has changed from MIT to Apache-2.0. The patch is removed because it has been upstreamed. Signed-off-by: Jan Heylen <jan.heylen@nokia.com> [ThomasDS: Additional bump from v1.3.0 to v1.5.1] Signed-off-by: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
* package/aircrack-ng: bump to version 1.5.2Fabrice Fontaine2019-02-022-3/+3
| | | | | Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
OpenPOWER on IntegriCloud