buildroot.git
11 years agolvm2: uses fork()
Peter Korsgaard [Tue, 5 Feb 2013 08:00:22 +0000 (09:00 +0100)]
lvm2: uses fork()

Fixes http://autobuild.buildroot.org/results/cbc74e2fb5eaefac1fe17ada1dc46a5c906cc1c9

Also propagate BR2_USE_MMU to lvm2's reverse dependencies.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agoliboping: fix legal-info
Peter Korsgaard [Tue, 5 Feb 2013 07:45:02 +0000 (08:45 +0100)]
liboping: fix legal-info

Fixes http://autobuild.buildroot.org/results/c0bfc03389382235782474b278ca4afd1d283d60

The included (LGPL) license file is called COPYING.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agopackage/qemu: bump version to 1.3.1
Yann E. MORIN [Sun, 3 Feb 2013 04:06:38 +0000 (04:06 +0000)]
package/qemu: bump version to 1.3.1

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agopackage/usbredir: update to version 0.6
Yann E. MORIN [Mon, 4 Feb 2013 06:01:14 +0000 (06:01 +0000)]
package/usbredir: update to version 0.6

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agogdb: fixing gdb 7.4.1 build with eglibc-2_16
Carsten Schoenert [Mon, 4 Feb 2013 10:50:28 +0000 (10:50 +0000)]
gdb: fixing gdb 7.4.1 build with eglibc-2_16

gdb 7.4.1 fails with the following error
  gdb-7.4.1/gdb/linux-nat.h:79:18: error: field 'siginfo' has incomplete type
because gdb use 'struct siginfo' instead of 'struct siginfo_t'.
Crosstool-NG allready use the patches to prevent this error so use this
patches for buildroot too.

see also http://permalink.gmane.org/gmane.comp.gcc.cross-compiling/15305

Fixes http://autobuild.buildroot.net/results/b894a5cecd9c5e0a1a751ebbff90a14aea1803da/build-end.log

Signed-off-by: Carsten Schoenert <c.schoenert@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agoliboping: add license information
Gustavo Zacarias [Tue, 29 Jan 2013 08:23:57 +0000 (08:23 +0000)]
liboping: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agolibpcap: fixup pcap-config
Baruch Siach [Sat, 2 Feb 2013 20:04:15 +0000 (20:04 +0000)]
libpcap: fixup pcap-config

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agopkg-infra: add <pkg>_CONFIG_FIXUP to fix *-config files
Stefan Fröberg [Wed, 30 Jan 2013 02:46:40 +0000 (02:46 +0000)]
pkg-infra: add <pkg>_CONFIG_FIXUP to fix *-config files

This patch will add <pkg>_CONFIG_FIXUP variable to buildroot infra.

