summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* toolchain/uClibc: remove 0.9.29, mark 0.9.30 as deprecatedPeter Korsgaard2011-07-0410-1060/+1
| | | | | | | 0.9.29 doesn't seem to build anymore with the toolchain versions in BR and is very old, so remove it. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* busybox: remove quirk for old unsupported versionsMaxime Ripard2011-07-041-11/+0
| | | | | | | | This code is no longer useful, since the oldest version supported by Builroot is 1.16. Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* lighttpd: bump versionPeter Korsgaard2011-07-031-1/+1
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package: add stunnelMaxime Ripard2011-07-034-0/+70
| | | | | | | | Stunnel is an SSL tunnelling proxy. [Peter: misc fixes, Config.in, allow skeleton override of stunnel.conf] Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Create and mount /dev/shmMaxime Ripard2011-07-032-0/+2
| | | | | | | | | The /dev/shm directory is neither created nor mounted as tmpfs as boot time. This will cause troubles when using named semaphores on the system. Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* sqlite: update to version 3.7.6.3Sven Neumann2011-07-031-1/+1
| | | | | Signed-off-by: Sven Neumann <s.neumann@raumfeld.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* toolchain/gcc: bump 4.6.x version to 4.6.1Peter Korsgaard2011-06-288-1/+1
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* toolchain/gcc: bump 4.3.x version to 4.3.6Peter Korsgaard2011-06-2813-1/+1
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qt: fix webkit/sqlite build without largefile supportPeter Korsgaard2011-06-271-2/+13
| | | | | | | | | | | The embedded sqlite module forces FILE_OFFSET_BITS=64 unless SQLITE_DISABLE_LFS is defined, breaking the build for !largefile toolchains. Webkit internally builds sqlite, so that's affected as well. Fix it by passing -DSQLITE_DISABLE_LFS in C/CXXFLAGS for !largefile builds, similar to how we do it for the standalone sqlite package. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qt: fix typo in webkit pthread_getattr_np patchPeter Korsgaard2011-06-271-1/+1
| | | | | | Missing continuation (\) character in #if check. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package: Add libiqrf packageMarek Belisko2011-06-273-0/+25
| | | | | | | | | Libiqrf is library written in C which implement specific iqrf protocol to communicate with iqrf usb devices (http://iqrf.org). [Peter: select libusb, fix Config.in indentation] Signed-off-by: Marek Belisko <marek.belisko@open-nandra.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* oprofile: Bump to version 0.9.6Benoît Mauduit2011-06-271-1/+1
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* CHANGES: update with recent changesPeter Korsgaard2011-06-261-0/+15
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package: Added Live555 RTSP Server packageMike Williams2011-06-263-0/+82
| | | | | | [Peter: misc fixes, use real version, correct compile/link flags] Signed-off-by: Mike Williams <mwilli60@harris.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* mtd: bump versionPeter Korsgaard2011-06-261-1/+1
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* sheevaplug_defconfig: bump kernel versionPeter Korsgaard2011-06-241-1/+1
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* linux: bump 2.6.39.x stable versionPeter Korsgaard2011-06-241-3/+3
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* kernel-headers: bump 2.6.39.x stable versionPeter Korsgaard2011-06-241-1/+1
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* webkit: update pthread_getattr_np patches for uClibc 0.9.32Peter Korsgaard2011-06-241-3/+4
| | | | | | Similar to how it is done for qt. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qt: update pthread_getattr_np patches for uClibc 0.9.32Peter Korsgaard2011-06-222-6/+8
| | | | | | | And only when linuxthreads.old is used, as the other thread implementations don't need it. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* yajl: fix link issue on uClibcPeter Korsgaard2011-06-221-0/+24
| | | | | | We need to link with -lm for isnan() / isinf(). Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* ext-toolchain-wrapper.c: Handle an arbitrary amount of argumentsDaniel Nyström2011-06-221-11/+20
| | | | | | | | | | | | | | Even though MAXARGS 1000 seems large, it wasn't enough for at least QtWebKit package. This new version does not have any predefined limits. Closes #3907 Many thanks to Thomas for tracing the source of the build error. [Peter: Return rather than abort()] Signed-off-by: Daniel Nyström <daniel.nystrom@timeterminal.se> Reported-by: Thomas Björk <thomas.bjork@home.se> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* configs: add defconfig for sheevaplugPeter Korsgaard2011-06-211-0/+24
| | | | | | http://en.wikipedia.org/wiki/SheevaPlug Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package: add yajlPeter Korsgaard2011-06-213-1/+21
| | | | | | yajl is Yet Another JSON Library. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* berkeleydb: target install cleanupPeter Korsgaard2011-06-211-16/+8
| | | | | | | Install into /usr/lib and use the normal make install target instead of manually messing around with symlinks and .so versions. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* berkeleydb: fix build of shared librariesLuca Ceresoli2011-06-211-0/+1
| | | | | | | | | | 009d8fceab4 and 0a5e5534cbf8 moved the --enable-static configure flag from package files to the default _CONFIGURE_CMDS in package/Makefile.autotools.in. This broke Autotools packages that override _CONFIGURE_CMDS. Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* ffmpeg: fix build of shared librariesLuca Ceresoli2011-06-211-0/+1
| | | | | | | | | | 009d8fceab4 and 0a5e5534cbf8 moved the --enable-static configure flag from package files to the default _CONFIGURE_CMDS in package/Makefile.autotools.in. This broke Autotools packages that override _CONFIGURE_CMDS. Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qt: QtDeclarative needs script support as wellPeter Korsgaard2011-06-211-0/+1
| | | | | | | | | Otherwise configure errors out with: Error: QtDeclarative was requested, but it can't be built due to QtScript or QtGui being disabled. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* usbutils: bump to 003Yegor Yefremov2011-06-211-1/+1
| | | | | Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* dbus: bump versionPeter Korsgaard2011-06-211-1/+1
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* dbus-glib: nowadays works with libxml2 backend as wellPeter Korsgaard2011-06-211-4/+0
| | | | | | So get rid of expat dependency. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* packages: dbus: use version 1.4.8Daniel Mack2011-06-212-34/+1
| | | | | | | The exisiting br2 patch can be dropped. Signed-off-by: Daniel Mack <zonque@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* libdnet: fix python module buildPeter Korsgaard2011-06-212-4/+10
| | | | | | Ensure the correct compiler/linker flags are used. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Qt: add config option to build libQtDeclarative moduleDaniel Mack2011-06-202-0/+16
| | | | | | Signed-off-by: Daniel Mack <zonque@gmail.com> Acked-by: Daniel Nyström <daniel.nystrom@timeterminal.se> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* bmon: add optional alsa supportPeter Korsgaard2011-06-171-0/+6
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* bmon: make ncurses dependency optionalPeter Korsgaard2011-06-173-2/+32
| | | | | | | bmon can be built without ncurses support (needs a small patch though), so don't enforce it in kconfig. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* bmon: link dynamically unless explicitly requested otherwisePeter Korsgaard2011-06-171-0/+5
| | | | | | | | | | | | Commit 009d8fceab4d (add --{enable,disable}-{shared,static} automatically) caused us to pass --enable-static in the normal (non-static) case as well, which bmon interpretes as a request to link the bmon program statically, bloating the image. Fix it by passing an extra --disable-static to bmon configure to nullify this. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* synergy: ensure cross X11 headers / libraries are usedPeter Korsgaard2011-06-141-3/+2
| | | | | | Otherwise configure would check for Xtst support on the host. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* packages: remove --{enable,disable}-{shared,static} from autotools packagesThomas Petazzoni2011-06-1271-108/+35
| | | | | | | | Now that those values are passed at the autotools infrastructure level, there's no need for every package to pass inconsistent values. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package/autotools: add --{enable,disable}-{shared,static} automaticallyThomas Petazzoni2011-06-122-0/+8
| | | | | | | | | | | | | | | | | | | | | For target packages, depending on BR2_PREFER_STATIC_LIB, add the correct combination of --{enable,disable}-{shared,static} flags to ./configure calls. * When BR2_PREFER_STATIC_LIB is enabled, we pass --enable-static --disable-shared. * When BR2_PREFER_STATIC_LIB is disabled, we pass --enable-static --enable-shared. We enable static libraries since they can still be useful to statically link applications against some libraries (sometimes it is useful for size reasons). Static libraries are anyway only installed in the STAGING_DIR, so it doesn't increase in any way the size of the TARGET_DIR. For host packages, always pass --enable-shared and --disable-static. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Remove unused variable definitionsThomas Petazzoni2011-06-121-10/+0
| | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Mark some packages as not usable on non-MMU systemsThomas Petazzoni2011-06-125-0/+10
| | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* busybox: adjust configuration for non-MMU targetsThomas Petazzoni2011-06-121-0/+9
| | | | | | | | | | | The swaponoff applet doesn't build (and doesn't make sense) on non-MMU platforms. The ash shell cannot build on non-MMU platforms (because it uses fork()), so select the hush shell instead. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* busybox: tune config according to BR2_TOOLCHAIN_HAS_SHADOW_PASSWORDSThomas Petazzoni2011-06-121-0/+9
| | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* toolchain: introduce BR2_TOOLCHAIN_HAS_SHADOW_PASSWORDSThomas Petazzoni2011-06-123-0/+9
| | | | | | | | | | | | | | | Unfortunately, the official Blackfin toolchains are built without the shadow password support, so our default Busybox configuration fails to build. Therefore, we introduce a new hidden knob BR2_TOOLCHAIN_HAS_SHADOW_PASSWORDS, which is set to yes for Buildroot internal toolchain, for toolchains generated by the Crosstool-NG backend, for Glibc external toolchains and for Uclibc custom external toolchains. It is left unset by the Blackfin toolchain profile. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* blackfin: support external toolchains provided by blackfin.uclibc.orgThomas Petazzoni2011-06-122-0/+54
| | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* busybox: bump 1.18.x versionPeter Korsgaard2011-06-122-161/+1
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package: add statserialFrancis Mendes2011-06-123-0/+31
| | | | | Signed-off-by: Francis M. de P. Mendes <francis.mendes@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package: add sredirdPeter Korsgaard2011-06-103-0/+34
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* ethtool: bump to 2.6.39Yegor Yefremov2011-06-091-1/+1
| | | | | Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>