buildroot.git
15 years agotarget/Makefile.in: remove hurd reference
Peter Korsgaard [Sun, 26 Jul 2009 14:40:00 +0000 (16:40 +0200)]
target/Makefile.in: remove hurd reference

Missed by b6192fb9752a.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agoAdd support for custom post-build script
Daniel Mack [Wed, 8 Jul 2009 20:46:58 +0000 (22:46 +0200)]
Add support for custom post-build script

The config help text says it all:

  Specify a script to be run after the build has finished and before
  the BR2 starts packing the files into selected packages.

  This gives users the oportunity to do board-specific cleanups,
  add-ons and the like, so the generated files can be used directly
  without further processing.

  The script is called with the target directory name as first and
  only argument. Make sure the exit code of that script is 0,
  otherwise make will stop after calling it.

Signed-off-by: Daniel Mack <daniel@caiaq.de>
Cc: Sven Neumann <s.neumann@raumfeld.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agopackage/gnuconfig: xtensa patch
Peter Korsgaard [Sat, 25 Jul 2009 19:08:55 +0000 (21:08 +0200)]
package/gnuconfig: xtensa patch

New file missing from cd0b1ce3b

Signed-off-by: Maxim Grigoriev <maxim2405@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agotarget/device/KwikByte: remove unused 2.6.20 config
Peter Korsgaard [Sat, 25 Jul 2009 18:53:41 +0000 (20:53 +0200)]
target/device/KwikByte: remove unused 2.6.20 config

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agotarget/: remove hurd kernel placeholder
Peter Korsgaard [Sat, 25 Jul 2009 18:46:20 +0000 (20:46 +0200)]
target/: remove hurd kernel placeholder

Incomplete and unlikely to get completed in the near future - Pretty
much like hurd itself.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agotarget/Config.in: remove reference to target/linux/Config.in.experimental
Peter Korsgaard [Sat, 25 Jul 2009 18:44:24 +0000 (20:44 +0200)]
target/Config.in: remove reference to target/linux/Config.in.experimental

File doesn't exist any more.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agotoolchain/uclibc: xtensa patches
Peter Korsgaard [Sat, 25 Jul 2009 18:25:34 +0000 (20:25 +0200)]
toolchain/uclibc: xtensa patches

New files missing from 58050c28.

Signed-off-by: Maxim Grigoriev <maxim2405@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agolinux-advanced: remove unused ancient kernel versions
Peter Korsgaard [Sat, 25 Jul 2009 18:22:46 +0000 (20:22 +0200)]
linux-advanced: remove unused ancient kernel versions

More than 2 years old, and no in tree users.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agokernel-headers: bump 2.6.30.x stable version
Peter Korsgaard [Sat, 25 Jul 2009 18:15:22 +0000 (20:15 +0200)]
kernel-headers: bump 2.6.30.x stable version

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agoMerge branch 'xorg' of git://git.busybox.net/~tpetazzoni/git/buildroot
Peter Korsgaard [Sat, 25 Jul 2009 07:13:44 +0000 (09:13 +0200)]
Merge branch 'xorg' of git://git.busybox.net/~tpetazzoni/git/buildroot

15 years agoMerge branch 'master' of git://git.buildroot.net/~ulf/git/linux
Peter Korsgaard [Sat, 25 Jul 2009 06:46:45 +0000 (08:46 +0200)]
Merge branch 'master' of git://git.buildroot.net/~ulf/git/linux

15 years ago[XTENSA] Remove Copyright notes. They contradict GPL license.
Maxim Grigoriev [Sat, 25 Jul 2009 06:39:37 +0000 (08:39 +0200)]
[XTENSA] Remove Copyright notes. They contradict GPL license.

Signed-off-by: Maxim Grigoriev <maxim@tensilica.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agoxorg: remove the XSERVER variable
Thomas Petazzoni [Fri, 17 Jul 2009 14:26:29 +0000 (16:26 +0200)]
xorg: remove the XSERVER variable

The XSERVER variable used to be defined by package/Makefile.in because
the X server package name was different depending on the type of X
server that was choosen. Nowadays, the name of the package is always
xserver_xorg-server, so there's no point in having this XSERVER
intermediate variable.

