buildroot.git
14 years agoautomake: convert to autotools infrastructure for host package
Thomas Petazzoni [Sun, 1 Nov 2009 22:39:02 +0000 (23:39 +0100)]
automake: convert to autotools infrastructure for host package

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
14 years agoautoconf: add patch to make it work under dash
Thomas Petazzoni [Tue, 15 Dec 2009 15:14:56 +0000 (16:14 +0100)]
autoconf: add patch to make it work under dash

autoconf >= 2.64 was broken when /bin/sh is symlinked to dash. This
has been fixed post-2.65 by the commit at
http://git.savannah.gnu.org/cgit/autoconf.git/commit/?id=7f75858f577f11a844781764f30cd42cfe8a5669.

Compared to the original patch, the patch included in Buildroot
manually does the change to the ./configure script itself. Otherwise,
the compilation of host-autoconf would require host-autoconf itself.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
14 years agoautoconf: bump version to 2.65
Thomas Petazzoni [Tue, 15 Dec 2009 14:34:55 +0000 (15:34 +0100)]
autoconf: bump version to 2.65

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
14 years agoautoconf: convert to autotools infrastructure for host package
Thomas Petazzoni [Sun, 1 Nov 2009 22:38:33 +0000 (23:38 +0100)]
autoconf: convert to autotools infrastructure for host package

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
14 years agoAdd package statistics script
Thomas Petazzoni [Tue, 27 Oct 2009 23:28:40 +0000 (00:28 +0100)]
Add package statistics script

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
14 years agohost-pkgconfig is now host-pkg-config
Thomas Petazzoni [Tue, 27 Oct 2009 22:16:44 +0000 (23:16 +0100)]
host-pkgconfig is now host-pkg-config

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
14 years agopkg-config: convert to autotools infrastructure for host package
Thomas Petazzoni [Tue, 27 Oct 2009 22:15:09 +0000 (23:15 +0100)]
pkg-config: convert to autotools infrastructure for host package

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
14 years agoAdd $(HOST_DIR)/usr/sbin to the PATH
Thomas Petazzoni [Tue, 27 Oct 2009 07:53:54 +0000 (08:53 +0100)]
Add $(HOST_DIR)/usr/sbin to the PATH

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
14 years agozlib: rework on top of the generic infrastructure
Thomas Petazzoni [Tue, 27 Oct 2009 07:53:12 +0000 (08:53 +0100)]
zlib: rework on top of the generic infrastructure

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
14 years agoolsr: rework on top of the generic infrastructure
Thomas Petazzoni [Tue, 27 Oct 2009 07:52:52 +0000 (08:52 +0100)]
olsr: rework on top of the generic infrastructure

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
14 years agoRework autotools infrastructure on top of the generic infrastructure
Thomas Petazzoni [Sun, 8 Nov 2009 17:37:49 +0000 (18:37 +0100)]
Rework autotools infrastructure on top of the generic infrastructure

Now that the previous commit implemented a generic package
infrastructure, we make the autotools infrastructure inherit from the
generic one so that the code is not duplicated.

The new AUTOTARGETS macro works by defining what should be done at the
configure, build and install steps of a package and then calls the
GENTARGETS macro of the generic package infrastructure.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
14 years agoDefine TARGET_MAKE_ENV similarly to HOST_MAKE_ENV
Thomas Petazzoni [Tue, 15 Dec 2009 12:39:40 +0000 (13:39 +0100)]
Define TARGET_MAKE_ENV similarly to HOST_MAKE_ENV

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
14 years agoAdd generic package infrastructure
Thomas Petazzoni [Sun, 8 Nov 2009 17:37:36 +0000 (18:37 +0100)]
Add generic package infrastructure

This new infrastructure allows to write simpler .mk files for packages
not using the autotools as their build system, by factorizing many
common steps (download, extract, patching), and will more easily allow
Buildroot-wide changes in how the packages are handled.

