Alexander Dahl
  1. Alexander Dahl

buildroot

Public
AuthorCommitMessageCommit dateIssues
Fabrice FontaineFabrice Fontaine
17a6404faf5azmq: bump to version 1.0.2Add license hash Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Christopher McCroryChristopher McCrory
716cfa6744bbind: use BIND_PKGDIR vairableUse the BIND_PKGDIR variable instead of package/bind. Signed-off-by: Christopher McCrory <chrismcc@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Yegor YefremovYegor Yefremov
c46f72b61e4scanpypi: fix licence detection handling for unknown licencesCheck for match object not being None. Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Yegor YefremovYegor Yefremov
cfafcfa9af4scanpypi: fix Py2/3 conversion leftoverUse urlparse from six package. Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Romain NaourRomain Naour
64ca9a51306package/htop: remove 0xe2 from MetersPanel.cThis non ascii character trigger an issue with MakeHeader.py. ./scripts/MakeHeader.py MetersPanel.c Traceback (most recent call last): File "./scripts/MakeHeader.py", line 32, in <module> for line in file.readlines(): File "[...]/output/host/lib/python3.6/encodings/ascii.py", line 26, in decode return codecs.ascii_decode(input, self.errors)[0] UnicodeDecodeError: 'ascii' codec can'...
Waldemar BrodkorbWaldemar Brodkorb
fc73a401be4gcc: add the real gcc bugfix for m68k from upstreamSigned-off-by: Waldemar Brodkorb <wbx@openadk.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Yegor YefremovYegor Yefremov
3a0c20c5309scanpypi: add support for Python3The script was changed via modernize utility. The only manual made part was the handling of StringIO. Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Giulio BenettiGiulio Benetti
14b7b8ac50esunxi-mali-mainline-driver: bump versionFor 4.16 support. git shortlog --invert-grep --grep travis --no-merges e752ddc8c4b9f2b9b9c6d193e2ba354caf8707f5.. Giulio Benetti (1): mali: Fix build in 4.16 Signed-off-by: Giulio Benetti <giulio.benetti@micronovasrl.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Romain NaourRomain Naour
ee5efb46441package/mesa3d-demos: bump to 8.4.0Use the new upstream url. Added all hashes provided by upstream. Rebase patch on top of 8.4.0 and convert it to git formated patch. Add a comment above "MESA3D_DEMOS_AUTORECONF = YES" See https://lists.freedesktop.org/archives/mesa-dev/2018-February/186542.html Signed-off-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Gaël PORTAYGaël PORTAY
cc2f3a2a592pkgconf: pkg-config.in: exec pkgconfReplace the shell script with pkgconf without creating a new process. Signed-off-by: Gaël PORTAY <gael.portay@savoirfairelinux.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Gaël PORTAYGaël PORTAY
cc526b428bbpkgconf: pkg-config.in: double quote $@The shell expands "$@" as "$1" "$2" "$3"... while it expands $@ as $1 $2 $3. With the second form, we loses spaces in positional parameters. As example, the following call pkg-config --cflags "one two" three is wrapped as pkgconf --cflags one two three while we are expecting pkgconf --cflags "one two" three "$@" is really useful when writing wrappers. It passes th...
Alex BaldwinAlex Baldwin
e44ae2afe7fliblo: link with libatomic when availableliblo uses atomic builtins that are only available inside libatomic on some architectures, so link with it when available. Fixes: http://autobuild.buildroot.net/results/c8bed3a3fa7d2b2258f573cbfcb01af07419e0bf/ Signed-off-by: Alex Baldwin <alexbaldwinmusic@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Alex BaldwinAlex Baldwin
2759ba03979liblo: disable werror to fix build issuesPass the --disable-werror option to remove -Werror, and therefore avoid a number of build failures. Fixes: http://autobuild.buildroot.net/results/61ab7e23d2ef62f055efc74a998e3c108a3cdb43 Signed-off-by: Alex Baldwin <alexbaldwinmusic@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Simon van der VeldtSimon van der Veldt
382fe9f9261linux: allow both in-tree and custom dts filesFor some boards, for example the Raspberry Pi, it's necessary to build in-tree dts files as well as custom/out of tree dts-files (dt-blob.bin). The existing logic made these two options exclusive, this commit changes that to allow both in-tree as well as custom sources for dts files. Signed-off-by: Simon van der Veldt <simon.vanderveldt@gmail.com> [Arnout: re-wrap help, add extra empty line, c...
Antoine TenartAntoine Tenart
e1a8cdca5d5iptables: bump to version 1.6.2Also removed a patch fixing the build with musl as it made its way into the 1.6.2 version. Signed-off-by: Antoine Tenart <antoine.tenart@bootlin.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Erik LarssonErik Larsson
8b8f664a94dlinux-firmware: add firmware for ath10k QCA6174 moduleSigned-off-by: Erik Larsson <karl.erik.larsson@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Giulio BenettiGiulio Benetti
4de24dc4a9asunxi-mali-mainline-driver: set parallel build according to buildrootsunxi-mali-mainline-driver builds using parallel compilation by default, using -j $(nproc), but this could be not wanted. Pass -j $(PARALLEL_JOBS) to build using jobs configured in buildroot. Signed-off-by: Giulio Benetti <giulio.benetti@micronovasrl.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Ryan CoeRyan Coe
e10f1eb5b13libite: update path for license filesTwo of the license files have moved in the source package. Update the package to reflect these changes. Fixes: http://autobuild.buildroot.net/results/8fd71513f021652a9a4ff2354dd5fe4fedf3d557 http://autobuild.buildroot.net/results/6a1ab663f1093351662ca7b86c9224a630798f35 http://autobuild.buildroot.net/results/066373da2da2cc8c0c22cc4a3048d1b187c9c389 http://autobuild.buildroot.net/results/edad6a...
Christian StewartChristian Stewart
576437cdb19go: bump to 1.10This commit bumps the Go programming language to the 1.10 release. Signed-off-by: Christian Stewart <christian@paral.in> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Ryan CoeRyan Coe
c8e60ff15eainadyn: bump version to 2.3Signed-off-by: Ryan Coe <bluemrp9@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Ryan CoeRyan Coe
fd576253868libite: bump version to 2.0.1Signed-off-by: Ryan Coe <bluemrp9@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Marcus FolkessonMarcus Folkesson
eaa81347ad3libostree: bump to version 2018.2Signed-off-by: Marcus Folkesson <marcus.folkesson@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter KorsgaardPeter Korsgaard
1d339809d61sunxi-mali-mainline-driver: bump versionFor 4.15 support and various fixes. This version now uses quilt to apply patches, which is not a required dependency of Buildroot - So add a POST_PATCH hook to change it to use apply-patches.sh instead. git shortlog --invert-grep --grep travis --no-merges 42c7c139c14103a83bb2ad7e7a1f0ed491f96500.. Giulio Benetti (7): Fix bulding driver twice. Fix 0014-mali-Make-devfreq-optional.pa...
Peter KorsgaardPeter Korsgaard
4fdf2d642b8sunxi-mali-mainline-driver: new packageAdd allwinner mali kernel driver package. Used in combination with userspace Allwinner openGL libraries, it gives possibility to use 3D openGL SoC acceleration. [Peter: Rename to sunxi-mali-mainline-driver. Use revision selection from sunxi-mali-mainline package. Depend on that package and default to y if dependencies are met. Tweak Linux config] Signed-off-by: Giulio Benetti <giulio.bene...
Peter KorsgaardPeter Korsgaard
7e469bb6464sunxi-mali-mainline: new packageAdd Allwinner Mali openGL userspace driver r6p2. Used combined with kernelspace Mali driver, it gives possibility to use 3D openGL SoC acceleration. It provides fbdev libraries and headers. It is compatible with Linux >= 4.4 as sunxi-mali-driver-mainline. [Peter: Move version logic to Config.in, ensure directories exists] Signed-off-by: Giulio Benetti <giulio.benetti@micronovasrl.com> Reviewed...
Baruch SiachBaruch Siach
4081ee424a8iproute2: fix build with uclibc-ngublibc-ng does not provide PF_VSOCK/AF_VSOCK definitions. Add them locally until ucblibc-ng updates its headers. Fixes: http://autobuild.buildroot.net/results/3d5/3d5a29e3c61ff071628c2937844ea4156059b3dd/ Cc: Petr Vorel <petr.vorel@gmail.com> Cc: Waldemar Brodkorb <wbx@openadk.org> Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Carlos SantosCarlos Santos
ca0e6272008liburiparser: bump to version 0.8.5 and move to GitHuburiparser 0.8.5 with bugfixes has been released. It has also moved from SourceForge to GitHub: https://uriparser.github.io/ Signed-off-by: Carlos Santos <casantos@datacom.ind.br> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Fabrice FontaineFabrice Fontaine
18f33eee21dlibupnp: bump to version 1.6.25Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Baruch SiachBaruch Siach
6320325eba2keepalived: bump to version 1.4.1Add license file hash. Cc: Ilias Apalodimas <apalos@gmail.com> Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Sergey MatyukevichSergey Matyukevich
53ae154c772configs/orange-pi-zero-plus2: enable WiFi supportOrange-Pi Zero Plus2 board has AP6212 WiFi/BT combo, but does not have ethernet port. So it makes sense to enable wireless networking by default: - add DTS patch enabling AP6212 WiFi/BT combo support -- this patch is on its way to mainline Linux v4.16 - enable WiFi support in kernel config - enable Broadcom brcmfmac kernel driver in kernel config - add Broadcom wireless firmware package to i...
Sergey MatyukevichSergey Matyukevich
5c5f2746019configs/orange-pi-zero-plus2: bump kernel and u-boot versionsBump versions: - use U-Boot 2008.01 - use Linux kernel v4.15.2 Drop patch with dts sdcard fix since it has been merged to Linux v4.15. Signed-off-by: Sergey Matyukevich <geomatsi@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Baruch SiachBaruch Siach
65a7e82c891iproute2: bump to version 4.15.0Keep the musl workaround patch for now, even though libc-compat.h has been updated from kernel v4.15. To take advantage of the new libc-compat.h we need a newer or patched version of musl. The workaround patch will be removed once musl is updated, and external autobuilders toolchains are rebuilt. Cc: Petr Vorel <petr.vorel@gmail.com> Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-b...
Baruch SiachBaruch Siach
6afee03e3cctoolchain: limit musl/kernel headers conflict workaroundThe musl/kernel headers workaround was added in commit 196932cd91 (toolchain: workaround musl/kernel headers conflict) to fix definition collisions in networking related headers between musl headers and kernel headers. Kernel headers from version 4.15 and newer do not need this workaround anymore since kernel commit c0bace798436bc (uapi libc compat: add fallback for unsupported libcs). The C li...
Baruch SiachBaruch Siach
b99ca5ce324musl: add more kernel headers guardsKernel version 4.15 (not 4.16 as the musl commit log claims) allows disabling of more parts of the kernel headers definitions. Add upstream musl patch that defines the relevant macros. This solves issues of networking related symbols redefinition in kernel headers that cause headers conflicts. With that in place a subsequent commit will limit the musl/kernel headers conflict avoidance workaroun...
Bernd KuhlsBernd Kuhls
9b22578afecpackage/lib{va, va-intel-driver, va-utils}: bump version to 2.1.0Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Romain NaourRomain Naour
9f869e7358epackage/htop: bump to 2.1.0No upstream hash provided with this release [1]. Add licence file hash. [1] http://www.freelists.org/post/htop/ANN-htop-210 Signed-off-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Bernd KuhlsBernd Kuhls
26e0186b5f4package/ffmpeg: bump version to 3.4.2Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Fabrice FontaineFabrice Fontaine
1063e9ef80ecjson: bump to version 1.7.3Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Waldemar BrodkorbWaldemar Brodkorb
879fa7f82a8systemd: allow to build with uClibc toolchainsWe need to disable any systemd parts using either IDN, NSS or gshadow. IDN is only disabled in C library function call to getnameinfo(), it does not effect libidn/libidn2 usage in systemd. Tested with qemu-system-arm. Signed-off-by: Waldemar Brodkorb <wbx@openadk.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Vincent StehléVincent Stehlé
27562c2bf38configs/amarula_vyasa_rk3288: uboot needs pylibfdtFor this platform, u-boot uses dtoc during the build, which needs Python libfdt. Set the corresponding option TARGET_UBOOT_NEEDS_PYLIBFDT in the defconfig. Signed-off-by: Vincent Stehlé <vincent.stehle@laposte.net> Cc: Jagan Teki <jagan@amarulasolutions.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Adam DuskettAdam Duskett
3c19c81d60fjson-for-modern-cpp: fix license hashFixes: http://autobuild.buildroot.net/results/942485b94f21567c2f35a1a3cc62450f3461a4f9 Signed-off-by: Adam Duskett <aduskett@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Adam DuskettAdam Duskett
0bfaedca37epython-flask-sqlalchemy: new packageFlask-SQLAlchemy is a Flask microframework extension which adds support for the SQLAlchemy SQL toolkit/ORM. Signed-off-by: Adam Duskett <aduskett@gmail.com> Reviewed-by: Yegor Yefremov <yegorslists@googlemail.com> [Thomas: fix check-package warnings.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Adam DuskettAdam Duskett
133a0a3b9e0python-sqlalchemy: new packageSQLAlchemy is the Python SQL toolkit and Object Relational Mapper that gives application developers the full power and flexibility of SQL. It provides a full suite of well known enterprise-level persistence patterns, designed for efficient and high-performing database access, adapted into a simple and Pythonic domain language. Signed-off-by: Adam Duskett <aduskett@gmail.com> Reviewed-by: Yego...
Vincent StehléVincent Stehlé
fe563efcb18configs/qemu_aarch64_virt_defconfig: bump kernel to 4.15.2Signed-off-by: Vincent Stehlé <vincent.stehle@laposte.net> Cc: Peter Korsgaard <peter@korsgaard.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Ryan CoeRyan Coe
61addf9107eglibc: needs host-bisonSince upstream commit 1faaf7035cabda101e1d6653bff7a539f201db91 ("plural.c: improve reproducibility"), glibc now requires bison to be available on the host for its build process. This is needed starting with glibc 2.27. Fixes: http://autobuild.buildroot.net/results/ca4d883793c1674d3a052edd5e56897f79683448/ Signed-off-by: Ryan Coe <bluemrp9@gmail.com> Signed-off-by: Thomas Petazzoni <thomas....
Adam DuskettAdam Duskett
58105f2df66busybox: bump to 1.28.0Other changes: - Update 0002-Makefile.flags-strip-non-l-arguments-returned-by-pkg.patch for 1.28.0 - Remove upstream patches 3, 4, and 5. - Update buxybox.config and busybox-minimal.config Signed-off-by: Adam Duskett <aduskett@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Julien BOIBESSOTJulien BOIBESSOT
0552b7fc387package/openssh: also install ssh-copy-id scriptThis script is useful to copy SSH keys between client and server [1] and installed on most distributions (for example on debian: [2]). [1] https://www.ssh.com/ssh/copy-id [2] https://packages.debian.org/fr/jessie/armhf/openssh-client/filelist Signed-off-by: Julien BOIBESSOT <julien.boibessot@armadeus.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> [Thomas: use full destination pat...
Bartosz GolaszewskiBartosz Golaszewski
f91a2b3772alibgpiod: bump version to v1.0This is a major update for libgpiod. The API is not compatible with the v0.x.y series but since nothing in current buildroot git depends on this project, I believe we can simply bump the version. The included tools are compatible with their 0.x.y counterparts. Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl> Reviewed-by: Jan Kundrát <jan.kundrat@cesnet.cz> Tested-by: Jan Kundrát <jan.kundra...
Fabrice FontaineFabrice Fontaine
421ac4fafb3rygel: bump to version 0.36.1Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Fabrice FontaineFabrice Fontaine
73569ed6f8bcjson: bump to version 1.7.2Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>