This patch makes all packages use xserver_xorg-server directly as a
dependency, and removes the XSERVER variable from package/Makefile.in.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
15 years agoxorg: remove references to non-existing configuration options
Thomas Petazzoni [Fri, 17 Jul 2009 13:46:32 +0000 (15:46 +0200)]
xorg: remove references to non-existing configuration options

The option BR2_PACKAGE_TINY, BR2_PACKAGE_XORG and BR2_PACKAGE_XGGI
don't exist, so do not use them to find the value of the $(XSERVER)
variable.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
15 years agoxorg: use BR2_PACKAGE_XORG instead of BR2_PACKAGE_XSERVER_none
Thomas Petazzoni [Fri, 17 Jul 2009 13:42:40 +0000 (15:42 +0200)]
xorg: use BR2_PACKAGE_XORG instead of BR2_PACKAGE_XSERVER_none

The BR2_PACKAGE_XSERVER_none option has gone, so use BR2_PACKAGE_XORG7
instead. It is more logical to test if BR2_PACKAGE_XORG7 is set to
know if an X.org server is available, than testing if
BR2_PACKAGE_XSERVER_none is set to know if an X.org server is *not*
available.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
15 years agoxorg: remove reference to non-existing BR2_PACKAGE_XSERVER_none
Thomas Petazzoni [Fri, 17 Jul 2009 13:39:42 +0000 (15:39 +0200)]
xorg: remove reference to non-existing BR2_PACKAGE_XSERVER_none

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
15 years agoxorg server: remove dependencies
Thomas Petazzoni [Fri, 17 Jul 2009 13:27:47 +0000 (15:27 +0200)]
xorg server: remove dependencies

Currently, the X.org server selection always trigger the compilation
and installation of libXt (the X toolkit) and libXaw (Athena Widget
toolkits), which is are legacy toolkits not used by modern toolkits
(Gtk, Qt, etc.). They are only used by old X11 applications that are
typically not used on embedded systems.

Not compiling them save compilation time, and more importantly, space
on the target.

We also remove the compilation on xlib_libxkbui, libxmu and libxpm,
because they all depend on libXt.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
15 years agoxorg server: beautify list of dependencies
Thomas Petazzoni [Fri, 17 Jul 2009 12:46:19 +0000 (14:46 +0200)]
xorg server: beautify list of dependencies

Reorganize the list of depencies with a sane indentation level, and
one dependency per line. Yes, the list is long, but is easier to read,
and future patches modifying this list will be easier to review.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
15 years agomatchbox: fix dependencies
Thomas Petazzoni [Fri, 17 Jul 2009 12:39:43 +0000 (14:39 +0200)]
matchbox: fix dependencies

A dependency on BR2_PACKAGE_XORG7 is enough, no need to depend on
BR2_PACKAGE_XORG_XSERVER.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
15 years agodillo: use select for library dependencies
Thomas Petazzoni [Fri, 17 Jul 2009 12:39:23 +0000 (14:39 +0200)]
dillo: use select for library dependencies

Use select independs of depends on for library dependencies. We keep
the depends on for the X.org dependency so that dillo can only be
selected once X.org is enabled (which, contrary to the library
dependencies, is a pretty obvious dependency for the user). We then
get rid of the configuration interface comment.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
15 years agomidori: remove configuration comment on X.org dependency
Thomas Petazzoni [Fri, 17 Jul 2009 12:37:00 +0000 (14:37 +0200)]
midori: remove configuration comment on X.org dependency

The dependency of Midori on X.org should be pretty obvious to the
user, and we don't want to unnecessarly clutter the configuration
interface with comments.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
15 years agoUpdate kernel "latest" major/minor version numbers
Ulf Samuelsson [Fri, 24 Jul 2009 16:04:06 +0000 (18:04 +0200)]
Update kernel "latest" major/minor version numbers
including adding support for 2.6.30/2.6.31-rc#

15 years agoRemove unused file: "target/linux/Config.in.experimental"
Ulf Samuelsson [Fri, 24 Jul 2009 16:02:04 +0000 (18:02 +0200)]
Remove unused file: "target/linux/Config.in.experimental"