The main macro is called GENTARGETS and works similarly to the
AUTOTARGETS macro that already exists for autotools-based
packages. However, the set of variables to be defined before calling
the macro is different. Refer to the documentation for details.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
14 years agoMerge branch 'avr32-fixes' of git://git.busybox.net/~tpetazzoni/git/buildroot
Peter Korsgaard [Tue, 15 Dec 2009 11:39:24 +0000 (12:39 +0100)]
Merge branch 'avr32-fixes' of git://git.busybox.net/~tpetazzoni/git/buildroot

14 years agogcc: do not pass --with-pkgversion to gcc < 4.3
Thomas Petazzoni [Tue, 15 Dec 2009 11:03:05 +0000 (12:03 +0100)]
gcc: do not pass --with-pkgversion to gcc < 4.3

Commit 09c181f2891276c458de327d241151bab38bde0f added new options
passed to gcc configure to set --with-pkgversion and --with-bugurl, to
gcc >= gcc 4.3. To check this, it was checking that the GCC_VERSION
string does not contain 4.2.

Unfortunately, the test is bogus. It does a findstring on x4.2. (with
a final dot) but compares the result with x4.2 (without the final
dot).

The result is that even with 4.2 versions, the test was true, leading
--with-pkgversion and --with-bugurl being passed to gcc's configure
script.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
14 years agoupdate avr32 defconfigs after uclibc avr32 version removal
Thomas Petazzoni [Tue, 15 Dec 2009 09:44:53 +0000 (10:44 +0100)]
update avr32 defconfigs after uclibc avr32 version removal

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
14 years agouclibc: get rid of avr32 special version since upstream works
Thomas Petazzoni [Tue, 15 Dec 2009 09:37:08 +0000 (10:37 +0100)]
uclibc: get rid of avr32 special version since upstream works

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
14 years agotoolchain/uClibc: avr32 patch should apply to 0.9.30.1
Peter Korsgaard [Tue, 15 Dec 2009 09:47:39 +0000 (10:47 +0100)]
toolchain/uClibc: avr32 patch should apply to 0.9.30.1

avr32 uses 0.9.30.1, not 0.9.30.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agouclibc: add prctl syscall fix for AVR32 architecture
Hans-Christian Egtvedt [Tue, 15 Dec 2009 09:36:33 +0000 (10:36 +0100)]
uclibc: add prctl syscall fix for AVR32 architecture

This patch fixes the prctl syscall for the AVR32 architecture, since this
architecture assumes you handle varargs in a proper way, always.

Signed-off-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agotoolchain/uClibc: 0.9.30.x config: enable arch specific string routines if available
Peter Korsgaard [Tue, 15 Dec 2009 08:51:57 +0000 (09:51 +0100)]
toolchain/uClibc: 0.9.30.x config: enable arch specific string routines if available

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agoMerge branch 'remove-external-toolchain' of git://git.busybox.net/~tpetazzoni/git...
Peter Korsgaard [Mon, 14 Dec 2009 23:19:17 +0000 (00:19 +0100)]
Merge branch 'remove-external-toolchain' of git://git.busybox.net/~tpetazzoni/git/buildroot

