Alexander Dahl
  1. Alexander Dahl

buildroot

Public
AuthorCommitMessageCommit dateIssues
Gustavo ZacariasGustavo Zacarias
a8a96c0d17asshfs: bump to version 2.5Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Gustavo ZacariasGustavo Zacarias
f6305d135earng-tools: argp-standalone required for uclibc toolchains onlySigned-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Maxime HadjinlianMaxime Hadjinlian
0e48a4efdf2rtmpdump: bump versionRtmpdump was not compatible with BR's version of PolarSSL, the bump fixes that. Fixes: http://autobuild.buildroot.net/results/55bda4076af031db9778d97f9ddc5c6b14de17ce http://autobuild.buildroot.net/results/9ba2f8ecb0a73cc7e625faf713ad4161202b2293 http://autobuild.buildroot.net/results/4e1988f049fa97574da54e5097e5ef1668c2687c http://autobuild.buildroot.net/results/02a15ad5211a1e620002c442ce2561...
Gustavo ZacariasGustavo Zacarias
8c63b64d5d1linux: bump to version 3.13.1Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Gustavo ZacariasGustavo Zacarias
a7598d586balinux-headers: bump 3.{4, 13}.x stable versionsSigned-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Gustavo ZacariasGustavo Zacarias
6cde69fa64asg3_utils: bump to version 1.37Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Gustavo ZacariasGustavo Zacarias
0586b24a594collectd: bump to version 5.4.1Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Simon DawsonSimon Dawson
e7d309cba02vlc: add libass supportSigned-off-by: Simon Dawson <spdawson@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Yegor YefremovYegor Yefremov
3bc4c064d22libsocketcan: add license information and fix formattingSigned-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Yegor YefremovYegor Yefremov
02215682e76mxml: bump to 2.8Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Yann E. MORINYann E. MORIN
5e3b1f31b3fpackage/rpi-userland: fix fall-out after cmake infra changeCset 9fa7f2b (pkg-cmake.mk: build shared library when !BR2_PREFER_STATIC_LIB) broke rpi-userland. Force not building shared libs for rpi-userland, since they are broken. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Samuel Martin <s.martin49@gmail.com> Cc: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Gustavo ZacariasGustavo Zacarias
25926af57c5libusb: disable udev support for host variantThere's no guarantee that udev with development files is present in the host, so disable it. Fixes: http://autobuild.buildroot.net/results/7bb/7bbf6ec25250dea96503253ac468adfef77a9010/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Julien BoibessotJulien Boibessot
ad82e739b92Add SMS Tools Server 3 package[Peter: move to hw menu, int type for nr modems, drop _BINARIES_DIR variable, fix config file name] Signed-off-by: Julien Boibessot <julien.boibessot@armadeus.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Yann E. MORINYann E. MORIN
5d467895501package/pkg-cmake: disable colouring the outputcmake is the only build-system we support that does colour its output, Also, since parallel builds generates intermixed output lines, it makes for ugly-looking output. Just disable cmake colouring globally. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Yann E. MORINYann E. MORIN
984524fda1ffs: ensure $(TARGET_DIR_WARNING_FILE) is writableIf the Buildroot tree is read-only, then $(TARGET_DIR_WARNING_FILE) is copied read-only into target/ but we may want to remove it during the build process. This poses no real problem, since target/ itself is guaranteed to be writable, but for good measure, force $(TARGET_DIR_WARNING_FILE) to be writable itself. Reported-by: Danomi Manchego <danomimanchego123@gmail.com> Signed-off-by: "Yann E....
Yann E. MORINYann E. MORIN
bbb1e7ae218package/uClibc: ensure .config is writableIf $(UCLIBC_CONFIG_FILE) is read-only (eg. because Buildroot's source dir is), the sed fixups to .config fail. Signed-off-by: Nathan Lynch <ntl@pobox.com> [yann.morin.1998@free.fr: use $(INSTALL) instead of cp] Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Yann E. MORINYann E. MORIN
0a541c8f244linux: ensure buildroot_defconfig is writableIf $(KERNEL_SOURCE_CONFIG) is read-only (eg. because Buildroot's source dir is), the rm of $(KERNEL_ARCH_PATH)/configs/buildroot_defconfig will either fail, or prompt the user, both of which we want to avoid. Make it writable by using $(INSTALL). Fixes: #4363 Signed-off-by: Nathan Lynch <ntl@pobox.com> [yann.morin.1998@free.fr: use $(INSTALL) instead of cp, don't 'rm -f'] Signed-off-by: "Yann...
Nathan LynchNathan Lynch
9b659b815bbbusybox: ensure $(BUSYBOX_BUILD_CONFIG) is writableIf $(BUSYBOX_CONFIG_FILE) is read-only (eg. because Buildroot's source dir is), the sed fixups to $(BUSYBOX_BUILD_CONFIG) fail. Fixes: #4363 Signed-off-by: Nathan Lynch <ntl@pobox.com> [yann.morin.1998@free.fr: use $(INSTALL) instead of cp] Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Arnout Vandecappelle <arnout@mind.be> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Nathan LynchNathan Lynch
5f52d7a8bd6target: ensure target/ dir is writableIf the source target skeleton is read-only (eg. because Buildroot's source dir is), modifications to the output target (such as creating /etc/hostname and /etc/issue) fail. (This can happen if the Buildroot source dir is NFS-mounted read-only to be shared between different machines, for example). Signed-off-by: Nathan Lynch <ntl@pobox.com> [yann.morin.1998@free.fr: we use rsync now, not cp; -...
Yann E. MORINYann E. MORIN
167ca173f6fRevert "package/tzdata: install a default localtime"This reverts commit f96e4d7f348ce1b7b53763f102bbedb1ef6a1991. As suggested by Thomas, we need to find a single solution that is valid for both (e)glibc and uClibc. There is work on-going by Alexandre, so just revert this for now. Reported-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Thomas Petazzoni <thomas.petazzoni@...
Gustavo ZacariasGustavo Zacarias
d8fd2b3ed65php: security bump to version 5.5.8Fixes CVE-2013-6712. Note that there's no xz format tarball for 5.5.8. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>CVE-2013
Maxime HadjinlianMaxime Hadjinlian
08b32ea9588libass: new packagelibass is a portable subtitle renderer for the ASS/SSA (Advanced Substation Alpha/Substation Alpha) subtitle format. This package was originally found at : https://github.com/huceke/buildroot-rbp By gimli <ebsi4711@gmail.com> [Peter: make fontconfig/enca optional, fix license, add host-pkgconf, optionaliconv/harfbuzz support] Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Cc: ...
Gustavo ZacariasGustavo Zacarias
1a71a270e1aethtool: bump to version 3.13Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Yann E. MORINYann E. MORIN
063ab4de0fbpackage/tmux: new package[Peter: fix license info] Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Gustavo ZacariasGustavo Zacarias
2951d1e2075libusb-compat: bump to version 0.1.5Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Gustavo ZacariasGustavo Zacarias
f92aa38db31libusb: bump to version 1.0.18Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Gustavo ZacariasGustavo Zacarias
3f5906324aaradvd: bump to version 1.9.8Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Gustavo ZacariasGustavo Zacarias
890d2a37287iw: bump to version 3.14Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Maxime HadjinlianMaxime Hadjinlian
a95d9e19c5blibenca: new packageExtremely Naive Charset Analyser. This package was originally found at : https://github.com/huceke/buildroot-rbp By gimli <ebsi4711@gmail.com> [Peter: drop libiconv dep, tools patch, simplify host tools build] Signed-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Cc: gimli <ebsi4711@gmail.com> Cc: Bernd Kuhls <berndkuhls@hotmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Frank HunlethFrank Hunleth
da18018b5f0erlang: bump version to R16B03-1OTP R16B03-1 is a service release which corrects a few issues found in the R16B03 release. The corrections are: - The ODBC application was missing in the prebuilt Windows installers - 3 corrections in the SSL application: - Add missing validation of the server_name_indication option and test for its explicit use. - Elliptic curve selection in server mode now properly selects a cur...R16B03-1
Gustavo ZacariasGustavo Zacarias
d70300031calm_sensors: bump to version 3.3.5Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Chris PackhamChris Packham
a2ff491db36tcpreplay: Bump version to 4.0.2Signed-off-by: Chris Packham <judge.packham@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Yegor YefremovYegor Yefremov
44092444554libnftnl: add JSON and XML parsing supportSigned-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter KorsgaardPeter Korsgaard
9eefa845a26libcdio: make C++ support optionalC++ support is only needed for the example programs (that we don't build) and C++ bindings. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter KorsgaardPeter Korsgaard
3ff91126e63libcdio: forcibly disable libcddb supportWe don't have libcddb in Buildroot, and the detection handling in configure uses pkg-config, so explicitly disable it so we don't need to build host-pkgconf just to notice that it isn't available. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Bernd KuhlsBernd Kuhls
c80977deda5libcdio: cdda-player depends on ncursesSigned-off-by: Bernd Kuhls <berndkuhls@hotmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter KorsgaardPeter Korsgaard
999a91afa3crtmpdump: don't force a crypto backendrtmpdump CAN work without a crypto backend (by passing CRYPTO=), so don't enforce gnutls. Fixes a dependency issue as gnutls needs wchar, but rtmpdump (and polarssl/openssl) don't. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter KorsgaardPeter Korsgaard
8e467ce2a7drtmpdump: fix CFLAGS/LDFLAGSThe rtmpdump makefile looks at XCFLAGS/XLDFLAGS for additional flags, so use those instead of completely overriding the flags. Fixes http://autobuild.buildroot.net/results/190/1902a6613e5fc9656842fbcbd5731ac871d7ef59/ Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter KorsgaardPeter Korsgaard
8476e5ad45atcpreplay: fix build errors when tcpdump (verbose) isn't enabledPatch from Chris' pull request. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Peter KorsgaardPeter Korsgaard
b304ff7f7dbvorbis-tools: fix libm linking issueFixes http://autobuild.buildroot.net/results/d48/d488dc5e1d684124e7367dac00ba2fb8c7b1b876/ ogg123 calls math functions but forgets to link with libm. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Andrew RuderAndrew Ruder
c443c2be176gcc 4.8.2: arm fixes for stack corruptionThis seems to especially affect the kernel, but in an interrupt-heavy system, this fixes a bug that can cause frequent NULL pointer dereference crashes on ARM systems. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
NixNix
f5437a65020Makefile: Unexport TAR_OPTIONSGNU tar > 1.13.17 interprets TAR_OPTIONS as an environment variable containing options to be prepended to the set on the command line. Since we use the same variable, if the user's environment already contains TAR_OPTIONS, our use of the same variable name modifies the environment and causes untars to misbehave when TAR_OPTIONS causes a -xf to be prepended to the tar command line, likely conve...
Baruch SiachBaruch Siach
b392a24adbepoco: fix nios2 fenv build failureDisable FP environment on nios2. Fixes: http://autobuild.buildroot.net/results/3ce/3ce9d6dc5c4e8fceebaa461e5085da7f33fda8a1/ Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Romain NaourRomain Naour
a7476718138openpowerlink: force static library buildThere is no shared lib in openpowerlink, so force static lib to build libpowerlink.a Fixes: http://autobuild.buildroot.net/results/b33/b33008d260c95bedc52bed48f191f76843612ef9/build-end.log http://autobuild.buildroot.net/results/c46/c464bdfb8edaaf69d49ade92ef9cc6f45cc73362/build-end.log Signed-off-by: Romain Naour <romain.naour@openwide.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Samuel MartinSamuel Martin
34924f620d7gtest: force static library buildWhile it seems possible to build gtest as a shared library, using it in other projects requires to set some specific configuration flags in these projects for correctly linking against the shared version of the gtest library. So, to avoid bothering many projects and keep things as they were so far, we just force gtest to be built as a static library. Fixes: http://autobuild.buildroot.net/re...
Maxime HadjinlianMaxime Hadjinlian
f873de877d6libcurl: Add rtmp supportSigned-off-by: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Cc: Bernd Kuhls <berndkuhls@hotmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Gustavo ZacariasGustavo Zacarias
18ed49e4d53linux-headers: bump 3.{10, 12}.x stable versionsSigned-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Arnaud RébilloutArnaud Rébillout
1ba3432ab3elftp: bump to 4.4.15 and remove cross-compile patch.The patch has been accepted upstream. See: http://www.mail-archive.com/lftp-devel%40uniyar.ac.ru/msg01841.html Signed-off-by: Arnaud Rébillout <rebillout@syscom.ch> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Yegor YefremovYegor Yefremov
e9c8afb9fb8can-utils: bump versionSigned-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Chris PackhamChris Packham
340ba1bec04tcpreplay: cross-compile with tcpdump supportIf tcpdump is enabled set ac_cv_path_tcpdump_path so that verbose output is enabled on the target. Signed-off-by: Chris Packham <judge.packham@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>