15 years agoTODO: remove outdated stuff
Peter Korsgaard [Fri, 24 Jul 2009 13:51:51 +0000 (15:51 +0200)]
TODO: remove outdated stuff

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agoCHANGES: add #163 + #473
Peter Korsgaard [Fri, 24 Jul 2009 05:51:16 +0000 (07:51 +0200)]
CHANGES: add #163 + #473

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agoMakefile: apply xtensa specific TARGET_SKELETON_PATCH if available
Maxim Grigoriev [Fri, 24 Jul 2009 00:37:06 +0000 (02:37 +0200)]
Makefile: apply xtensa specific TARGET_SKELETON_PATCH if available

Part of #163.

Signed-off-by: Maxim Grigoriev <maxim2405@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agotoolchain: xtensa toolchain patch support
Maxim Grigoriev [Fri, 24 Jul 2009 00:32:33 +0000 (02:32 +0200)]
toolchain: xtensa toolchain patch support

Part of #163.

Signed-off-by: Maxim Grigoriev <maxim2405@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agotoolchain/patch-kernel.sh: xtensa directory overlay support
Maxim Grigoriev [Fri, 24 Jul 2009 00:31:34 +0000 (02:31 +0200)]
toolchain/patch-kernel.sh: xtensa directory overlay support

Part of #163.

Signed-off-by: Maxim Grigoriev <maxim2405@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agotoolchain/uclibc: xtensa support
Maxim Grigoriev [Fri, 24 Jul 2009 00:22:08 +0000 (02:22 +0200)]
toolchain/uclibc: xtensa support

Part of #163.

Signed-off-by: Maxim Grigoriev <maxim2405@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agoproject: xtensa specific ARCH handling
Maxim Grigoriev [Fri, 24 Jul 2009 00:19:24 +0000 (02:19 +0200)]
project: xtensa specific ARCH handling

Part of #163.

Signed-off-by: Maxim Grigoriev <maxim2405@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agotarget/; xtensa support
Maxim Grigoriev [Fri, 24 Jul 2009 00:17:22 +0000 (02:17 +0200)]
target/; xtensa support

Part of #163.

Signed-off-by: Maxim Grigoriev <maxim2405@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agopackage/gnuconfig: xtensa support
Maxim Grigoriev [Fri, 24 Jul 2009 00:13:28 +0000 (02:13 +0200)]
package/gnuconfig: xtensa support

Part of #163.

Signed-off-by: Maxim Grigoriev <maxim2405@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agopackage/Makefile.in: xtensa host support
Maxim Grigoriev [Fri, 24 Jul 2009 00:09:46 +0000 (02:09 +0200)]
package/Makefile.in: xtensa host support

Part of #163.

Signed-off-by: Maxim Grigoriev <maxim2405@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agolibmms: new package
Sven Neumann [Thu, 23 Jul 2009 13:46:07 +0000 (15:46 +0200)]
libmms: new package

LibMMS is a common library for parsing mms:// and mmsh:// type network
streams.

Signed-off-by: Sven Neumann <s.neumann@raumfeld.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agotoolchain/gcc: bump 4.4.x version
Peter Korsgaard [Thu, 23 Jul 2009 11:15:05 +0000 (13:15 +0200)]
toolchain/gcc: bump 4.4.x version

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agolinux26: do not set CFLAGS_KERNEL to TARGET_CFLAGS
Sven Neumann [Wed, 22 Jul 2009 12:25:05 +0000 (14:25 +0200)]
linux26: do not set CFLAGS_KERNEL to TARGET_CFLAGS

Using TARGET_CFLAGS breaks the kernel build for the arm platform. The
result is a kernel that can not be booted. So simply do not fiddle with
the CFLAGS on a kernel build and the kernel build system will do the
right thing (TM).

[Peter: do the same thing for the standard kernel build]

Signed-off-by: Sven Neumann <s.neumann@raumfeld.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agogst-plugins-base: don't search host headers if freetype isn't available
Peter Korsgaard [Wed, 22 Jul 2009 20:16:07 +0000 (22:16 +0200)]
gst-plugins-base: don't search host headers if freetype isn't available

freetype is only used by examples, but if it is not found
and the host has a freetype-config script, then the host
include dirs are added to the search path causing trouble.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agogst-plugins-good: disable aalib
Sven Neumann [Wed, 22 Jul 2009 10:33:46 +0000 (12:33 +0200)]
gst-plugins-good: disable aalib

Explictly disable the build of the aasink plug-in. Without this fix
the plug-in would be built if the aalib headers are found on the host.

