summaryrefslogtreecommitdiffstats
path: root/package
Commit message (Collapse)AuthorAgeFilesLines
...
* eglibc: add license detailsThomas Petazzoni2013-07-051-0/+2
| | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* eglibc: fix typoThomas Petazzoni2013-07-051-1/+1
| | | | | | | | For some reason, a '+' sign was left at the beginning of a line in eglibc.mk. Noticed by Gustavo Zacarias. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gcc: fix avr32 typoPeter Korsgaard2013-07-051-1/+1
| | | | | Reported-by: Arnout Vandecappelle <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* uclibc: fixup more unicode madnessPeter Korsgaard2013-07-051-2/+2
| | | | | | This should be @D, and not some kind of funky unicode character. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* uclibc: snapshots are bz2Gustavo Zacarias2013-07-041-2/+2
| | | | | | | | Snapshot tarballs are only in bz2 format, fixes: http://autobuild.buildroot.net/results/b02/b021b296309d01405ad45344055863a5761abd70/ Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* linux-headers: switch to xz formatGustavo Zacarias2013-07-041-1/+1
| | | | | | | | | | | The headers and kernels where changed to XZ format on commit 98b5cc3eb4d4103b2149325b98a5e93e68c68dd8, but the headers reverted back to bz2 on the packaging of the toolchain. This causes double kernel downloads when the versions match, so switch back the headers to XZ. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* uclibc: fix PowerPC build problemThomas Petazzoni2013-07-041-1/+1
| | | | | | | | | | A stupid Unicode character was inserted instead of 'D'. Fixes: http://autobuild.buildroot.org/results/7a4/7a45fb1379307a788047ec859a4ce2c42d6eb077/build-end.log. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* fbgrab: bump to version 1.1gilles.talis@gmail.com2013-07-044-26/+42
| | | | | | [Peter: also update URL in Config.in] Signed-off-by: Gilles Talis <gilles.talis@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* lttng-tools: remove bogus commentThomas Petazzoni2013-07-041-3/+0
| | | | | | | | | | | lttng-tools doesn't require bison or flex, it contains pre-generated versions of the lexer and parser, so it can build perfectly fine without bison and flex. We have removed both of these tools from our mandatory dependencies since a bit of time, the Free Electrons autobuilders don't have them installed, and the build succeeds. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* lttng-tools: add missing dependency on util-linux for libuuidThomas Petazzoni2013-07-042-4/+7
| | | | | | | | Fixes: http://autobuild.buildroot.org/results/76a/76a91bd139a93f63e17732c9a933664e8e5d3fe1/build-end.log. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* eglibc: enable support in the Buildroot toolchain backendThomas Petazzoni2013-07-044-4/+8
| | | | | | | | | | | | | | | | | | | | | | | | | Using the newly introduced 'eglibc' package, this commit enables the option of building a toolchain using the eglibc C library in the Buildroot toolchain backend. In details, this commit: * Creates a choice to select uClibc or eglibc in the Buildroot toolchain backend (in toolchain/toolchain-buildroot/Config.in), and removes the fact that the Buildroot toolchain backend forcefully enables uClibc (toolchain/Config.in). * Creates a BUILDROOT_LIBC variables, which points to the package implementing the C library (i.e either 'uclibc' or 'eglibc'). * Modifies the gcc-final and gcc-intermediate makefiles to use the BUILDROOT_LIBC variable instead of hardcoding the use of uclibc. * Ensures that TLS support is always enabled when building eglibc. [Peter: fix commit text to refer to BUILDROOT_LIBC] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* eglibc: new packageThomas Petazzoni2013-07-041-0/+94
| | | | | | | | | This commit adds a target 'eglibc' package. For now, there is no way to build this package, the next commit will add the integration of eglibc into the Buildroot toolchain backend. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* uclibc: move configuration options into the packageThomas Petazzoni2013-07-041-0/+77
| | | | | | | | | | In preparation for the introduction of the eglibc library to the internal toolchain backend, the options that allow to enable/disable C library features such as largefile, IPv6, RPC and so on now belong to the uClibc package. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Introduce BR2_TOOLCHAIN_USES_{UCLIBC, GLIBC}Thomas Petazzoni2013-07-0419-40/+25
| | | | | | | | | | | | | | | | | Currently, when we need to do a conditional on the type of C library used, we need to take into account the three toolchain backends. As we are going to add eglibc support to the Buildroot toolchain backend, it would become even uglier, so this patch introduces two new hidden options: BR2_TOOLCHAIN_USES_UCLIBC and BR2_TOOLCHAIN_USES_GLIBC, that exist regardless of the toolchain backend. The entire Buildroot code base is converted to use those options. Note that we have intentionally created only one option (BR2_TOOLCHAIN_USES_GLIBC) for both glibc and eglibc, since they are essentially the same, as far as Buildroot is concerned. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Remove BR2_HAVE_DEVFILESThomas Petazzoni2013-07-0416-93/+8
| | | | | | | | | | | | This finally removes the BR2_HAVE_DEVFILES option, that was used to install/keep development files on target. With the recent migration of the internal backend to the package infrastructure, we had anyway lost the ability to build gcc for the target, and install the uClibc development files on the target. [Peter: also remove support/scripts/copy.sh] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* uclibc: convert to the package infrastructureThomas Petazzoni2013-07-0415-1/+1852
| | | | | | [Peter: update manual to match] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gcc-initial, gcc-intermediate, gcc-final: optimize extractionThomas Petazzoni2013-07-0310-122/+23
| | | | | | | | | | | | | | | | Several sub-directories of the gcc code base are in fact not needed for the Buildroot build: libjava/, libgo/ and gcc/testsuite/ being the biggest ones. Avoiding their extraction saves quite a bit of disk space, and compensates a bit the fact that we now extract three times the gcc source code. This requires changing the 100-uclibc-conf.patch to no longer patch files from the libjava/ directory, since this directory is no longer extracted. [Peter: add comment about why this is done] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* toolchain: switch to using gcc through package infrastructureThomas Petazzoni2013-07-0356-1/+2749
| | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gcc-final: new packageThomas Petazzoni2013-07-031-0/+135
| | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gcc-intermediate: new packageThomas Petazzoni2013-07-031-0/+43
| | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gcc-initial: new packageThomas Petazzoni2013-07-031-0/+37
| | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gcc: common definitionsThomas Petazzoni2013-07-032-0/+290
| | | | | | [Peter: tweak file header] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* kernel-headers: migrate to the package infrastructureThomas Petazzoni2013-07-034-0/+182
| | | | | | [Peter: fix file header] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* elf2flt: convert to the package infrastructureThomas Petazzoni2013-07-0319-0/+14013
| | | | | | [Peter: Correct legacy position] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* kmod: bump versionPeter Korsgaard2013-07-032-32/+5
| | | | | | syscall patch is now upstream and static linking is no longer supported. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libglib2: bump versionPeter Korsgaard2013-07-031-1/+1
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qt: bump versionPeter Korsgaard2013-07-031-2/+2
| | | | | | | | | For details, see http://blog.qt.digia.com/blog/2013/07/02/qt-4-8-5-released/ Also move to the (current?) official download location, as the previous location doesn't have 4.8.5. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* python: rename old-stdlib-cache patch to match naming conventionPeter Korsgaard2013-07-031-0/+0
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package: allow to override the make install target for host packagesThomas Petazzoni2013-07-031-1/+2
| | | | | | | | | In order to convert gcc to the package infrastructure, we need a way of overriding the name of the make target used for the installation of host packages, just like we have for target packages. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* busybox: don't use kernel headers directlyThomas Petazzoni2013-07-031-2/+1
| | | | | | | | The kernel headers are part of the staging directory, so there is no reason to point the Busybox CFLAGS directly to them. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libtpl: bump versionSimon Dawson2013-07-022-4/+11
| | | | | | | | Note that libtpl has moved from sourceforge to github, and there is no longer a version-specific tarball available. Signed-off-by: Simon Dawson <spdawson@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* jimtcl: New packageEzequiel Garcia2013-07-023-0/+73
| | | | | | | | | | | Add new jimtcl package - a lightweight tclsh alternative. Useful for a lighter footprint usb_modeswitch installation. tclsh size is ~700kB for ARM compared to ~200kB for jimtcl. [Peter: wrap help text, fix file header] Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Ezequiel Garcia <elezegarcia@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* msgpack: new packageSimon Dawson2013-07-023-0/+26
| | | | | Signed-off-by: Simon Dawson <spdawson@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package/libsvg: new packageCarsten Schoenert2013-07-024-0/+69
| | | | | | | | | | Libsvg provides a library for parsing SVG content in files or buffers. Libsvg does not do any rendering, but instead provides a function-based interface that can be used by various rendering engines. [Peter: drop libxml2 conditional] Signed-off-by: Carsten Schoenert <c.schoenert@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libevent: disable building test programsgilles.talis@gmail.com2013-07-021-0/+30
| | | | | | | | | | | | | | | Libevent test programs use fork(), function that is not available on MMU-less architecture. This patch prevents compiling libevent test programs so that library can successfully build on architectures like blackfin Fixes: http://autobuild.buildroot.org/results/2e0/2e0422f1042d0cb00f5bab0dc190930581ed4ef2/ Signed-off-by: Gilles Talis <gilles.talis@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gst1-plugins-bad: add missing depends on C++ for the OpenCV pluginThomas Petazzoni2013-07-021-0/+4
| | | | | | | | | | | OpenCV requires C++ support, so we shouldn't select it without depending on C++ support. Fixes: http://autobuild.buildroot.org/results/71f/71f2d8a267a0d159521407a9a2330e68d756c4b3/build-end.log. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* lttng-tools: define licenseSamuel Martin2013-07-011-0/+3
| | | | | Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* lttng-modules: define licenseSamuel Martin2013-07-011-0/+2
| | | | | Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* lttng-libust: define licenseSamuel Martin2013-07-011-0/+2
| | | | | Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* lttng-babeltrace: define licenseSamuel Martin2013-07-011-0/+2
| | | | | Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* liburcu: define licenseSamuel Martin2013-07-011-0/+2
| | | | | Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* lttng-libust: bump version to 2.2.0Samuel Martin2013-07-011-1/+1
| | | | | Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* lttng-modules: bump version to 2.2.0Samuel Martin2013-07-011-1/+1
| | | | | Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* lttng-tools: bump version to 2.2.0Samuel Martin2013-07-012-52/+1
| | | | | | | | Remove lttng-tools-no-sync-file-range-in-uclibc.patch because it got merged upstream. Signed-off-by: Samuel Martin <s.martin49@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* e2fsprogs: bump to version 1.42.8Gustavo Zacarias2013-06-301-1/+1
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* axel: fix download URLPeter Korsgaard2013-06-301-1/+1
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* sane-backends: fix download URLPeter Korsgaard2013-06-301-1/+1
| | | | | | Fixes http://autobuild.buildroot.net/results/134/134d081dfb514d3bc20ef68f4ebec7d7e4bba8dc/ Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gst1-plugins-ugly: libdvdread needs largefile supportPeter Korsgaard2013-06-301-0/+4
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libhid: fix download URLPeter Korsgaard2013-06-301-1/+1
| | | | | | Fixes http://autobuild.buildroot.net/results/c65/c652df3854dec40e6420cba8a6d48c8ddc9b1ecd/ Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* ccid: fix download URLPeter Korsgaard2013-06-301-1/+1
| | | | | | Fixes http://autobuild.buildroot.net/results/ded/ded58e623bb2d1c95a7b46fc85d5aacdac5da01c/ Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>