It's purpose is to inform buildroot that the package in question
contains some $(STAGING_DIR)/usr/bin/*-config files and that we
want to automatically fix prefixes of such files.

It is often the case that many packages call these
files during their configuration step to determine 3rd party
library package locations and any flags needed to link against them.

For example:
Some package might try to check the existense and linking flags
of NSPR package by calling $(STAGING_DIR)/usr/bin/nspr-config --prefix.
Without this fix. NSPR would return /usr/ as it's prefix which is
wrong when cross-compiling.
Correct would be $(STAGING_DIR)/usr.

All packages that have <pkg>_INSTALL_STAGING = YES defined and
also install some config file(s) into $(STAGING_DIR)/usr/bin must
hereafter also define <pkg>_CONFIG_FIXUP with the correspondig
filename(s).

For example:

DIVINE_CONFIG_FIXUP = divine-config

or for multiple files:

IMAGEMAGICK_CONFIG_FIXUP = Magick-config Wand-config

Signed-off-by: Stefan Fröberg <stefan.froberg@petroprogram.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agogdb: build gdbserver with TARGET_MAKE_ENV
Thomas Petazzoni [Sun, 3 Feb 2013 02:30:22 +0000 (02:30 +0000)]
gdb: build gdbserver with TARGET_MAKE_ENV

This commit fixes the exact same problem than
21a0c11a90f9ff19c78a5f32e0a2e9064fd28054, but for the gdbserver
build. The problem is that when you use the Crosstool-NG toolchain
backend, gawk gets built as a dependency of Crosstool-NG. So the gdb
configure scripts detects it, and assumes it is in the PATH (because
the gdb configure step gets run with TARGET_MAKE_ENV).

But then, the build fails, because it tries to run gawk, but gawk
isn't in the PATH, because we forget to use this TARGET_MAKE_ENV
variable when building gdbserver.

Fixes http://autobuild.buildroot.org/results/d0173de533b5e2fffed2eff7327a502ed2d787cd/build-end.log

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agotvheadend: disable on avr32
Thomas Petazzoni [Sun, 3 Feb 2013 02:15:28 +0000 (02:15 +0000)]
tvheadend: disable on avr32

tvheadend requires an atomic_add operation. Either you have a gcc >=
4.3 toolchain and it uses the gcc intrinsics, or it has special code
for x86, x86-64, PPC and ARM. So in the context of Buildroot, the only
really problematic architecture is avr32, which uses gcc 4.2.

Fixes http://autobuild.buildroot.org/results/f015b1888d739c383aca61609059aa7675a4da7d/build-end.log

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agotvheadend: get rid of trailing spaces/tabs
Thomas Petazzoni [Sun, 3 Feb 2013 02:15:27 +0000 (02:15 +0000)]
tvheadend: get rid of trailing spaces/tabs

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agopolarssl: security bump to version 1.2.5
Gustavo Zacarias [Mon, 4 Feb 2013 02:51:03 +0000 (02:51 +0000)]
polarssl: security bump to version 1.2.5

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agouboot-tools: also bump to 2013.01.01
Gustavo Zacarias [Mon, 4 Feb 2013 02:25:17 +0000 (02:25 +0000)]
uboot-tools: also bump to 2013.01.01

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agoiw: switch upstream site
Gustavo Zacarias [Mon, 4 Feb 2013 02:20:30 +0000 (02:20 +0000)]
iw: switch upstream site

It's moved from wireless.kernel.org to generic kernel.org

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agolinux: bump 3.7.x stable version
Gustavo Zacarias [Mon, 4 Feb 2013 00:50:15 +0000 (00:50 +0000)]
linux: bump 3.7.x stable version

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agokernel-headers: bump 3.{0, 4, 7}.x stable versions
Gustavo Zacarias [Mon, 4 Feb 2013 00:50:14 +0000 (00:50 +0000)]
kernel-headers: bump 3.{0, 4, 7}.x stable versions

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agoneard: fix missing nfc.h header
Thomas Petazzoni [Sun, 3 Feb 2013 03:37:23 +0000 (03:37 +0000)]
neard: fix missing nfc.h header

We have a patch that allows neard to build even on toolchain using old
kernel headers that lack the nfc.h header. However, after the bump to
neard 0.9, this patch was not updated to take into account the two new
plugins that neard has added.

Fixes http://autobuild.buildroot.org/results/5eeb6f62cc0e654a536b6614dc51e8af4e301bb6/build-end.log

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agoCHANGES: update with recent changes
Peter Korsgaard [Mon, 4 Feb 2013 21:33:47 +0000 (22:33 +0100)]
CHANGES: update with recent changes

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agolibfuse: add patch to fix AArch64 build issue
Thomas Petazzoni [Sun, 3 Feb 2013 21:53:06 +0000 (22:53 +0100)]
libfuse: add patch to fix AArch64 build issue

Fixes http://autobuild.buildroot.org/results/1fb89ab412935ab02494b269a367b283cf9618c1/build-end.log

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agopptp-linux: fix parallel build
Thomas Petazzoni [Sun, 3 Feb 2013 20:53:21 +0000 (21:53 +0100)]
pptp-linux: fix parallel build

Add a patch to fix a parallel build issue caused by a header file
being generated too late.

Fixes:

http://autobuild.buildroot.org/results/2324974d4818b2657a7df4beee33fc4713d6116f/build-end.log

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agopptp-linux: rename patches to remove the version number
Thomas Petazzoni [Sun, 3 Feb 2013 20:53:20 +0000 (21:53 +0100)]
pptp-linux: rename patches to remove the version number

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agoheirloom-mailx: needs fork()
Thomas Petazzoni [Sun, 3 Feb 2013 09:52:22 +0000 (09:52 +0000)]
heirloom-mailx: needs fork()

heirloom-mailx uses fork(), so we can't use it as is on !mmu
platforms.

Fixes:

http://autobuild.buildroot.org/results/c5a8e3a4cbc1e1de985fe3c724b711027865abe7/build-end.log

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agou-boot: bump 2013.01.x version
Peter Korsgaard [Sun, 3 Feb 2013 14:29:14 +0000 (15:29 +0100)]
u-boot: bump 2013.01.x version

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agoudisks: new package
Marek Belisko [Fri, 18 Jan 2013 12:08:47 +0000 (12:08 +0000)]
udisks: new package

[Peter: fix dependencies, comment]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Marek Belisko <marek.belisko@open-nandra.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agolvm2: add option for application library
Marek Belisko [Mon, 7 Jan 2013 10:43:18 +0000 (10:43 +0000)]
lvm2: add option for application library

[Peter: make mutual exclusive with dmsetup-only, drop special install / make]
Signed-off-by: Marek Belisko <marek.belisko@open-nandra.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agolvm2: Install devmapper.pc to staging/target pkgconfig directory.
Marek Belisko [Fri, 18 Jan 2013 12:08:46 +0000 (12:08 +0000)]
lvm2: Install devmapper.pc to staging/target pkgconfig directory.

Without this change if some package which have dependency on device mapper
and use pkgconfig to check version always fail to find library because
devmapper.pc file wasn't installed.

Signed-off-by: Marek Belisko <marek.belisko@open-nandra.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agotoolchain-external: remove support for AArch64 Linaro 2012.10 toolchain
Thomas Petazzoni [Sat, 2 Feb 2013 03:46:23 +0000 (03:46 +0000)]
toolchain-external: remove support for AArch64 Linaro 2012.10 toolchain

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agotoolchain-external: add support for AArch64 Linaro 2013.01 toolchain
Thomas Petazzoni [Sat, 2 Feb 2013 03:46:22 +0000 (03:46 +0000)]
toolchain-external: add support for AArch64 Linaro 2013.01 toolchain

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agonuttcp: needs mmu
Gustavo Zacarias [Sat, 2 Feb 2013 00:24:35 +0000 (00:24 +0000)]
nuttcp: needs mmu

Fixes:
http://autobuild.buildroot.net/results/b8c019a5701377a1e134d01ac0bae5fe34dc975f/

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agoavr32: support uClibc 0.9.33.2
Simon Dawson [Sun, 20 Jan 2013 11:55:41 +0000 (11:55 +0000)]
avr32: support uClibc 0.9.33.2

Add a uClibc patch from OpenWRT, and tweak an existing patch to cope with
the lack of a dup3 Linux syscall on avr32. This allow uClibc 0.9.33.2 to be
built for avr32.

[Peter: add upstream url for openwrt patch]
Signed-off-by: Simon Dawson <spdawson@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agotoolchain-external: add linaro 2013.01, remove 2012.10
Peter Korsgaard [Sat, 2 Feb 2013 12:42:03 +0000 (13:42 +0100)]
toolchain-external: add linaro 2013.01, remove 2012.10

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agoarch/Config.in.arm: Use armv6k for arm1136jf-s rev1
Benoît Thébaudeau [Fri, 1 Feb 2013 09:33:24 +0000 (09:33 +0000)]
arch/Config.in.arm: Use armv6k for arm1136jf-s rev1

According to the ARM1136JF-S and ARM1136J-S Revision r1p5 Technical Reference
Manual, from release rev1 (r1pn), the ARM1136JF-S processor implements the ARMv6
instruction set with the ARMv6k additions.

This patch differentiates the ARM1136JF-S revisions 0 and 1 in order to use
either ARMv6j (e.g. on Freescale i.MX31) or ARMv6k (e.g. on Freescale i.MX35).

Signed-off-by: Benoît Thébaudeau <benoit.thebaudeau@advansee.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agoblackfin: add 2012r2 and remove 2010rc1 toolchains
Gustavo Zacarias [Fri, 1 Feb 2013 03:04:50 +0000 (03:04 +0000)]
blackfin: add 2012r2 and remove 2010rc1 toolchains

Remove the old 2010RC1 toolchain and add the new 2012R2-RC2 toolchain.
On related good news the new toolchain fixes:
http://autobuild.buildroot.net/results/eac5bd4f4766d98431e72a3c81492a962c85fa98/
since it's got unshare() support now.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agocjson: change source to svn repo
Danomi Manchego [Wed, 30 Jan 2013 17:26:37 +0000 (17:26 +0000)]
cjson: change source to svn repo

The original cJSON submittal downloaded a .zip file from SourceForge.
The .zip file did not have a version number, making it impossible
to gaurantee that the same archive is downloaded on any given build.
It also required a custom EXTRACT command.

This patch changes the source for cJSON to the svn repository
listed on the sf project web page - giving us an actual version
number, and letting us use buildroot's normal extraction functionality.

Signed-off-by: Danomi Manchego <danomimanchego123@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agoneard: bump version to 0.9
Simon Dawson [Wed, 30 Jan 2013 22:16:04 +0000 (22:16 +0000)]
neard: bump version to 0.9

Signed-off-by: Simon Dawson <spdawson@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agopcsc-lite: requires mmu
Gustavo Zacarias [Wed, 30 Jan 2013 00:25:46 +0000 (00:25 +0000)]
pcsc-lite: requires mmu

Fixes:
http://autobuild.buildroot.net/results/14400ae2c9e312729efa9a9026b5fdd487868c8a/

Also add license information while at it.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agoebtables: needs MMU
Baruch Siach [Tue, 29 Jan 2013 22:02:59 +0000 (22:02 +0000)]
ebtables: needs MMU

Fixes:
http://autobuild.buildroot.net/results/201f8d3d58cdff0c3501a673003558103237fb22/

Signed-off-by: Baruch Siach <baruch@tkos.co.il>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agoxtensa: sqlite requires special compiler option
Chris Zankel [Tue, 22 Jan 2013 10:33:19 +0000 (10:33 +0000)]
xtensa: sqlite requires special compiler option

Some of the generated object files are too large for PC-relative addressing,
so use the -mtext-section-literals compiler flag to move symbols closer to
the code.

[Peter: fix commit message]
Signed-off-by: Chris Zankel <chris@zankel.net>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agopackage/linux-firmware: update to newer version
Yann E. MORIN [Tue, 22 Jan 2013 08:02:23 +0000 (08:02 +0000)]
package/linux-firmware: update to newer version

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agowipe: add license information
Gustavo Zacarias [Tue, 29 Jan 2013 08:23:59 +0000 (08:23 +0000)]
wipe: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agokismet: add license information
Gustavo Zacarias [Tue, 29 Jan 2013 08:23:58 +0000 (08:23 +0000)]
kismet: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agolibungif: add license information
Gustavo Zacarias [Tue, 29 Jan 2013 08:23:56 +0000 (08:23 +0000)]
libungif: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agotn5250: add license information
Gustavo Zacarias [Tue, 29 Jan 2013 08:23:55 +0000 (08:23 +0000)]
tn5250: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agolibmpd: add license information
Gustavo Zacarias [Tue, 29 Jan 2013 08:23:54 +0000 (08:23 +0000)]
libmpd: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agogmpc: add license information
Gustavo Zacarias [Tue, 29 Jan 2013 08:23:53 +0000 (08:23 +0000)]
gmpc: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agodistcc: add license information
Gustavo Zacarias [Tue, 29 Jan 2013 08:23:52 +0000 (08:23 +0000)]
distcc: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agodialog: add license information
Gustavo Zacarias [Tue, 29 Jan 2013 08:23:51 +0000 (08:23 +0000)]
dialog: add license information

[Peter: License is LGPLv2.1]
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agobluez_utils: add license information
Gustavo Zacarias [Tue, 29 Jan 2013 08:23:50 +0000 (08:23 +0000)]
bluez_utils: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agoolsr: bump to version 0.6.4
Gustavo Zacarias [Tue, 29 Jan 2013 11:20:04 +0000 (11:20 +0000)]
olsr: bump to version 0.6.4

Bump olsrd to version 0.6.4

Fixes:
http://autobuild.buildroot.net/results/553c8157cd83ca60475caacc119779c778806781/
which is due to the old version not being friendly with newer flex
versions.

Enabled more plugins to make it more useful.

Switch to forked mode in the init script to avoid console noise.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agoNew package: cache-calibrator
Stephan Hoffmann [Mon, 28 Jan 2013 23:53:52 +0000 (23:53 +0000)]
New package: cache-calibrator

The Calibrator is a small C program that is supposed to analyze
a computers (cache-) memory system and extract the following
parameters:

    number of cache levels
    for each cache level:
        its size
        its linesize
        its access/miss latency
    main memory access latency
    number of TLB levels
    for each TLB level:
        its capacity (i.e. number of entries)
        the pagesize used
        the TLB miss latency

http://homepages.cwi.nl/~manegold/Calibrator/

It is also recommended as a load generator for realtime testing in:

https://rt.wiki.kernel.org/index.php/RT_PREEMPT_HOWTO#Benchmarking

[Peter: reformat help text, fix extract step]
Signed-off-by: Stephan Hoffmann <sho@relinux.de>
Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agogenext2fs: add license information
Gustavo Zacarias [Tue, 22 Jan 2013 03:35:53 +0000 (03:35 +0000)]
genext2fs: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agoquagga: add license information
Gustavo Zacarias [Tue, 22 Jan 2013 03:35:52 +0000 (03:35 +0000)]
quagga: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agoreadline: add license information
Gustavo Zacarias [Tue, 22 Jan 2013 03:35:51 +0000 (03:35 +0000)]
readline: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agosdparm: add license information
Gustavo Zacarias [Tue, 22 Jan 2013 03:35:50 +0000 (03:35 +0000)]
sdparm: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agotar: add license information
Gustavo Zacarias [Tue, 22 Jan 2013 03:35:49 +0000 (03:35 +0000)]
tar: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agodhcp: add license information
Gustavo Zacarias [Tue, 22 Jan 2013 03:35:48 +0000 (03:35 +0000)]
dhcp: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agobind: add license information
Gustavo Zacarias [Tue, 22 Jan 2013 03:35:47 +0000 (03:35 +0000)]
bind: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agodosfstools: add license information
Gustavo Zacarias [Tue, 22 Jan 2013 03:35:46 +0000 (03:35 +0000)]
dosfstools: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agompd: bump to version 0.17.3
Gustavo Zacarias [Tue, 22 Jan 2013 01:17:02 +0000 (01:17 +0000)]
mpd: bump to version 0.17.3

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agonettle: bump to version 2.6
Gustavo Zacarias [Tue, 22 Jan 2013 01:17:01 +0000 (01:17 +0000)]
nettle: bump to version 2.6

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agosamba: bump to version 3.6.11
Gustavo Zacarias [Tue, 22 Jan 2013 01:17:00 +0000 (01:17 +0000)]
samba: bump to version 3.6.11

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agobarebox: Allow to build an environment image
Maxime Ripard [Mon, 28 Jan 2013 10:10:34 +0000 (10:10 +0000)]
barebox: Allow to build an environment image

[Peter: Tweaked help text]
Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agopython3: Fix pyc-only related runtime exceptions
Daniel Nelson [Sun, 27 Jan 2013 15:38:56 +0000 (15:38 +0000)]
python3: Fix pyc-only related runtime exceptions

Python3 changes the pyc lookup strategy, ignoring the
__pycache__ directory if the .py file is missing. Change
install location to enable use of .pyc without their parent .py

See http://www.python.org/dev/peps/pep-3147

[Peter: add patch header]
Signed-off-by: Daniel Nelson <daniel@sigpwr.com>
Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout at mind.be>
  (untested)
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agoAdd support for the Calao-systems USB-A9260
Gregory Hermant [Mon, 28 Jan 2013 06:48:31 +0000 (06:48 +0000)]
Add support for the Calao-systems USB-A9260

Signed-off-by: Gregory Hermant <gregory.hermant@calao-systems.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agocollectd: bump to version 5.1.2
Gustavo Zacarias [Mon, 28 Jan 2013 06:01:11 +0000 (06:01 +0000)]
collectd: bump to version 5.1.2

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agolinux-firmware: add new config option of iwlwifi 5000 firmware
Thomas Petazzoni [Mon, 28 Jan 2013 09:19:45 +0000 (09:19 +0000)]
linux-firmware: add new config option of iwlwifi 5000 firmware

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agoqwt: fix project's URL
Yegor Yefremov [Mon, 28 Jan 2013 05:35:11 +0000 (05:35 +0000)]
qwt: fix project's URL

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agolinux: bump 3.7.x stable version
Gustavo Zacarias [Mon, 28 Jan 2013 01:14:50 +0000 (01:14 +0000)]
linux: bump 3.7.x stable version

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agokernel-headers: bump 3.{0, 4, 7}.x stable versions
Gustavo Zacarias [Mon, 28 Jan 2013 01:14:49 +0000 (01:14 +0000)]
kernel-headers: bump 3.{0, 4, 7}.x stable versions

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agolibvncserver: bump version
Peter Korsgaard [Mon, 28 Jan 2013 07:42:30 +0000 (08:42 +0100)]
libvncserver: bump version

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agoolsr: rework build and install procedure
Thomas Petazzoni [Sun, 27 Jan 2013 05:35:12 +0000 (05:35 +0000)]
olsr: rework build and install procedure

This commit reworks the build and install steps of the olsr package,
to fix a number of problems and do minor improvements:

 1. The build step was doing "make <foo>" for each
    plugin. Unfortunately, inside olsr build system, doing "make
    <foo>" for a plugin triggers a clean of the plugin directory, a
    build, and then an installation of the plugin. This installation
    fails because DESTDIR is not passed at the install step. This
    leads to build issues like
    http://autobuild.buildroot.org/results/a9fed78cd0b3991763a797c38387edd4157fbdb9/build-end.log. To
    fix this, we call make in each plugin's directory, which is what
    "make <foo>" was doing internally.

 2. The install step was manually installing the olsrd binary. We now
    instead use the install_bin make target that comes in olsr's build
    system.

 3. The install step was manually installing the olsr plugins. We now
    instead use the install make target available in each plugin's
    makefile.

 4. We use 'install' to install the init script, which avoids the
    manual creation of /etc/init.d.

 5. We use 'install' to install the sample configuration file.

 6. We remove the useless strip commands.

 7. We add a patch that allows us to pass LDCONFIG=/bin/true to avoid
    ldconfig being called during the installation process.

 8. We remove commands from the clean step that were in fact
    uninstallation commands. We don't bother re-adding those commands
    in an uninstallation step, since it is now generally accepted that
    the uninstall step is quite useless and should be deprecated.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agoolsr: reindent commands with tabs
Thomas Petazzoni [Sun, 27 Jan 2013 05:35:11 +0000 (05:35 +0000)]
olsr: reindent commands with tabs

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agopolkit: don't build documentation and examples
Thomas Petazzoni [Sun, 27 Jan 2013 05:07:19 +0000 (05:07 +0000)]
polkit: don't build documentation and examples

Building the manpages of polkit fails with issues in xsltproc. Since
we are generally not that much interested in documentation, we disable
them. This solves the build issues like
http://autobuild.buildroot.org/results/751b71a594fa04924c7c3bb8f2c460ce1e44aa90/build-end.log.

While we're at it, we also disable the build of the polkit example
programs.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agosudo: bump to version 1.8.6p4
Gustavo Zacarias [Fri, 25 Jan 2013 02:50:40 +0000 (02:50 +0000)]
sudo: bump to version 1.8.6p4

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agoflex: bump to version 2.5.37
Gustavo Zacarias [Fri, 25 Jan 2013 02:50:39 +0000 (02:50 +0000)]
flex: bump to version 2.5.37

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agontfs-3g: bump to version 2013.1.13
Gustavo Zacarias [Fri, 25 Jan 2013 02:50:38 +0000 (02:50 +0000)]
ntfs-3g: bump to version 2013.1.13

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agoe2fsprogs: bump to version 1.42.7
Gustavo Zacarias [Fri, 25 Jan 2013 02:50:37 +0000 (02:50 +0000)]
e2fsprogs: bump to version 1.42.7

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agogdb: remove 6.8 / 7.0.1 / 7.1, deprecate 7.2 / 7.3
Peter Korsgaard [Thu, 24 Jan 2013 13:44:06 +0000 (14:44 +0100)]
gdb: remove 6.8 / 7.0.1 / 7.1, deprecate 7.2 / 7.3

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agogdb: Add support for gdb 7.5.1 and make it the default
Will Newton [Thu, 24 Jan 2013 01:33:53 +0000 (01:33 +0000)]
gdb: Add support for gdb 7.5.1 and make it the default

Signed-off-by: Will Newton <will.newton@imgtec.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agopolkit: show comment when wchar isn't enabled
Peter Korsgaard [Thu, 24 Jan 2013 08:26:52 +0000 (09:26 +0100)]
polkit: show comment when wchar isn't enabled

As pointed out by Arnout.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agoMedia-ctl: new package
Patrick Gerber [Tue, 22 Jan 2013 00:09:33 +0000 (00:09 +0000)]
Media-ctl: new package

[Peter: fix help text]
Signed-off-by: Patrick Gerber <kpa_info@yahoo.fr>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agoYavta: new package
Patrick Gerber [Tue, 22 Jan 2013 00:09:32 +0000 (00:09 +0000)]
Yavta: new package

[Peter: License is GPLv2+, move out of package/multimedia]
Signed-off-by: Patrick Gerber <kpa_info@yahoo.fr>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agolinux: bump 3.7.x stable version
Gustavo Zacarias [Tue, 22 Jan 2013 00:46:03 +0000 (00:46 +0000)]
linux: bump 3.7.x stable version

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agokernel-headers: bump 3.{0, 4, 7}.x stable versions
Gustavo Zacarias [Tue, 22 Jan 2013 00:46:02 +0000 (00:46 +0000)]
kernel-headers: bump 3.{0, 4, 7}.x stable versions

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agopackage: add bustle dbus monitor package
Peter Korsgaard [Tue, 22 Jan 2013 14:55:55 +0000 (15:55 +0100)]
package: add bustle dbus monitor package

Only builds the capture tool, not the (host) graphical viewer.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agoaudiofile: fix license
Peter Korsgaard [Tue, 22 Jan 2013 07:44:52 +0000 (08:44 +0100)]
audiofile: fix license

Somehow this didn't get committed in 1eb9845ad6 (add license information)

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agocan-utils: needs mmu support
Peter Korsgaard [Tue, 22 Jan 2013 07:43:50 +0000 (08:43 +0100)]
can-utils: needs mmu support

Fixes http://autobuild.buildroot.org/results/2a06aecd58bb465f5e3c2610d34162b48c9ebba4/

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agovsftpd: add empty directory /usr/share/empty
Stephan Hoffmann [Mon, 21 Jan 2013 08:21:29 +0000 (08:21 +0000)]
vsftpd: add empty directory /usr/share/empty

Vsftpd needs an empty directory where it can chroot.
If /usr/share/empty isn't present it refuses to work in the default
configuration.

Signed-off-by: Stephan Hoffmann <sho@relinux.de>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agolame: add license information
Gustavo Zacarias [Mon, 21 Jan 2013 11:29:50 +0000 (11:29 +0000)]
lame: add license information

[Peter: License is LGPLv2+]
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agolibvorbis: add license information
Gustavo Zacarias [Mon, 21 Jan 2013 11:29:49 +0000 (11:29 +0000)]
libvorbis: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agolibao: add license information
Gustavo Zacarias [Mon, 21 Jan 2013 11:29:48 +0000 (11:29 +0000)]
libao: add license information

[Peter: License is GPLv2+]
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agohaserl: add license information
Gustavo Zacarias [Mon, 21 Jan 2013 11:29:47 +0000 (11:29 +0000)]
haserl: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agosshfs: add license information
Gustavo Zacarias [Mon, 21 Jan 2013 11:29:46 +0000 (11:29 +0000)]
sshfs: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agogzip: add license information
Gustavo Zacarias [Mon, 21 Jan 2013 11:29:45 +0000 (11:29 +0000)]
gzip: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agoflex: add license information
Gustavo Zacarias [Mon, 21 Jan 2013 11:29:44 +0000 (11:29 +0000)]
flex: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agoaudiofile: add license information
Gustavo Zacarias [Mon, 21 Jan 2013 11:29:43 +0000 (11:29 +0000)]
audiofile: add license information

[Peter: License is GPLv2+ LGPLv2+]
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agocoreutils: add license information
Gustavo Zacarias [Mon, 21 Jan 2013 11:29:42 +0000 (11:29 +0000)]
coreutils: add license information

[Peter: License is GPLv3+]
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agoxz: add license information
Gustavo Zacarias [Mon, 21 Jan 2013 11:29:41 +0000 (11:29 +0000)]
xz: add license information

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agobusybox: add 1.21.x series
Gustavo Zacarias [Mon, 21 Jan 2013 12:14:23 +0000 (12:14 +0000)]
busybox: add 1.21.x series

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
11 years agoneardal: bump version to 0.8
Simon Dawson [Mon, 21 Jan 2013 10:45:33 +0000 (10:45 +0000)]
neardal: bump version to 0.8

Signed-off-by: Simon Dawson <spdawson@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>