Signed-off-by: Sven Neumann <s.neumann@raumfeld.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agohaserl: move 0.9.25 fix to subdir, so it isn't picked up by 0.8.0 build
Peter Korsgaard [Wed, 22 Jul 2009 13:30:00 +0000 (15:30 +0200)]
haserl: move 0.9.25 fix to subdir, so it isn't picked up by 0.8.0 build

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agoBump SaWMan to 1.4.1
Lionel Landwerlin [Wed, 22 Jul 2009 08:55:04 +0000 (10:55 +0200)]
Bump SaWMan to 1.4.1

Bump SaWMan to 1.4.1

The current version of sawman (1.2.0-rc1) won't compile with directFB >= 1.4

Signed-off-by: Lionel Landwerlin <lionel.landwerlin@openwide.fr>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agolibpng: bump version
Peter Korsgaard [Wed, 22 Jul 2009 07:37:13 +0000 (09:37 +0200)]
libpng: bump version

Fixes an unitialized-memory-read bug.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agolibglib2: update to upstream release 2.20.4
Sven Neumann [Tue, 21 Jul 2009 14:30:32 +0000 (16:30 +0200)]
libglib2: update to upstream release 2.20.4

Signed-off-by: Sven Neumann <s.neumann@raumfeld.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agoMerge branch 'master' of ssh://uclibc.org/var/lib/git/buildroot
Peter Korsgaard [Wed, 22 Jul 2009 05:57:20 +0000 (07:57 +0200)]
Merge branch 'master' of ssh://uclibc.org/var/lib/git/buildroot

15 years agotremor: provide libvorbis* alias for targets
Peter Korsgaard [Tue, 21 Jul 2009 20:57:29 +0000 (22:57 +0200)]
tremor: provide libvorbis* alias for targets

several packages depend on libvorbis, so also provide libvorbis
targets when tremor is selected.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agoFix memstat's install
Bernhard Reutner-Fischer [Tue, 21 Jul 2009 10:47:38 +0000 (12:47 +0200)]
Fix memstat's install

Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
15 years agomtd: get rid of ancient deprecated versions
Peter Korsgaard [Tue, 21 Jul 2009 07:25:30 +0000 (09:25 +0200)]
mtd: get rid of ancient deprecated versions

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agohaserl: 0.9.25 array vars fix
Peter Korsgaard [Mon, 20 Jul 2009 20:17:31 +0000 (22:17 +0200)]
haserl: 0.9.25 array vars fix

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agowpa_supplicant: add optional dbus support
Sven Neumann [Mon, 20 Jul 2009 20:11:42 +0000 (22:11 +0200)]
wpa_supplicant: add optional dbus support

Signed-off-by: Sven Neumann <s.neumann@raumfeld.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agobusybox: 1.14.2 test fix
Peter Korsgaard [Mon, 20 Jul 2009 07:16:29 +0000 (09:16 +0200)]
busybox: 1.14.2 test fix

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agokernel-headers: bump 2.6.27 / 2.6.30 stable versions
Peter Korsgaard [Mon, 20 Jul 2009 07:14:13 +0000 (09:14 +0200)]
kernel-headers: bump 2.6.27 / 2.6.30 stable versions

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agosdl_gfx: new package
Evan Zelkowitz [Sat, 18 Jul 2009 09:29:26 +0000 (11:29 +0200)]
sdl_gfx: new package

Closes #369.

[Peter: Minor tweaks]

Signed-off-by: Evan Zelkowitz <evan.zelkowitz@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years ago.gitignore: add backup files
H Hartley Sweeten [Tue, 14 Jul 2009 00:59:51 +0000 (20:59 -0400)]
.gitignore: add backup files

Add *.orig and *~ backup files to gitignore.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agoMerge branch 'ext-toolchain-target-path' of git://git.busybox.net/~tpetazzoni/git...
Peter Korsgaard [Sat, 18 Jul 2009 06:14:53 +0000 (08:14 +0200)]
Merge branch 'ext-toolchain-target-path' of git://git.busybox.net/~tpetazzoni/git/buildroot

15 years agoxutil_makedepend: install to target, not staging
Peter Korsgaard [Fri, 17 Jul 2009 23:17:31 +0000 (01:17 +0200)]
xutil_makedepend: install to target, not staging

