summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* graph-depends: optimize execution speedThomas Petazzoni2013-01-021-45/+71
| | | | | | | | | | | | | | | | | | | | | | | | | | | Until now, graph-depends was calling "make <pkg>-show-depends" individually for eack package, which was very slow. Now, it calls "make <pkg1>-show-depends <pkg2>-show-depends ... <pkgN>-show-depends" for all packages it knows, and then does that recursively. It reduces the number of make invocations to the deepest dependency chain in the current configuration, instead of having a number of make invocations equal to the number of enabled packages. For a configuration with xvkbd enabled (which brings a significant number of X.org dependencies) and a tar root filesystem, the time to execute graph-depends was: real 5m14.944s user 4m53.590s sys 0m14.069s After our optimizations, it is now: real 0m33.096s user 0m30.878s sys 0m1.472s Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* graph-depends: use a separate TARGET_EXCEPTIONS variableThomas Petazzoni2013-01-021-6/+10
| | | | | | | | | In preparation for more graph-depends improvements, use a TARGET_EXCEPTIONS list to list all the targets that should be ignored while building the dependency graph. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* graph-depends: remove redundant dependenciesThomas Petazzoni2013-01-021-0/+33
| | | | | | | | | | | | | | | | | | | | | | | | When doing a full graph of the dependencies, graph-depends starts by doing a "make show-targets", which lists all the packages registered in the $(TARGETS) variable. This variable contains all packages that are enabled according to the .config file. Then, for each of those packages, we used to create a "all" -> "package" dependency, even if in fact most of some packages are already dependencies of other packages. This creates a needlessly complex dependency graph. This patch modifies graph-depends so that it filters out the unneeded "all" -> "package" dependencies when "package" is already the dependency of another package. For example, if you have a configuration with libpng (which selects zlib), "make show-targets" displays "libpng zlib", so graph-depends used to create the following dependencies: (all -> libpng, all -> zlib, libpng -> zlib). However, the (all -> zlib) dependency is not really needed, as zlib is already the dependency of libpng. Those dependencies are now filtered out. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gnutls: handle libidn properlyGustavo Zacarias2013-01-021-0/+4
| | | | | | | | Add it to the dependencies when it's available. But disable crywrap when it's a nommu system since it uses fork() Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gnutls: fix build failure related to pthreadsGustavo Zacarias2013-01-021-0/+3
| | | | | | | | | | The pthreads autodetection poisons the linkpath thus making other distribution libraries to take precedence over the cross ones. Leading to failures such as: http://autobuild.buildroot.net/results/tmp/3f979d4e2186ee31012c332fedec9591890b0b77 Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qemu/sparc-ss10: switch to v8 optimizationGustavo Zacarias2013-01-021-1/+1
| | | | | | | | Switch to generic V8 optimization for gcc since we dropped the explicit supersparc one and works just the same. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* arch/sparc: drop old SUN-specific variantsGustavo Zacarias2013-01-021-31/+1
| | | | | | | | | | | | | | | | | | | | Drop the old Sun-specific variants used in old workstations (pre-1997) and other useless ones. The V7 ISA is a very old cpu only used in the first Sun workstations, the toolchain support is broken: the cpu doesn't do hardware div and it's not handled elsewhere. The sparclite is also a very old Fujitsu cpu only used in early 90s Sun machines (includes f930 & f934). The sparclet (tsc701) was a microcontroller-variant. The supersparc and hypersparc are just V8 variants also used in old Sun workstations/servers. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gnupg: security bump to version 1.4.13Gustavo Zacarias2013-01-021-1/+1
| | | | | | | Fixes CVE-2012-6085. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libeet: host variant doesn't need gnutls / gcryptPeter Korsgaard2013-01-021-0/+1
| | | | | | Fixes http://autobuild.buildroot.net/results/2127880b551d57f16c7907481eeac22e601868eb/ Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* valgrind: bump to 3.8.1Thomas Petazzoni2013-01-017-322/+41
| | | | | | | | | | | | | | | | | | | | | | | | | | Status of the patches: * valgrind-compiler-check.patch, no longer needed, merged upstream. * valgrind-dont-include-a-out-header.patch, kept, just refreshed * valgrind-fix-ccache-support.patch, adapted to the newer Valgrind release. * valgrind-largefile.patch, kept, just refreshed * valgrind-more-ioctls.patch, removed. Most of it was merged upstream. This patch was anyway a feature addition, so it shouldn't be kept in Buildroot. * valgrind-workaround-SIGSEGV-on-PPC.patch, kept as is, just refreshed. This bump also fixes the build failure we were experiencing with Valgrind 3.7.0 against recent Glibc versions. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* valgrind: rename patches without version in the filenameThomas Petazzoni2013-01-016-0/+0
| | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* lttng-babeltrace: bump to 1.0.0Samuel Martin2013-01-011-1/+1
| | | | | Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* lttng-tools: bump to 2.1.0Samuel Martin2013-01-013-26/+112
| | | | | | | | | * add patch adding src/bin/lttng-sessiond/lttng-ust-error.h which is missing in the lttng-tools-2.1.0 release tarball. * update the sync_file_range patch. Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* lttng-modules: bump to 2.1.0Samuel Martin2013-01-011-1/+1
| | | | | Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* lttng-libust: bump to 2.1.0Samuel Martin2013-01-013-39/+8
| | | | | | | | Also remove lttng-libust-uclibc-sed_getcpu.patch because it got merged upstream. Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package/tvheadend: does not reqquire wordexpYann E. MORIN2013-01-011-0/+20
| | | | | | | | Builds just fine without it (probably stray include?) Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* efl/libecore: fix build with gcryptThomas Petazzoni2013-01-011-2/+8
| | | | | | | | | | | | | | | When building with gnutls, libecore also needs libgcrypt. Fixes: http://autobuild.buildroot.org/results/4da454d6414cf8f4e638defae9b793fb46a0a072/build-end.log While we're at it, also explicit the --enable-openssl / --disable-openssl depending on whether openssl is available or not. [Peter: only enable gnutls support when both gnutls and gcrypt are enabled] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package/dvb-apps: fix downloadingYann E. MORIN2013-01-011-2/+2
| | | | | | | | | | | | | | As we're using the sources from the Mercurial repository, and Buildroot does support retrieving from a Mercurial repository, there is no need to try (and fail1) getting the archive from the Mercurial built-in tarball mechanism. (Note: I was beaten by this because I had a cached copy locally, left after the previous tvheadend-vampirises-files-from-toher-packages attempt, that I forgot to delete before testing. Ouch...) Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libeet: fix build with gcryptPeter Korsgaard2013-01-011-0/+8
| | | | | | | | libeet needs both gnutls and libgcrypt for ssl handling. Fixes http://autobuild.buildroot.net/results/tmp/f45782cf73338930644c69dccf2f18167083d121/ Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* spice: entire client support needs C++/threads, not just start dialog guiPeter Korsgaard2013-01-011-4/+4
| | | | | | Fixes http://autobuild.buildroot.net/results/230e6d78e3ec740a7794316cc388c6685e040946 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libevas-generic-loaders: fix rsvg dependenciesPeter Korsgaard2013-01-011-0/+4
| | | | | | Fixes http://autobuild.buildroot.net/results/f9bab292708f885f5e9713901952406f650491c2 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gst-plugins-bad: rsvg support needs C++ (but no longer GTK+)Peter Korsgaard2013-01-011-1/+4
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* librsvg: pango needs C++ supportPeter Korsgaard2013-01-011-0/+4
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* matchbox-lib: fix license infoSamuel Martin2012-12-311-1/+1
| | | | | | Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* docs/manual: small fixes and enhancements to adding generic packagesYann E. MORIN2012-12-301-13/+21
| | | | | | | | | | Add overall description of LIBFOO_DEVICES and LIBFOO_PERMISSIONS. Fix line numbers. Cc: Samuel Martin <s.martin49@gmail.com> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Acked-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* target: add option to set the root passwordYann E. MORIN2012-12-303-0/+39
| | | | | | | | | | | | | | | | Add an option in the menuconfig to specify a root password. If set to empty, no root password is created; otherwise, the password is encrypted using MD5 (MD5 is not the default for crypt(3), DES-56 is, but MD5 is widely available, not-so-strong, but not-so-weak either). Add a check for 'mkpasswd' as a new dependency. [Peter: fix typo/capitilization and simplify logic] Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Arnout Vandecappelle <arnout@mind.be> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qemu/arm-versatile: update to use kernel 3.7.1Gustavo Zacarias2012-12-303-8/+8
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qemu/arm-vexpress: update to use kernel 3.7.1Gustavo Zacarias2012-12-302-6/+9
| | | | | | | | Bump to use kernel 3.7.1 Switch to hard float toolchain with NEON and VFP support. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qemu/mips64-malta: update to use kernel 3.7.1Gustavo Zacarias2012-12-303-5/+5
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qemu/mips-malta: update to use kernel 3.7.1Gustavo Zacarias2012-12-303-5/+5
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qemu/mipsel-malta: update to use kernel 3.7.1Gustavo Zacarias2012-12-303-5/+5
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qemu/x86: update to use kernel 3.7.1Gustavo Zacarias2012-12-303-5/+5
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qemu/x86_64: update to use kernel 3.7.1Gustavo Zacarias2012-12-303-5/+5
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qemu/sh4-r2d: update to use kernel 3.2.35Gustavo Zacarias2012-12-302-2/+2
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qemu/ppc-mpc8544ds: update to use kernel 3.7.1Gustavo Zacarias2012-12-302-4/+4
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qemu/ppc-virtex-ml507: update to use kernel 3.7.1Gustavo Zacarias2012-12-302-4/+4
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qemu/ppc-g3beige: update to use kernel 3.7.1Gustavo Zacarias2012-12-303-5/+5
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qemu/sparc-ss10: update to use kernel 3.7.1Gustavo Zacarias2012-12-302-4/+4
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qemu/microblaze: update to use kernel 3.7.1Gustavo Zacarias2012-12-306-6/+6
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Merge branch 'e17' of ↵Peter Korsgaard2012-12-3027-121/+251
|\ | | | | | | git://git.free-electrons.com/users/thomas-petazzoni/buildroot
| * enlightenment: new packageThomas Petazzoni2012-12-304-0/+105
| | | | | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * xcb-util-keysyms: new packageThomas Petazzoni2012-12-303-0/+27
| | | | | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * efl/libevas-generic-loaders: new packageThomas Petazzoni2012-12-303-0/+53
| | | | | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * librsvg: relax dependency on Gtk, add gdk-pixbuf dependencyThomas Petazzoni2012-12-302-2/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | librsvg doesn't *require* Gtk, it can optionally build a Gtk theme engine, but it is not mandatory. Therefore, we make the Gtk dependency an optional dependency rather than a hard dependency. This will be useful as librsvg will become a dependency of libevas-generic-loaders, used in an EFL context in which building libgtk is not really what we want. However, gdk-pixbuf is a mandatory dependency to build librsvg, so we add this one. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * efl/libethumb: bump to 1.7.4 and change download locationThomas Petazzoni2012-12-301-2/+2
| | | | | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * efl/libeio: new packageThomas Petazzoni2012-12-303-0/+35
| | | | | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * efl/libevas: remove examples source code from target filesystemThomas Petazzoni2012-12-301-0/+8
| | | | | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * efl/libevas: adjust dependency on X11 librariesThomas Petazzoni2012-12-302-1/+2
| | | | | | | | | | | | | | | | The libevas configure script actually checks the presence of libX11 and libXext, so use those two libraries as the dependencies for the X11 backend of libevas. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * efl/libevas: remove SVG supportThomas Petazzoni2012-12-302-11/+0
| | | | | | | | | | | | | | | | The SVG support requires esvg, which hasn't been released yet. The recommandation of the EFL developers is to use the SVG loader from the evas-generic-loaders project. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * efl/libevas: bump to version 1.7.4Thomas Petazzoni2012-12-301-1/+1
| | | | | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>