14 years agoremove unused AVR32 specific uClibc configuration
Thomas Petazzoni [Mon, 14 Dec 2009 13:38:18 +0000 (14:38 +0100)]
remove unused AVR32 specific uClibc configuration

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
14 years agoupdate AVR32 defconfigs
Thomas Petazzoni [Mon, 14 Dec 2009 13:28:29 +0000 (14:28 +0100)]
update AVR32 defconfigs

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
14 years agoUpdate non-AVR32 defconfigs
Thomas Petazzoni [Mon, 14 Dec 2009 13:32:03 +0000 (14:32 +0100)]
Update non-AVR32 defconfigs

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
14 years agobinutils: remove external source patches
Thomas Petazzoni [Mon, 14 Dec 2009 11:19:53 +0000 (12:19 +0100)]
binutils: remove external source patches

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
14 years agouclibc: remove external sources patches
Thomas Petazzoni [Mon, 14 Dec 2009 11:17:58 +0000 (12:17 +0100)]
uclibc: remove external sources patches

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
14 years agogdb: remove external sources patches
Thomas Petazzoni [Mon, 14 Dec 2009 11:17:25 +0000 (12:17 +0100)]
gdb: remove external sources patches

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
14 years agogcc: remove external sources patches
Thomas Petazzoni [Mon, 14 Dec 2009 11:16:43 +0000 (12:16 +0100)]
gcc: remove external sources patches

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
14 years agoRemove external source toolchain options
Thomas Petazzoni [Mon, 14 Dec 2009 11:11:17 +0000 (12:11 +0100)]
Remove external source toolchain options

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
14 years agoUse BR2_TOOLCHAIN_BUILDROOT instead of BR2_TOOLCHAIN_SOURCE
Thomas Petazzoni [Mon, 14 Dec 2009 11:10:12 +0000 (12:10 +0100)]
Use BR2_TOOLCHAIN_BUILDROOT instead of BR2_TOOLCHAIN_SOURCE

The BR2_TOOLCHAIN_SOURCE option is removed in a future commit.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
14 years agouclibc: remove support for external source toolchains
Thomas Petazzoni [Mon, 14 Dec 2009 11:09:17 +0000 (12:09 +0100)]
uclibc: remove support for external source toolchains

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
14 years agouclibc: do not allow selection of non-avr32 versions on AVR32
Thomas Petazzoni [Mon, 14 Dec 2009 11:06:53 +0000 (12:06 +0100)]
uclibc: do not allow selection of non-avr32 versions on AVR32

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
14 years agogdb: do not allow selection of non-avr32 versions on AVR32
Thomas Petazzoni [Mon, 14 Dec 2009 11:06:36 +0000 (12:06 +0100)]
gdb: do not allow selection of non-avr32 versions on AVR32

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
14 years agobinutils: remove support for external source toolchains
Thomas Petazzoni [Mon, 14 Dec 2009 11:05:53 +0000 (12:05 +0100)]
binutils: remove support for external source toolchains

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
14 years agobinutils: do not allow selection of non-avr32 versions on AVR32
Thomas Petazzoni [Mon, 14 Dec 2009 11:05:17 +0000 (12:05 +0100)]
binutils: do not allow selection of non-avr32 versions on AVR32

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
14 years agogcc: remove GCC_OFFICIAL_VERSION and just use GCC_VERSION instead
Thomas Petazzoni [Mon, 14 Dec 2009 11:04:11 +0000 (12:04 +0100)]
gcc: remove GCC_OFFICIAL_VERSION and just use GCC_VERSION instead

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
14 years agogcc: remove support for external source toolchains
Thomas Petazzoni [Mon, 14 Dec 2009 11:02:02 +0000 (12:02 +0100)]
gcc: remove support for external source toolchains

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
14 years agogcc: improve configuration for snapshot versions
Thomas Petazzoni [Mon, 14 Dec 2009 10:59:44 +0000 (11:59 +0100)]
gcc: improve configuration for snapshot versions

Make the selection of a snapshot version a normal gcc version choice,
and make sure BR2_GCC_VERSION is properly defined.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
14 years agogcc: on avr32, only allow avr32 gcc versions
Thomas Petazzoni [Mon, 14 Dec 2009 10:57:14 +0000 (11:57 +0100)]
gcc: on avr32, only allow avr32 gcc versions