makedepend is a program, not a library - So makedepend for the target
should get installed to target_dir and not to staging_dir.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agomesa3d: compile makedepend (and in turn xproto) for the host
Peter Korsgaard [Fri, 17 Jul 2009 22:16:48 +0000 (00:16 +0200)]
mesa3d: compile makedepend (and in turn xproto) for the host

The mesa3d build needs makedepend on the host, so compile one in $HOST_DIR.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agoexpat: fix typo
Peter Korsgaard [Fri, 17 Jul 2009 22:04:45 +0000 (00:04 +0200)]
expat: fix typo

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agoCHANGES: add #271
Peter Korsgaard [Fri, 17 Jul 2009 22:04:20 +0000 (00:04 +0200)]
CHANGES: add #271

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agoMerge branch 'external-toolchain' of git://git.busybox.net/~tpetazzoni/git/buildroot
Peter Korsgaard [Fri, 17 Jul 2009 20:53:24 +0000 (22:53 +0200)]
Merge branch 'external-toolchain' of git://git.busybox.net/~tpetazzoni/git/buildroot

15 years agoCHANGES: add #467
Peter Korsgaard [Fri, 17 Jul 2009 19:07:42 +0000 (21:07 +0200)]
CHANGES: add #467

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agoMerge branch 'directfb-bump' of git://git.busybox.net/~tpetazzoni/git/buildroot
Peter Korsgaard [Fri, 17 Jul 2009 19:05:50 +0000 (21:05 +0200)]
Merge branch 'directfb-bump' of git://git.busybox.net/~tpetazzoni/git/buildroot

15 years agoexternal toolchain: add $(HOST_DIR)/bin to TARGET_PATH
Thomas Petazzoni [Fri, 17 Jul 2009 15:23:44 +0000 (17:23 +0200)]
external toolchain: add $(HOST_DIR)/bin to TARGET_PATH

Since the move of many host binaries to $(HOST_DIR), the TARGET_PATH
for internal toolchain had been changed to include $(HOST_DIR)/bin and
$(HOST_DIR)/usr/bin, but this change was not reflected to the
TARGET_PATH used in external toolchain configuration. This patches
fixes this.

We also remove $(STAGING_DIR)/bin and $(STAGING_DIR)/usr/bin from the
TARGET_PATH in external toolchain configuration, since the STAGING_DIR
is not supposed to contain host binaries.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
15 years agoxorg: simplify dependencies on X.org
Thomas Petazzoni [Fri, 17 Jul 2009 12:34:22 +0000 (14:34 +0200)]
xorg: simplify dependencies on X.org

Many packages used to depend on BR2_PACKAGE_XORG||BR2_PACKAGE_XORG7,
but this is useless since BR2_PACKAGE_XORG is a non-existing
configuration option. So, these depencies gets simplified to
BR2_PACKAGE_XORG7 only.

