summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Update defconfigs with new VCS config optionsMaxime Petazzoni2010-09-1326-78/+52
| | | | | Signed-off-by: Maxime Petazzoni <maxime.petazzoni@bulix.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* Cleanup the VCS commands configurationMaxime Petazzoni2010-09-132-20/+10
| | | | | | | | | It's not really necessary to differenciate the commands for checking out or updating a repository. Only the path to the binary and eventual top-level flags are useful to configure. Signed-off-by: Maxime Petazzoni <maxime.petazzoni@bulix.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* Remove the spider featureMaxime Petazzoni2010-09-133-16/+3
| | | | | | | | | | In preparation for the re-work of the DOWNLOAD helper to support multiple download methods and protocols, the spider feature used with wget is removed for now until it is re-implemented on top of the new download methods. Signed-off-by: Maxime Petazzoni <maxime.petazzoni@bulix.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* usbutils: bump to 0.90Marcus Osdoba2010-09-102-2/+2
| | | | | Signed-off-by: Marcus Osdoba <marcus.osdoba@googlemail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* qt: Bump to 4.6.3Paul Jones2010-09-095-31/+13
| | | | | | | | Also add option to build example and demo code [Peter: fix patch handling] Signed-off-by: Paul Jones <paul@pauljones.id.au> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* berkeleydb: fix download urlGustavo Zacarias2010-09-072-3/+3
| | | | | | | Sleepycat is now owned by oracle so the old site is gone. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* iptables: bump to 1.4.9.1Gustavo Zacarias2010-09-072-2/+3
| | | | | | | Adds support for new kernel 2.6.35 features. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* kismet: bump to 2010-07-R1Gustavo Zacarias2010-09-072-2/+2
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* openvpn: bump to 2.1.2Gustavo Zacarias2010-09-072-2/+2
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* dropbear: add option to disable reverse DNS lookupsPeter Korsgaard2010-09-063-1/+13
| | | | | | | | Add option to disable reverse DNS lookups on client connection, as connections otherwise stall until DNS times out in configurations without working reverse DNS. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* linux: default to 2.6.35.4Peter Korsgaard2010-09-061-5/+5
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* kernel-headers: add 2.6.35.x, bump stable versions, get rid of 2.6.27/2.6.28Peter Korsgaard2010-09-067-154/+9
| | | | | | Based on patch by Marcus Osdoba <marcus.osdoba@googlemail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* busybox: additional 1.17.2 fixesPeter Korsgaard2010-09-052-0/+617
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* busybox: Bump to 1.17.2Gustavo Zacarias2010-09-059-355/+18
| | | | | Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* kconfig: remove CONFIG_ references in search/helpPeter Korsgaard2010-09-054-31/+45
| | | | | | | | | | We use BR2_*, not CONFIG_* - So remove references to CONFIG_ in search/help windows. Long term we should probably consider doing s/^BR2_/CONFIG_/ to get rid of all this though. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Merge branch 'for-2010.11/kconfig-upgrade' of ↵Peter Korsgaard2010-09-0250-2502/+5712
|\ | | | | | | git://git.busybox.net/~tpetazzoni/git/buildroot
| * Tell git to ignore the Quilt internal directory in package/configThomas Petazzoni2010-09-011-0/+5
| | | | | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * Ensure that all config-related files are generated before the buildThomas Petazzoni2010-09-011-7/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The previous commit has removed calls to conf_write_autoconf(), which is the function that generates the KCONFIG_AUTOCONF, KCONFIG_AUTOHEADER, KCONFIG_TRISTATE files and the split config (with one file per config item). Therefore, those things were not generated anymore before the build. In order to get them generated before the build, we use the same mechanism as the kernel: run a silentoldconfig when the .config file is newer than the KCONFIG_AUTOCONF file. In Buildroot, all those elements are not really used today, except the split config which is used a little bit in the toolchain build, in a try to make sure the toolchain gets rebuilt properly when the configuration changes. It does not seem that this work has been completed. However, as we want to keep the same behaviour as previously, we have to generate all those elements before starting the build. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * Add support for savedefconfigThomas Petazzoni2010-09-011-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | savedefconfig allows to create a minimal defconfig file from an existing configuration. For example : make O=/path/to/some/buildroot/build/directory savedefconfig will generate a minimal 'defconfig' file in the main Buildroot source directory. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * Factorize environment variables for config utilitiesThomas Petazzoni2010-09-011-43/+23
| | | | | | | | | | | | | | | | | | | | | | Instead of duplicating the definition of KCONFIG_AUTOCONFIG, KCONFIG_AUTOHEADER and BUILDROOT_CONFIG, let's define them in a COMMON_CONFIG_ENV variable, which is used by all the xconfig, gconfig, menuconfig, nconfig, config, oldconfig, randconfig, allyesconfig, allnoconfig, randpackageconfig, allyespackageconfig, allnopackageconfig, defconfig, %_defconfig targets. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * Makefile: use long options names for the 'conf' utilityThomas Petazzoni2010-09-011-9/+9
| | | | | | | | | | | | | | | | | | The short option names have been removed as they were starting to cause too much confusion. See http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commitdiff;h=4062f1a4c030157216dc8932e27131975cf7253c for details. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * Remove unnecessary ugly hacks in package/configThomas Petazzoni2010-09-015-61/+1
| | | | | | | | | | | | | | Those hacks should not be needed and they even make "mconf" fail to save the configuration file in $(CONFIG_DIR). Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * Add support for the new nconf configuration toolThomas Petazzoni2010-09-013-7/+25
| | | | | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * Bump package/config to 2.6.36-rc1Thomas Petazzoni2010-09-0146-1336/+4298
| | | | | | | | | | | | | | | | | | | | The goal is to be able to use savedefconfig to generate minimal defconfig files. Four of our patches are removed since the modifications have been merged upstream. The new nconf configuration utility has appeared. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * Clean up our patches against kconfigThomas Petazzoni2010-09-0124-1661/+1960
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Our kconfig-to-buildroot2.patch hasn't been kept up to date with all the changes made into package/config, and a single patch wasn't very practical to maintain all our changes. Therefore, this commit adds a package/config/patches directory, which contains a Quilt series of patches that correspond to our modifications to the kconfig mechanism. The huge kconfig-to-buildroot2.patch has been split into 16 smaller patches. The purpose of some of the modifications has been clearly identified, while some others were not identified. The 16 patches together do match exactly the old kconfig-to-buildroot2.patch. We have been very careful in making sure that we wouldn't loose any of our modifications. The only modifications made are : * Instead of renaming the kernel Makefile to Makefile.kconfig and naming the Buildroot Makefile just 'Makefile', we instead keep the original package/config/Makefile from the kernel scripts/kconfig/Makefile and name the Buildroot Makefile package/config/Makefile.br. The main Buildroot Makefile is modified accordingly. * The documentation README.buildroot2 is updated to explain how to upgrade to a newer version of scripts/kconfig. * The kconfig-language.txt documentation is removed, as anybody can easily find it in the kernel sources so there's no need to duplicate it here. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * Implement %_defconfig similarly to the kernelThomas Petazzoni2010-09-011-5/+7
| | | | | | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
| * Remove CONFIG_DEFCONFIGThomas Petazzoni2010-09-011-5/+0
| | | | | | | | | | | | | | | | There's no need to have a .defconfig, when you run make menuconfig, make xconfig or anything else for the first time, it will just start with the default configuration anyway. This is what the kernel does. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* | kick off 2010.11 developmentPeter Korsgaard2010-09-022-1/+3
| | | | | | | | | | | | Tree is open again. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | docs/news.html: add 2010.08 announcement linkPeter Korsgaard2010-09-011-1/+2
| | | | | | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | update for 2010.082010.08Peter Korsgaard2010-09-014-7/+16
| | | | | | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | package/games: remove broken lxdoom packagePeter Korsgaard2010-08-316-199/+3
| | | | | | | | | | | | | | It's deprecated upstream (merged in prboom), not updated in years and broken (uses host includes / missing dependencies), so remove it. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | fs/squashfs: fix image file permissionsPeter Korsgaard2010-08-311-1/+2
| | | | | | | | | | | | | | Set image file permissions to 0644 like it was before the fs rework, instead of the rather unhelpful 0700 (E.G. when image is used for tftp). Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | Add JFFS2 SREC format descriptionYegor Yefremov2010-08-301-1/+3
| | | | | | | | | | | | | | Add JFFS2 SREC format description Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* | Merge branch 'for-2010.08-3' of git://git.busybox.net/~tpetazzoni/git/buildrootPeter Korsgaard2010-08-301-3/+7
|\ \
| * | Fix ldconfig call in target-finalizeThomas Petazzoni2010-08-301-3/+7
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Recent versions of ldconfig require the directory /var/lib/ldconfig, otherwise they bail out with an error. Moreover, having a /etc/ld.so.conf file also avoids a warning. In addition to this, we remove the redirection of stderr, so that errors remain visible to the user. Thanks to Baruch Siach, Andy Gibbs and Darcy Watkins for investigating the issue and proposing solutions. This fixes the build on recent distributions such as Fedora 13 or Gentoo. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* / xstroke: fix dependenciesPeter Korsgaard2010-08-303-10/+5
|/ | | | | | xstroke doesn't need docker, but it does need libXft/Xtst/Xpm. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* packages/atk: fix MakefileYann E. MORIN2010-08-303-2/+8
| | | | | | Reported-by: "James J. Dines" <jdines@jdines.net> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* docs/images: optimize small images to speed up page loadingPeter Korsgaard2010-08-302-0/+0
| | | | | | | | | Remove alpha channel and limit number of colors used. This gets the images down to ~37% of their previous size without any visual degrading (in fact it now looks correctly on ancient IE versions with broken png alpha handling). Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* update for 2010.08-rc22010.08_rc2Peter Korsgaard2010-08-304-5/+21
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* gcc: remove deprecated gcc 4.2.[1-3] versions and unused patchesPeter Korsgaard2010-08-3097-13908/+3
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* kismet: fix build when none of client, server or drone are selectedThomas Petazzoni2010-08-302-6/+8
| | | | | | | | | | | | Random package configuration can trigger the selection of kismet, but neither of client, server or drone suboptions. In this case, the KISMET_TARGET_BINARIES variable is empty, leading to failure during the installation stage. At the same time, we remove the useless stripping of the installed binaries, since this is done globally by the Buildroot infrastructure. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* Add the patch fixing gcc 4.2.4 to gcc 4.2.2Thomas Petazzoni2010-08-301-0/+49
| | | | | | | | The patch introduced by commit 1ed2e4fffd0d852e62bc98e92045a132f24c37d8 must also be added to gcc 4.2.2 to let the AVR32 toolchain build properly. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* CHANGES: #2395 is resolvedPeter Korsgaard2010-08-301-0/+1
| | | | Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* ncurses: get rid of unused BR2_PACKAGE_NCURSES_TARGET_HEADERS handlingPeter Korsgaard2010-08-302-6/+3
| | | | | | | | | The option was removed from Config.in in 58508f39c (ncurses: remove dedicated target-headers option), so remove it from the makefile as well. Reported-by: Ian <reg-ian.ridley-buildroot@hydrix.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* pango: needs C++ for freetype handlingPeter Korsgaard2010-08-305-9/+17
| | | | | | | | | Pango was recently updated to v1.28 as a dependency of webkit, but its freetype support has unfortunately been rewritten with parts in C++ (since pango 1.25), so adjust dependencies of pango and users of it to require C++ support. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* luafilesystems: unbreak builds with largefile supportPeter Korsgaard2010-08-291-1/+1
| | | | | | | | A typo was introduced in e6c4ce6c (luafilesystem: remove LARGE_FILE constraint), breaking the build when largefile support was enabled. Reported-by: Marcus Osdoba <marcus.osdoba@googlemail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* initramfs: Don't overwrite $(TARGET_DIR)/init if it existsSimon Pasch2010-08-292-2/+4
| | | | | | | | | Closes #2443 Allow use of custom init scripts. Signed-off-by: Simon Pasch <fpasch@googlemail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* Makefile: fix source/source-check/external-deps with O=Peter Korsgaard2010-08-291-8/+6
| | | | | | | | | | | | | | Based on patch by Will Wagner <will_wagner@carallon.com>. Now that the .config is located in the output directory when O=<dir> is used, we have to pass the O= option to make for source/source-check/external-deps to get them to look in the right place for the .config. Fix it by introducing an EXTRAMAKEARGS variable and use it whenever we call back into the toplevel Makefile. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* pppd.mk installs radattr.so twice and omits radrealms.soDarcy Watkins2010-08-292-3/+3
| | | | | | | | | | | In pppd.mk the radattr.so plugin (for radiua) is installed twice (the second install overwriting the first) but the radrealms.so plugin is omitted from the install. This appears to be a copy-paste error. Below is patch that corrects this. signed-off by: Darcy Watkins <dwatkins@tranzeo.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* stunnel: remove broken packagePeter Korsgaard2010-08-295-110/+2
| | | | | | | It doesn't build as there's no dependency on openssl, and it hasn't seen any real updates since it got added in 2006, so simply remove it. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>