Remove references to BR2_EXT_GCC_VERSION_* configuration options, and
only allows special avr32 gcc versions on the AVR32 architecture.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
14 years agouclibc: add avr32 special version
Thomas Petazzoni [Mon, 14 Dec 2009 10:47:55 +0000 (11:47 +0100)]
uclibc: add avr32 special version

 * Add a new 0.9.30-avr32-2.1.5 version of uClibc in Config.in

 * Add a patch for 0.9.20-avr32-2.1.5

 * Select a different UCLIBC_SITE for avr32 versions in uclibc.mk

 * Add the LINKRELAX=y configuration option to the uClibc .config file
   in uclibc.mk

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
14 years agogdb: add avr32 special verson
Thomas Petazzoni [Mon, 14 Dec 2009 10:38:58 +0000 (11:38 +0100)]
gdb: add avr32 special verson

 * Add a new gdb version for AVR32 in Config.in

 * Use a special mirror for this gdb version in gdb.mk

 * Do not try to apply patches when the patch directory does not exist
   in gdb.mk

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
14 years agogcc: add 4.2.2-avr32-2.1.5 patches
Thomas Petazzoni [Mon, 14 Dec 2009 11:16:28 +0000 (12:16 +0100)]
gcc: add 4.2.2-avr32-2.1.5 patches

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
14 years agogcc: add avr32 special version
Thomas Petazzoni [Mon, 14 Dec 2009 11:15:36 +0000 (12:15 +0100)]
gcc: add avr32 special version

 * Add new gcc version 4.2.2-avr32-2.1.5 in Config.in

 * Select the Atmel mirror to download gcc with avr32 in their version
   name, in gcc-uclibc-*.mk

 * Do not apply patches if the patch directory is empty, in
   gcc-uclibc-*.mk

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
14 years agobinutils: add avr32 special version
Thomas Petazzoni [Mon, 14 Dec 2009 10:19:34 +0000 (11:19 +0100)]
binutils: add avr32 special version

 * Add a new binutils version 2.18-avr32-1.0.1 to the Config.in

 * Use a different site to download avr32 binutils version in binutils.mk

 * Only apply patches from the patch directory if it exists in
   binutils.mk

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
14 years agoremove BR2_KERNEL_HURD from defconfig files
Thomas Petazzoni [Sat, 12 Dec 2009 18:44:08 +0000 (19:44 +0100)]
remove BR2_KERNEL_HURD from defconfig files

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
14 years agogcc: remove hurd specific details
Thomas Petazzoni [Sat, 12 Dec 2009 18:38:23 +0000 (19:38 +0100)]
gcc: remove hurd specific details

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
14 years agokernel-headers: bump 2.6.31.x / 2.6.32.x stable versions
Peter Korsgaard [Mon, 14 Dec 2009 20:14:46 +0000 (21:14 +0100)]
kernel-headers: bump 2.6.31.x / 2.6.32.x stable versions

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agopackage/qt: bump version
Peter Korsgaard [Mon, 14 Dec 2009 16:29:59 +0000 (17:29 +0100)]
package/qt: bump version

I know 4.6.0 is out, but I don't have a setup to test it at the moment,
so lets stick with 4.5.x for now.

There's apparently no .tar.bz2 of 4.5.3.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agopackage/qt: fix download URL
Peter Korsgaard [Mon, 14 Dec 2009 16:00:24 +0000 (17:00 +0100)]
package/qt: fix download URL

get.qtsoftware.com doesn't seem to work any more. The links on the Qt
website now points to get.qt.nokia.com, so use that instead.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agopackage/qt: add font selection
Peter Korsgaard [Mon, 14 Dec 2009 15:54:46 +0000 (16:54 +0100)]
package/qt: add font selection

Commit f98547622 (make sure to install all Qt-fonts and true-type-fonts)
changed Qt to install all .qpf fonts to the target instead of only a
hardcoded subset. Some of those fonts are unfortunately quite big (1-2MB)
and are not always needed (japanese, unicode).

Instead add a font selection in Kconfig similar to how it is done for
pixel depths, and default to the subset we were previously using.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agoqt: tweak gui kconfig
Peter Korsgaard [Mon, 14 Dec 2009 15:03:42 +0000 (16:03 +0100)]
qt: tweak gui kconfig

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agopackage/mtd-utils: fix git build after gitweb update
Peter Korsgaard [Mon, 14 Dec 2009 12:31:50 +0000 (13:31 +0100)]
package/mtd-utils: fix git build after gitweb update