Some others were depending on BR2_PACKAGE_TINYX (which doesn't) exist
or BR2_PACKAGE_XSERVER_xorg || BR2_PACKAGE_XSERVER_tiny ||
BR2_PACKAGE_XSERVER_x11r7. Replace all that mess by a simple
dependency on BR2_PACKAGE_XORG7.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
15 years agoxorg: remove useless configuration comment
Thomas Petazzoni [Fri, 17 Jul 2009 12:26:50 +0000 (14:26 +0200)]
xorg: remove useless configuration comment

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
15 years agoxorg: reindent configuration option details
Thomas Petazzoni [Fri, 17 Jul 2009 12:26:29 +0000 (14:26 +0200)]
xorg: reindent configuration option details

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
15 years agoxorg: reorganize the selection of the X.org server type
Thomas Petazzoni [Fri, 17 Jul 2009 12:20:06 +0000 (14:20 +0200)]
xorg: reorganize the selection of the X.org server type

The selection of the X.org server type was really strange. The user
had to select between none, tinyx and modular. Now, the menuconfig
interface display a single item for X.org, that can be
selected/unselected. This entry contains a submenu, that allows to
select the type of the X.org server (tinyX or modular) and that allows
(as before) to enable/disable X.org libraries, drivers, etc.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
15 years agodirectfb: bump version
Thomas Petazzoni [Fri, 17 Jul 2009 09:21:04 +0000 (11:21 +0200)]
directfb: bump version

Bump the version of Direct FB to 1.4.1. Fixes bug #467. Thanks to
Lionel Landwerlin <lionel.landwerlin@openwide.fr> for the
notification.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
15 years agoexternal toolchain: check cross-compiler existence
Thomas Petazzoni [Fri, 17 Jul 2009 06:53:55 +0000 (08:53 +0200)]
external toolchain: check cross-compiler existence

As a minimal test to the external toolchain, check that $(TARGET_CC)
is actually an existing executable file. That way, if the user
misconfigures the toolchain path and/or prefix, a meaningful error
message will be shown.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
15 years agoexternal toolchain: respect $(Q)
Thomas Petazzoni [Fri, 17 Jul 2009 06:48:35 +0000 (08:48 +0200)]
external toolchain: respect $(Q)

Use $(Q) in external toolchain support so that the user can get the
full output by passing V=1 to make, and still get a nice and clean
output by default.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
15 years agoexternal toolchain: copy the C++ standard library if needed
Thomas Petazzoni [Thu, 16 Jul 2009 22:26:23 +0000 (00:26 +0200)]
external toolchain: copy the C++ standard library if needed

Obey the BR2_INSTALL_LIBSTDCPP configuration option to copy the C++
standard library to the target. Suggested by Lionel Landwerlin
<lionel.landwerlin@openwide.fr>.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
15 years agoexternal toolchain: do not copy useless symbolic links
Thomas Petazzoni [Thu, 16 Jul 2009 22:25:35 +0000 (00:25 +0200)]
external toolchain: do not copy useless symbolic links

Do not copy .so symbolic links to target when not needed. Only copy
.so.X symbolic links and the library itself.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
15 years agoexternal toolchain: more documentation about the principles
Thomas Petazzoni [Thu, 16 Jul 2009 22:20:33 +0000 (00:20 +0200)]
external toolchain: more documentation about the principles

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
15 years agoexternal toolchain: use LANG=C when calling gcc -v
Thomas Petazzoni [Thu, 16 Jul 2009 22:07:08 +0000 (00:07 +0200)]
external toolchain: use LANG=C when calling gcc -v

Lionel Landwerlin <lionel.landwerlin@openwide.fr> reported that using
the external toolchain support when LANG=fr_FR.UTF-8 doesn't work,
since the messages printed by gcc -v are translated in another
language, defeating the grep ^Configured test.

Therefore, as per Lionel suggestion, we force LANG=C when calling
$(TARGET_CC) -v.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
15 years agoexternal-toolchain: better documentation, cleanup, sysroot check
Thomas Petazzoni [Thu, 16 Jul 2009 21:56:10 +0000 (23:56 +0200)]
external-toolchain: better documentation, cleanup, sysroot check

 * Introduce documentation for each function of ext-tool.mk, and
   document all parameters of the functions.

 * Pass SYSROOT_DIR as argument to all functions that require it,
   instead of computing it manually everywhere

 * Use $(shell) instead of backquotes

 * Check that the SYSROOT_DIR variable is not empty, which means that
   the external toolchain doesn't support --sysroot. In that case,
   bail out with a nice error message.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
15 years agolibvorbis: fix tremor install into staging_dir
Peter Korsgaard [Thu, 16 Jul 2009 13:07:20 +0000 (15:07 +0200)]
libvorbis: fix tremor install into staging_dir

Closes #387.

When tremor is selected, the normal libvorbis shouldn't get built and
tremer should get installed into staging_dir as well.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agoexternal toolchain: fix libraries copy and add ARM ABI check
Thomas Petazzoni [Thu, 16 Jul 2009 17:37:47 +0000 (19:37 +0200)]
external toolchain: fix libraries copy and add ARM ABI check

Instead of hardcoding the C library versions, just copy the version
available in $SYSROOT_DIR/lib.

Add a check on the ARM ABI configured in Buildroot with regard to the
ABI of the external toolchain provided.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
15 years agoqtopia4: add option for STL support
Peter Korsgaard [Thu, 16 Jul 2009 12:16:25 +0000 (14:16 +0200)]
qtopia4: add option for STL support

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agoruby: needs WCHAR support in toolchain
Peter Korsgaard [Mon, 13 Jul 2009 07:20:40 +0000 (09:20 +0200)]
ruby: needs WCHAR support in toolchain

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agoChange ruby version to 1.9.1-p129
laurent laffont [Thu, 9 Jul 2009 12:08:51 +0000 (14:08 +0200)]
Change ruby version to 1.9.1-p129

Ruby 1.9.1 handle cross compilation better, espescially extensions
(I'm working on ARM at91sam9263-ek).
This patch also disable ruby doc generation and ipv6.

[Peter: fixed ipv6 handling]

Signed-off-by: laurent laffont <laurent.laffont@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agobusybox: additional 1.14.2 patches
Peter Korsgaard [Sun, 12 Jul 2009 19:13:04 +0000 (21:13 +0200)]
busybox: additional 1.14.2 patches

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agolibvorbis: bump version
Peter Korsgaard [Sun, 12 Jul 2009 19:09:56 +0000 (21:09 +0200)]
libvorbis: bump version

bugfix release - Fixes playback of very short files.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agoqtopia4: fix typo
Peter Korsgaard [Wed, 8 Jul 2009 14:07:37 +0000 (16:07 +0200)]
qtopia4: fix typo

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agoqtopia4/directfb: remove default n
Peter Korsgaard [Wed, 8 Jul 2009 14:05:41 +0000 (16:05 +0200)]
qtopia4/directfb: remove default n

N is default, so no need to explicitly state it.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agoliblockfile: bump version
Peter Korsgaard [Tue, 7 Jul 2009 21:26:36 +0000 (23:26 +0200)]
liblockfile: bump version

Closes #83.

Fixes build with newer glibc versions.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agobusybox: ls fix for v1.14.2
Peter Korsgaard [Sun, 5 Jul 2009 19:57:48 +0000 (21:57 +0200)]
busybox: ls fix for v1.14.2

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agoenchant: New package for enchant spell-checking library.
Will Newton [Mon, 29 Jun 2009 10:26:23 +0000 (11:26 +0100)]
enchant: New package for enchant spell-checking library.

Enchant is a spell checking library that provides a consistent API across
a number of spell-checking system backends.

Signed-off-by: Will Newton <will.newton@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agoMerge branch 'qtopia-fixes' of git://git.busybox.net/~tpetazzoni/git/buildroot
Peter Korsgaard [Fri, 3 Jul 2009 11:20:35 +0000 (13:20 +0200)]
Merge branch 'qtopia-fixes' of git://git.busybox.net/~tpetazzoni/git/buildroot

15 years agoNew build fix for Qtopia4
Thomas Petazzoni [Fri, 3 Jul 2009 08:44:10 +0000 (10:44 +0200)]
New build fix for Qtopia4

The new patch fixes the build failure when
BR2_PACKAGE_QTOPIA4_QTZLIB=y.

15 years agoBump Qtopia version to 4.5.2
Thomas Petazzoni [Fri, 3 Jul 2009 08:25:39 +0000 (10:25 +0200)]
Bump Qtopia version to 4.5.2

15 years agoFix Qtopia build with external toolchain
Thomas Petazzoni [Thu, 25 Jun 2009 08:43:24 +0000 (10:43 +0200)]
Fix Qtopia build with external toolchain

The fixes made to qmake.conf for the cross-compiling tools were not
sufficient in the case of an external toolchain, since the CFLAGS were
not taken into account. And the --sysroot option contained in the
CFLAGS are very important for external toolchains to work.

Additionally, it makes sure that Qtopia is compiled with the proper
CFLAGS, even if an external toolchain isn't used.

15 years agokernel-headers: bump 2.6.27.x / 2.6.29.x / 2.6.30.x stable versions
Peter Korsgaard [Fri, 3 Jul 2009 05:19:31 +0000 (07:19 +0200)]
kernel-headers: bump 2.6.27.x / 2.6.29.x / 2.6.30.x stable versions

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agoopenvpn: prefix variables with OPENVPN_
Peter Korsgaard [Thu, 2 Jul 2009 12:58:39 +0000 (14:58 +0200)]
openvpn: prefix variables with OPENVPN_

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agoopenvpn: convert to Makefile.autotools.in format
Gustavo Zacarias [Thu, 2 Jul 2009 12:55:51 +0000 (14:55 +0200)]
openvpn: convert to Makefile.autotools.in format

Closes #359, #413.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agotoolchain/gcc: ensure libraries are copied to target_dir for x86-64
Peter Korsgaard [Thu, 2 Jul 2009 07:38:56 +0000 (09:38 +0200)]
toolchain/gcc: ensure libraries are copied to target_dir for x86-64

x86-64 stores libgcc_s / libstdc++ / libgcj under lib64 instead of lib,
so make sure that directory is searched as well for libraries to copy
to target.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agoMerge branch 'dropbear-fix' of git://git.busybox.net/~tpetazzoni/git/buildroot
Peter Korsgaard [Wed, 1 Jul 2009 18:15:33 +0000 (20:15 +0200)]
Merge branch 'dropbear-fix' of git://git.busybox.net/~tpetazzoni/git/buildroot

15 years agoMerge branch 'matchbox-fix' of git://git.busybox.net/~tpetazzoni/git/buildroot
Peter Korsgaard [Wed, 1 Jul 2009 18:12:47 +0000 (20:12 +0200)]
Merge branch 'matchbox-fix' of git://git.busybox.net/~tpetazzoni/git/buildroot

15 years agopackage: add spawn-fcgi package
Gustavo Zacarias [Wed, 1 Jul 2009 13:36:19 +0000 (15:36 +0200)]
package: add spawn-fcgi package

Closes #417,

New package spawn-fcgi, basically a FastCGI process spawner.
This was previously included in lighttpd up to version 1.4.22 and is now
a separate project.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agolighttpd: bump version
Gustavo Zacarias [Wed, 1 Jul 2009 13:31:59 +0000 (15:31 +0200)]
lighttpd: bump version

Closes #419.

lighttpd 1.4.23 is out, there are many bugfixes from 1.4.20 currently in
buildroot:
 *  Fix workaround for incorrect path info/scriptname if fastcgi prefix is
    ”/” (fixes #729)
 * Finally removed spawn-fcgi
 * Fix bug with FastCGI request id overflow under high load; just use always
   id 1 as we don’t use multiplexing. (thx jgray)
 * Workaround broken operating systems: check for trailing ’/’ in filenames
   (fixes #1989)
Plus fixes from 1.4.22 and 1.4.21.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
15 years agoFix Matchbox build
Thomas Petazzoni [Thu, 25 Jun 2009 08:43:01 +0000 (10:43 +0200)]
Fix Matchbox build

Several issues were encountered when trying to build Matchbox. This
patches fixes these issues :

 * Selecting BR2_PACKAGE_MATCHBOX should select BR2_PACKAGE_XORG7,
   otherwise the x11r7 mk files are not included, and matchbox.mk
   refers to non-existing dependencies (such as xlib_libXtst).

 * In matchbox.mk, wrong dependencies for Matchbox keyboard. When
   pango is available, use it through --enable-pango, otherwise, add
   the dependency to xlib_libXft

 * Enable AUTORECONF for libXfont and libXft, otherwise the libtool
   Buildroot patch has no effect, and these packages fail to build
   without the libtool hack.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
15 years agoFix dropbear compilation with glibc
Thomas Petazzoni [Thu, 25 Jun 2009 15:12:48 +0000 (17:12 +0200)]
Fix dropbear compilation with glibc

The patch introduced at c579e32dbe6d927bdcfffeede18123aa92abbdd5 was
incorrect, since __USE_GNU is an internal C library defined, and
should not be used by programs. _GNU_SOURCE should be used instead.

This fixes a build failure on Dropbear when compiling against a
glibc-based toolchain.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
15 years agosqlite: bump version
Gustavo Zacarias [Tue, 30 Jun 2009 19:40:23 +0000 (21:40 +0200)]
sqlite: bump version

Closed #333.

 * Refactor the internal representation of SQL expressions so that they
   use less memory on embedded platforms.
 * Reduce the amount of stack space used
 * Fix an 64-bit alignment bug on HP/UX and Sparc
 * The sqlite3_create_function() family of interfaces now return
   SQLITE_MISUSE instead of SQLITE_ERROR when passed invalid parameter
   combinations.
 * When new tables are created using CREATE TABLE ... AS SELECT ... the
   datatype of the columns is the simplified SQLite datatype (TEXT, INT,
   REAL, NUMERIC, or BLOB) instead of a copy of the original datatype
   from the source table.
 * Resolve race conditions when checking for a hot rollback journal.
 * The sqlite3_shutdown() interface frees all mutexes under windows.
 * Enhanced robustness against corrupt database files
 * Continuing improvements to the test suite and fixes to obscure bugs
   and inconsistencies that the test suite improvements are uncovering.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>