summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* CHANGES: update for 2013.08-rc1Thomas Petazzoni2013-08-051-0/+98
| | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* linux: update help text of BR2_LINUX_KERNEL_INSTALL_TARGETThomas Petazzoni2013-08-011-0/+3
| | | | | | | | | The BR2_LINUX_KERNEL_INSTALL_TARGET option not only copies the kernel image to /boot, but also the DTBs, if such DTBs are generated by the build process. It makes sense to mention that in the help text of this option. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* Install DTB as part of images install commandReuben Dowle2013-08-011-1/+1
| | | | | | | | | When installing DTB to the images directory, do this as part of the image install commands rather than the target install commands. Signed-off-by: Reuben Dowle <reuben.dowle@4rf.com.az> Acked-by: Maxime Ripard <maxime.ripard@free-electrons.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* Fix building initramfs kernel with appended dtbNathan Ford2013-08-011-0/+1
| | | | | | | | | | | | The target for building the kernel with a cpio initramfs is not calling the append dtb commands, creating a final kernel image without an appended dtb. Instead it needs to call kernel make on the intermediate target, then call the append dtb commands to produce the final image as the primary kernel build target does. Signed-off-by: Nathan Ford <nford@westpond.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* linux: Fix uImage with appended DTs generationMaxime Ripard2013-08-011-10/+11
| | | | | | | | | | | | | | Fixes bug #5516 - appended device tree blobs on uImage fails Before version 3.7 of the kernel, building the zImage and then the uImage will rewrite the zImage in the process, removing the device tree we just appended. Use mkimage to append the device tree to the uImage and rebuild the headers directly. Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* dropwatch: link with libintl if presentGustavo Zacarias2013-08-011-4/+12
| | | | | | | | | | binutils libbfd links to libintl if present, so dropwatch needs it too. Ugly hardcoded LDFLAGS, but then that's what the dropwatch Makefile does. Fixes: http://autobuild.buildroot.net/results/549/54917e7943143e47263b60b4eee3dfc6f0801407/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* dropwatch: fix build failure with binutils 2.23.1+Gustavo Zacarias2013-08-012-0/+74
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* libgpgme: handle argp-standaloneGustavo Zacarias2013-08-011-1/+7
| | | | | | | | | | | | | | | libgpgme has an internal implementation of argp parsing for when the libc lacks such an implementation (i.e. uClibc). However if it detects argp.h the internal implementation is disabled and for a uClibc-based toolchain that breaks the build. This happens when argp-standalone is installed since libgpgme never tries to link to libargp. Make it link against libargp, which also saves some target size. Fixes: http://autobuild.buildroot.net/results/33c/33c5776d2b3f7fa276a27f7602eb71c4d77c7b62/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* group file: define groups expected by udevDanomi Manchego2013-08-011-0/+8
| | | | | | | | | | | | | | | | | | | | | udev-182 requires several groups to be resolvable at udev startup, including disk, cdrom, floppy, tape, audio, video, lp, tty, dialout, and kmem. Only some of these are in the default skeleton's group file, So let's add the missing groups, and plugdev too. This avoids getting these logs in /var/logs/messages: Jan 1 00:00:08 buildroot daemon.err udevd[37]: specified group 'dialout' unknown Jan 1 00:00:08 buildroot daemon.err udevd[37]: specified group 'kmem' unknown Jan 1 00:00:08 buildroot daemon.err udevd[37]: specified group 'video' unknown Jan 1 00:00:08 buildroot daemon.err udevd[37]: specified group 'lp' unknown Jan 1 00:00:08 buildroot daemon.err udevd[37]: specified group 'floppy' unknown Jan 1 00:00:08 buildroot daemon.err udevd[37]: specified group 'cdrom' unknown Jan 1 00:00:08 buildroot daemon.err udevd[37]: specified group 'tape' unknown Signed-off-by: Danomi Manchego <danomimanchego123@gmail.com> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* Makefile: add variable print capabilitiesÉmeric Vigier2013-08-011-1/+9
| | | | | | | | | | | Add a new goal that dumps all of our variables. Taken from http://www.cmcrossroads.com/ask-mr-make/6521-dumping-every-makefile-variable Signed-off-by: Emeric Vigier <emeric.vigier@savoirfairelinux.com> [yann.morin.1998@free.fr: drop per-variable print; refresh patch] Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* libedit: really needs wchar supportGustavo Zacarias2013-07-312-7/+7
| | | | | | | | | wctype.h is always included, even in configure tests. Fixes: http://autobuild.buildroot.net/results/ed8/ed85b9d688ad8389895e3ecd7a6a18151efc328d/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* readline: make description more enlightening and fix indentationGustavo Zacarias2013-07-311-1/+3
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* qt5jsbackend: needs ARM v5+Gustavo Zacarias2013-07-311-0/+2
| | | | | | | | | | Just like nodejs and other v8-based javascript engines for ARM interwork it needs the BLX instruction which is only available on V5+ cores. Fixes: http://autobuild.buildroot.net/results/853/853cd29bf427902b2cb82a101964a4e45714cb86/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* cppcms: new packagenmenegale2013-07-313-0/+62
| | | | | | | | | [Thomas: reformat header and Config.in help text, add dependency on glibc since cppcms uses <monetary.h> functions that aren't available in uClibc.] Signed-off-by: Nicolas Ménégale <nicolas.menegale@openwide.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* libnspr: Add dependency on !BR2_arcMischa Jonker2013-07-313-0/+3
| | | | | | | | | ARC is not supported yet in libnspr. v2: Propagate to ecryptfs-utils as well Signed-off-by: Mischa Jonker <mjonker@synopsys.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* strongswan: scripts need charon or toolsGustavo Zacarias2013-07-311-0/+1
| | | | | | | | Fixes: http://autobuild.buildroot.net/results/007/007e75362cbe4693e36d5a7ab96c539d1f3b00fc/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* strongswan: security bump to version 5.0.4Gustavo Zacarias2013-07-311-1/+1
| | | | | | | Fixes CVE-2013-2944. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/uclibc: add mkostemp() backportGustavo Zacarias2013-07-312-0/+310
| | | | | | | Needed for modern versions of systemd and udev. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/uclibc: add execvpe() backportGustavo Zacarias2013-07-312-0/+326
| | | | | | | Needed for modern versions of systemd and udev. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/uclibc: number patches for 0.9.32.1Gustavo Zacarias2013-07-316-0/+0
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* uboot-tools: bump to version 2013.07Gustavo Zacarias2013-07-313-1/+1
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* u-boot: remove stale patches and bump to 2013.07Gustavo Zacarias2013-07-313-392/+2
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* Revert "uClibc: Add uClibc patch to fix MIPS64/n64 interpreter"Thomas Petazzoni2013-07-311-52/+0
| | | | | | | | | This reverts commit 1c834dd1ce5d8b6eedb36126c878dd3f9dbbdb55. This patch has been mistakenly applied, while a new version of it had already been merged. Thanks Gustavo for noticing. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* opkg: Add gnupg signature checking support.Philipp Claves2013-07-312-1/+19
| | | | | | | | [Thomas: add ac_cv_path_GPGME_CONFIG in the configure environment to help opkg find libgpgme.] Signed-off-by: Philipp Claves <claves@budelmann-elektronik.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* libgpgme: new packagePhilipp Claves2013-07-313-0/+35
| | | | | | | | [Thomas: bump version, add --with-gpg-error-prefix and --with-libassuan-prefix options.] Signed-off-by: Philipp Claves <claves@budelmann-elektronik.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* merge assuanThomas Petazzoni2013-07-311-2/+2
|
* libassuan: new packagePhilipp Claves2013-07-313-0/+30
| | | | | | | | [Thomas: bump version, adjust license informations, add --with-gpg-error-prefix option.] Signed-off-by: Philipp Claves <claves@budelmann-elektronik.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* mobile-broadband-provider-info: add license informationSimon Dawson2013-07-301-0/+2
| | | | | Signed-off-by: Simon Dawson <spdawson@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* libsoup: Remove redundant dependency on gettextArnout Vandecappelle (Essensium/Mind)2013-07-302-2/+1
| | | | | | | | libsoup doesn't use intl stuff directly, but uses gi18n. libglib2 already has all required dependencies on gettext. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* gdk-pixbuf: remove dependency on gettextArnout Vandecappelle (Essensium/Mind)2013-07-302-2/+0
| | | | | | | | The dependency on gettext comes from libglib2, not from gdk-pixbuf itself. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* pulseaudio: remove dependency on gettextArnout Vandecappelle (Essensium/Mind)2013-07-302-2/+0
| | | | | | | | | The dependency on gettext is only due to libglib2, not due to pulseaudio itself. It works fine without gettext if libglib2 is not selected. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* avahi: remove double dependency on gettextArnout Vandecappelle (Essensium/Mind)2013-07-301-4/+1
| | | | | | Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* lshw: fix build with no LOCALE supportArnout Vandecappelle (Essensium/Mind)2013-07-302-4/+10
| | | | | | | lshw doesn't need libintl if -DNONLS is defined. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* util-linux: only needs gettext if locale is selectedArnout Vandecappelle (Essensium/Mind)2013-07-302-1/+2
| | | | | | | | Also add missing select in Config.in. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* uClibc: Add uClibc patch to fix MIPS64/n64 interpreterMarkos Chandras2013-07-301-0/+52
| | | | | | | | | | | | uClibc picks the wrong interpreter for MIPS64/n64. This patch fixes this problem by checking the selected MIPS ABI instead of the MIPS variant. This patch was sent upstream: http://lists.uclibc.org/pipermail/uclibc/2013-July/047838.html Signed-off-by: Markos Chandras <markos.chandras@imgtec.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* configs/qemu: bump relevant config versionsGustavo Zacarias2013-07-3029-41/+41
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* linux: bump 3.10.x stable versionGustavo Zacarias2013-07-301-2/+2
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* linux-headers: bump 3.{0, 4, 10}.x stable versionsGustavo Zacarias2013-07-302-3/+3
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* gnutls: bump to version 3.2.3Gustavo Zacarias2013-07-301-1/+1
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* libfuse: remove unused configure optionsThomas De Schampheleire2013-07-301-2/+1
| | | | | | | | Current versions of libfuse do not recognize configure options --disable-nls and --disable-kernel-module. Remove them. Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/pmake: removeYann E. MORIN2013-07-301-47/+0
| | | | | | | | | | | Packaging pmake was required when we used the upstream libedit. Since we have switched to using the autotools-based libedit, pmake is no longer needed. Because pmake is quite ugly, let's just drop it. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* package/libedit: switch to alternate URL for proper packagingYann E. MORIN2013-07-304-87/+45
| | | | | | | | | | | | | | | | | | Upstream libedit does not have a proper homepage, and does not provide any sort of packaging whatsoever. So far, we used Debian's wayback machine to get a tarball of a rather oldish libedit. As Thomas pointed out, someone has been maintaining a proper autotools based, up-to-date package for a while. While Debian is stuck to 2.11 (5 years old now), we bump to 3.1 as a bonus. Remove our libedit.pc, it's now bundled with the package. Reported-by: Thomas De Schampheleire <patrickdepinguin+buildroot@gmail.com> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Thomas De Schampheleire <patrickdepinguin+buildroot@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* gdb: Add support for ARC-specific gdbMischa Jonker2013-07-302-0/+6
| | | | | Signed-off-by: Mischa Jonker <mjonker@synopsys.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* strongswan: new packageJérôme Pouiller2013-07-293-0/+184
| | | | | | | | | strongSwan is an OpenSource IPsec implementation for the Linux operating system. It is based on the discontinued FreeS/WAN project and the X.509 patch. Signed-off-by: Jérôme Pouiller <jezz@sysmic.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* libcec: add libcec for HDMI device ControlSpenser Gilliland2013-07-293-0/+46
| | | | | | | | | This patch adds libcec for HDMI device control. It enables Raspberry Pi support if the rpi-userland package is installed. [Thomas: add C++ dependency, reformat .mk header.] Signed-off-by: Spenser Gilliland <spenser@gillilanding.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* lockdev: add lockdevSpenser Gilliland2013-07-293-0/+48
| | | | | | | | | Add lockdev a package for locking devices. [Thomas: change location in menuconfig, reformat header in .mk file.] Signed-off-by: Spenser Gilliland <spenser@gillilanding.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* uboot: add support for Freescale .sb format to ubootGary Coulbourne2013-07-292-0/+8
| | | | | | | | [Thomas: update to recent Buildroot, add missing dependency on host-elftosb.] Signed-off-by: Gary Coulbourne <bear@bears.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* mtd: add option to build mkfs.ubifs for targetPaul B. Henson2013-07-292-0/+17
| | | | | | | | [Thomas: implement simplifications suggested by Thomas De Schampheleire, add missing 'depends' on required toolchain features.] Signed-off-by: Paul B. Henson <henson@acm.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* libunwind: new packageANDY KENNEDY2013-07-284-0/+54
| | | | | | | | [Thomas: added patch to disable build of tests that fail on uClibc, added dependencies for architectures that are supported.] Signed-off-by: Andy Kennedy <andy.kennedy@adtran.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* sunxi-cedarx: add CedarX hardware video decoding librarySpenser Gilliland2013-07-283-0/+64
| | | | | | | | | [Thomas: rename package to sunxi-cedarx, improve help text description, install libraries with executable permissions to make sure they get stripped at the end of the build.] Signed-off-by: Spenser Gilliland <spenser@gillilanding.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
OpenPOWER on IntegriCloud