Reported by Daniel Mack <daniel@caiaq.de>

The gitweb installation of infradead.org has been updated, and gitweb >=
1.6.6-rc1 adds the first 7 characters of the git SHA1 to the snapshot
tarball directory name.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agoMakefile: fix build if CDPATH is set in environment
Peter Korsgaard [Sun, 13 Dec 2009 21:58:49 +0000 (22:58 +0100)]
Makefile: fix build if CDPATH is set in environment

Reported by Bjørn Forsman <bjorn.forsman@gmail.com>.

If CDPATH is set in the environment, cd <dir> will print the absolute path
of <dir>, causing various trouble (The most critical being BASE_DIR ending
up as <path> <path> which breaks basically everything).

Fix it by clearing CDPATH. Notice that export doesn't affect the environment
of $(shell ..) calls, so explicitly throw away any output from cd in the
BASE_DIR shell call.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agobusybox: bump 1.15.x stable version
Peter Korsgaard [Sat, 12 Dec 2009 22:41:16 +0000 (23:41 +0100)]
busybox: bump 1.15.x stable version

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agopackage: Added libdvdnav package (dependency of gst-plugins-bad)
Lionel Landwerlin [Sat, 12 Dec 2009 02:13:40 +0000 (03:13 +0100)]
package: Added libdvdnav package (dependency of gst-plugins-bad)

Signed-off-by: Lionel Landwerlin <llandwerlin@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agoMakefile: document configure cache handling
Peter Korsgaard [Sat, 12 Dec 2009 07:48:53 +0000 (08:48 +0100)]
Makefile: document configure cache handling

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agodocs: Clean up punctuation, grammar, usage, and typos.
grante [Thu, 10 Dec 2009 22:12:21 +0000 (16:12 -0600)]
docs: Clean up punctuation, grammar, usage, and typos.

Closes #795.

Signed-off-by: Grant Edwards <grant.b.edwards@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agoMakefile: drop config cache on .config changes
Peter Korsgaard [Fri, 11 Dec 2009 23:16:33 +0000 (00:16 +0100)]
Makefile: drop config cache on .config changes

The config cache might contain invalid values when .config is changed
(E.G. when adding/removing libraries), so drop it so config checks are
rerun for new packages (existing package still won't be rebuilt).

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agogcc: native toolchain needs BR2_HAVE_DEVFILES
Peter Korsgaard [Fri, 11 Dec 2009 22:55:17 +0000 (23:55 +0100)]
gcc: native toolchain needs BR2_HAVE_DEVFILES

Native toolchain doesn't make much sense without include / .a files.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agoAdded libdvdread package (dependency of gst-plugins-bad)
Lionel Landwerlin [Thu, 12 Nov 2009 22:33:16 +0000 (23:33 +0100)]
Added libdvdread package (dependency of gst-plugins-bad)

[Peter: use official upstream, add url to kconfig, fix AUTORARGETS path]
Signed-off-by: Lionel Landwerlin <llandwerlin@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agoFix gst-plugins-bad dependency on openssl through the apexsink element
Lionel Landwerlin [Thu, 10 Dec 2009 21:30:41 +0000 (22:30 +0100)]
Fix gst-plugins-bad dependency on openssl through the apexsink element
Signed-off-by: Lionel Landwerlin <llandwerlin@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agoFix gst-plugins-bad dependency on libcdaudio
Lionel Landwerlin [Thu, 12 Nov 2009 22:33:14 +0000 (23:33 +0100)]
Fix gst-plugins-bad dependency on libcdaudio

Signed-off-by: Lionel Landwerlin <llandwerlin@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agoAdded libcdaudio package (dependency of gst-plugins-bad)
Lionel Landwerlin [Thu, 12 Nov 2009 22:33:13 +0000 (23:33 +0100)]
Added libcdaudio package (dependency of gst-plugins-bad)

[Peter: add url to kconfig, fix AUTOTARGETS path]
Signed-off-by: Lionel Landwerlin <llandwerlin@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agolibpcap: fix wireless handling
Peter Korsgaard [Wed, 9 Dec 2009 13:00:55 +0000 (14:00 +0100)]
libpcap: fix wireless handling

Based on ba23aa7b in libpcap upstream.

linux/wireless.h includes linux/if.h, which conflicts with net/if.h as
they both define if* structures. Fix build by simply using linux/if.h
instead of net/if.h.

The same fix should be done for the configure script, but cheat by
presetting it instead.

This fix in turn fixes kismet build with BR2_CONFIG_CACHE enabled, as
that uses the same ac_cv_linux_wireless_h cache value.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agokernel-headers: bump 2.6.27.x stable version
Peter Korsgaard [Wed, 9 Dec 2009 07:36:41 +0000 (08:36 +0100)]
kernel-headers: bump 2.6.27.x stable version

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agogst-plugins-bad: allow the build of ivorbisdec plugin
Sven Neumann [Thu, 3 Dec 2009 23:02:03 +0000 (00:02 +0100)]
gst-plugins-bad: allow the build of ivorbisdec plugin

Allow to select the ivorbisdec plugin using the tremor
fixed-point Ogg Vorbis decoder.

Signed-off-by: Sven Neumann <s.neumann@raumfeld.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agotremor: add patch to export all symbols
Sven Neumann [Thu, 3 Dec 2009 23:02:02 +0000 (00:02 +0100)]
tremor: add patch to export all symbols

Tremor comes with a Version_script file that limits the
list of exported symbols. Without these symbols we can't
build the ivorbisdec GStreamer plug-in (and probably other
application). This commit adds a patch that removes this
limitation and makes all global symbols available.

Signed-off-by: Sven Neumann <s.neumann@raumfeld.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agolibvorbis: split tremor into its own package
Sven Neumann [Thu, 3 Dec 2009 23:02:01 +0000 (00:02 +0100)]
libvorbis: split tremor into its own package

This commit splits the Tremor fixed-point implementation
out of the libvorbis package and creates a new package
called 'tremor' for it.

Signed-off-by: Sven Neumann <s.neumann@raumfeld.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agokernel-headers: bump 2.6.27.x / 2.6.31.x stable versions
Peter Korsgaard [Tue, 8 Dec 2009 20:43:53 +0000 (21:43 +0100)]
kernel-headers: bump 2.6.27.x / 2.6.31.x stable versions

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agogst-plugins-bad: make more dependency-less plugins configurable
Sven Neumann [Thu, 3 Dec 2009 22:34:18 +0000 (23:34 +0100)]
gst-plugins-bad: make more dependency-less plugins configurable

The latest update added a few new plugins that were missing from
the buildroot configuration system. This commit makes these
dependency-less plugins configurable.

Signed-off-by: Sven Neumann <s.neumann@raumfeld.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agoAdd fuse-sshfs package
Daniel Mack [Tue, 24 Nov 2009 16:29:09 +0000 (17:29 +0100)]
Add fuse-sshfs package

[Peter: use select for library dependencies]
Signed-off-by: Daniel Mack <daniel@caiaq.de>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agolibfuse: bump version number to 2.8.1
Daniel Mack [Tue, 24 Nov 2009 15:02:40 +0000 (16:02 +0100)]
libfuse: bump version number to 2.8.1

Signed-off-by: Daniel Mack <daniel@caiaq.de>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agoCHANGES: #679 (autoconf m4) issue resolved
Peter Korsgaard [Mon, 7 Dec 2009 08:14:36 +0000 (09:14 +0100)]
CHANGES: #679 (autoconf m4) issue resolved

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agoAdd new package hostapd
Gustavo Zacarias [Mon, 30 Nov 2009 14:45:35 +0000 (11:45 -0300)]
Add new package hostapd

Closes #739.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agodirectfb: Fix ps2mouse driver availability
Lionel Landwerlin [Sun, 6 Dec 2009 21:21:58 +0000 (22:21 +0100)]
directfb: Fix ps2mouse driver availability

Closes #553.

The ps2mouse driver is miss named because it's not only a driver for
ps2 mice, but also usb mice. So it's not only limited to PC architecture
(x86 & x86-64).

Signed-off-by: Lionel Landwerlin <lionel.landwerlin@openwide.fr>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agoadd tcpreplay tool
Chris Packham [Thu, 30 Jul 2009 01:59:49 +0000 (13:59 +1200)]
add tcpreplay tool

Closes #515.

Tcpreplay is a tool for replaying network traffic from files saved with
tcpdump or other tools which write pcap(3) files.

The tcpreplay suite also ships with other tools (tcprewrite,
tcpreplay-edit) for manipulating pcap files.

[Peter: minor tweaks]
Signed-off-by: Chris Packham <judge.packham@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agolibpcap: always make install for the staging dir
Chris Packham [Fri, 30 Oct 2009 17:04:10 +0000 (13:04 -0400)]
libpcap: always make install for the staging dir

So that the headers get installed in the staging directory for other packages
that need to use them.

[Peter: tweaked whitespace changes]
Signed-off-by: Chris Packham <judge.packham@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agomesa3d: Pass LDFLAGS to the build config file
Clark Rawlins [Tue, 1 Dec 2009 13:46:27 +0000 (08:46 -0500)]
mesa3d: Pass LDFLAGS to the build config file

Closes #559.

Without the LDFLAGS in the build configuration file
building mesa3d fails with an external toolchain on amd64
machines targeting i686.  The error indicats that libX11
can't be found.

This change passes the --sysroot parameter (along with any
others specified by buildroot for LDFLAGS to the mklib script.

Signed-off-by: Clark Rawlins <clark@bit63.org>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agoBump bind to 9.5.2-P1
Gustavo Zacarias [Thu, 3 Dec 2009 16:19:27 +0000 (13:19 -0300)]
Bump bind to 9.5.2-P1

Closes #773.

Unspecified vulnerability in ISC BIND 9.4 before 9.4.3-P4, 9.5 before
9.5.2-P1, 9.6 before 9.6.1-P2, 9.7 beta before 9.7.0b3, and 9.0.x through
9.3.x with DNSSEC validation enabled and checking disabled (CD), allows
remote attackers to conduct DNS cache poisoning attacks via additional
sections in a response sent for resolution of a recursive client query,
which is not properly handled when the response is processed "at the same
time as requesting DNSSEC records (DO)."

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agopackage: get rid of redundant malloc related configure presets
Peter Korsgaard [Sun, 6 Dec 2009 18:55:42 +0000 (19:55 +0100)]
package: get rid of redundant malloc related configure presets

Those are already in TARGET_CONFIGURE_ARGS. Also get rid of unused
BR2_AC_CV_FUNC_MALLOC_0_NONNULL variable.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agoBump usbutils package to 0.86
Gustavo Zacarias [Mon, 30 Nov 2009 15:58:49 +0000 (12:58 -0300)]
Bump usbutils package to 0.86

Closes #749.

[Peter: remove redundant ac_cv_func_malloc_0_nonnull setting]
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agoBump iw to version 0.9.18
Gustavo Zacarias [Wed, 2 Dec 2009 17:39:52 +0000 (14:39 -0300)]
Bump iw to version 0.9.18

Closes #767.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agoAdd pkgversion to gcc >= 4.3
Gustavo Zacarias [Wed, 2 Dec 2009 19:36:43 +0000 (16:36 -0300)]
Add pkgversion to gcc >= 4.3

Closes #765.

[Peter: change to check for !4.2.x instead]
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agoBump pcre to 7.9
Gustavo Zacarias [Wed, 2 Dec 2009 15:39:21 +0000 (12:39 -0300)]
Bump pcre to 7.9

Closes #763.

[Peter: Only remove pcre-config from target if !BR2_HAVE_DEVFILES]
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agokernel-headers: make snapshot option more user friendly
Peter Korsgaard [Sun, 6 Dec 2009 14:40:03 +0000 (15:40 +0100)]
kernel-headers: make snapshot option more user friendly

Closes #751.

Make kernel headers snapshot more user friendly by making it more obvious
that it's about using a local kernel snapshot, and error out with a sensible
error message if the option is enabled but no linux-2.6.tar.bz2 is present
in DL_DIR, rather than trying to fetch it from kernel.org.

Furthermore fix the bug where it tried to use linux-2.6..tar.bz2 instead of
linux-2.6.tar.bz2.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agoBump lighttpd package to 1.4.25
Gustavo Zacarias [Tue, 1 Dec 2009 20:00:59 +0000 (17:00 -0300)]
Bump lighttpd package to 1.4.25

Closes #753

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agobinutils: get rid of ancient versions
Peter Korsgaard [Fri, 4 Dec 2009 19:55:37 +0000 (20:55 +0100)]
binutils: get rid of ancient versions

Get rid of 2.17.50.0.17, 2.18.50.0.{1,3,6,8}.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agobinutils: default to 2.20, mark 2.19 as deprecated
Peter Korsgaard [Fri, 4 Dec 2009 19:53:15 +0000 (20:53 +0100)]
binutils: default to 2.20, mark 2.19 as deprecated

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agotoolchain: get rid of unused gcc 3.x legacy handling
Peter Korsgaard [Fri, 4 Dec 2009 19:34:03 +0000 (20:34 +0100)]
toolchain: get rid of unused gcc 3.x legacy handling

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agoAdd binutils 2.20
Gustavo Zacarias [Wed, 2 Dec 2009 13:32:34 +0000 (10:32 -0300)]
Add binutils 2.20

Closes #761.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agokernel-headers: 2.6.32 needs scsi.h fix like 2.6.31
Peter Korsgaard [Fri, 4 Dec 2009 13:25:08 +0000 (14:25 +0100)]
kernel-headers: 2.6.32 needs scsi.h fix like 2.6.31

Reported by Emmanuel Blot <eblot.ml@gmail.com>

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agopackage/autoconf: autoconf for the target needs m4 for the host
Peter Korsgaard [Fri, 4 Dec 2009 13:23:39 +0000 (14:23 +0100)]
package/autoconf: autoconf for the target needs m4 for the host

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agokernel-headers: bump 2.6.30.x version
Peter Korsgaard [Fri, 4 Dec 2009 08:35:30 +0000 (09:35 +0100)]
kernel-headers: bump 2.6.30.x version

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agobusybox: 1.15.2 patches
Peter Korsgaard [Fri, 4 Dec 2009 08:24:01 +0000 (09:24 +0100)]
busybox: 1.15.2 patches

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agokernel-headers: fix 2.6.32 typo
Peter Korsgaard [Thu, 3 Dec 2009 18:05:11 +0000 (19:05 +0100)]
kernel-headers: fix 2.6.32 typo

Thanks to Joachim Pihl for noticing.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agoCHANGES: update for 2010.02 development
Peter Korsgaard [Thu, 3 Dec 2009 14:59:15 +0000 (15:59 +0100)]
CHANGES: update for 2010.02 development

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agokernel-headers: add 2.6.32
Peter Korsgaard [Thu, 3 Dec 2009 10:47:38 +0000 (11:47 +0100)]
kernel-headers: add 2.6.32

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agoConfig.in: Bump version
Peter Korsgaard [Tue, 1 Dec 2009 14:46:57 +0000 (15:46 +0100)]
Config.in: Bump version

Tree is open for development again.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agodocs/news.html: add 2009.11 annoucement mail
Peter Korsgaard [Tue, 1 Dec 2009 14:46:00 +0000 (15:46 +0100)]
docs/news.html: add 2009.11 annoucement mail

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
14 years agoConfig.in: bump version
Peter Korsgaard [Tue, 1 Dec 2009 14:23:10 +0000 (15:23 +0100)]
Config.in: bump version

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>