summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Makefile: ignore glib-genmarshal in staging_dirPeter Korsgaard2008-11-031-1/+2
| | | | | | | | | | | | | | | | | | HOST_GLIB is set to the path that contains the host glib tool set and is used when building packages using glib. The buildroot top level Makefile sets HOST_GLIB using which to find the path where glib-genmarshal is located. The problem is that a cross compiled version of glib-genmarshal is also put in the build_ARCH/staging_dir/usr/bin directory when the package libglib2 is built. This cross compiled version will typically not run on the host system. Fix it by ignoring staging_dir in the which output. Closes #5934 jacmet: fixed to work correctly if it's only found in staging_dir.
* External toolchain C++ cross-compiler fixPeter Korsgaard2008-11-031-0/+6
| | | | | | | | | | | | | | | | External toolchain C++ cross-compiler fix package/Makefile.in resets CXX to "" in TARGET_CONFIGURE_OPTS if BR2_GCC_CROSS_CXX is not set to 'y'. However, when using an external toolchain, BR2_GCC_CROSS_CXX is not set even if the toolchain has a C++ cross-compiler. This patch adds a new BR2_GCC_CROSS_CXX option in the external toolchain configuration menu, so that just like BR2_INET_RPC, BR2_INET_IPV6 and the others, it can be set according to the external toolchain configuration. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* More external toolchain fixesPeter Korsgaard2008-11-031-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix issues with binary external toolchains Fix two problems encountered while using an external binary toolchain generated by crosstool-ng: - Don't remove the ending / in LIB_DIR, otherwise find $LIB_DIR -maxdepth 1 doesn't find any file in the case LIB_DIR is a symbolic link and not a directory. For some reason, find -maxdepth 1 doesn't have the same behaviour on directories and symbolic links. Demonstration: $ mkdir foobar $ touch foobar/t1 $ touch foobar/t2 $ ln -s foobar barfoo $ find foobar -maxdepth 1 -name 't*' foobar/t1 foobar/t2 $ find barfoo -maxdepth 1 -name 't*' $ find barfoo/ -maxdepth 1 -name 't*' barfoo/t1 barfoo/t2 * Make sure the libraries are writable, otherwise the strip operation might fail. The library files may not be writable if the toolchain is not writable (which may happen if one wants to prevent anyone from overwriting the toolchain, which is done by crosstool-ng, for example). Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* External toolchain support improvementsPeter Korsgaard2008-11-033-16/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Improve external toolchain support * Do not put kernel-headers in the dependencies of BASE_TARGETS in the case where BR2_TOOLCHAIN_SOURCE is not y. The kernel headers are already supposed to be part of the external toolchain, so there's no need to download, extract and install them. * In the configuration system, don't display the kernel headers version selection list when an external toolchain is selected. This is implemented by moving the source "toolchain/kernel-headers/Config.in" inside the if BR2_TOOLCHAIN_SOURCE in toolchain/Config.in.2. * Change the description and help message of the BR2_LARGEFILE, BR2_INET_IPV6, BR2_INET_RPC, and BR2_SOFT_FLOAT option in toolchain/external-toolchain/Config.in. In the case of an external toolchain, the semantic of these options is not to enable large file support, IPV6 or RPC (since the toolchain is already compiled, it has been decided previously). Their semantic is to let Buildroot know about the characteristics of the external toolchain being used. As an improvement, we could guess these values automatically: - for BR2_LARGEFILE, look at the value of __UCLIBC_HAS_LFS__ in bits/uClibc_config.h in the libc headers directory. - for BR2_INET_RPC, look at the value of __UCLIBC_HAS_RPC__ in the same file - for BR2_INET_IPV6, look at the value of __UCLIBC_HAS_IPV6__ in the same file - for BR2_SOFT_FLOAT, look at the output of $(CC) -v 2>&1 | grep -- "--with-float=soft" But I'm not sure how this would be possible, since these values are used at configuration-time by other configuration options, not only at build time. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* mkdosfs: cleanup target install handlingPeter Korsgaard2008-11-031-2/+2
| | | | closes #5834.
* package/: remove more 'default n' (see r22874)Peter Korsgaard2008-11-022-5/+0
|
* sdl-image: convert to Makefile.autotools.in formatPeter Korsgaard2008-11-021-149/+27
|
* libpng: fix Makefile.autotools.in falloutPeter Korsgaard2008-11-023-3/+3
| | | | | | | | libpng used to have the 'png' Makefile alias, which some packages used in their dependencies list. With the move to Makefile.autotools.in this is now gone, so update the packages to match.
* syslinux: fix download urlPeter Korsgaard2008-11-021-1/+1
|
* busybox: additional 1.12.1 patchesPeter Korsgaard2008-11-025-4/+272
|
* Fixes for Qt from Markus HeidelbergArnar Mar Sigurðsson2008-11-025-22/+16
|
* Update valka targetArnar Mar Sigurðsson2008-10-3120-20361/+527
|
* Add options to select what gfx and mouse drivers are compiled in.Arnar Mar Sigurðsson2008-10-315-9/+121
| | | | Note to tslib users: You now have to select the tslib mouse driver to build it.
* Fix zlib install broken by previous commit. SorryThiago A. Corrêa2008-10-311-5/+6
|
* package/lite/lite.mk: Bounce versionDaniel Laird2008-10-311-3/+1
| | | | | | | | Bounce version. Signed-off-by: Thomas Petazzoni<> Signed-off-by: Daniel Laird <daniel.j.laird@nxp.com>
* pciutils may depend on zlib. Based on Bernhard's git repository.Thiago A. Corrêa2008-10-311-1/+1
|
* Improve pciutils based on Bernhard Reutner-Fischer's git repository ↵Thiago A. Corrêa2008-10-313-25/+29
| | | | (http://repo.or.cz/w/buildroot.git?a=tree;f=package/pciutils;hb=HEAD). Thanks
* Make sure directories are created during install to STAGING_DIR and ↵Thiago A. Corrêa2008-10-311-10/+8
| | | | TARGET_DIR. Thanks to Thomas Petazzoni and Bernhard Reutner-Fischer.
* Fix bug #0005884 - pciutils depends on zlibThiago A. Corrêa2008-10-312-1/+2
|
* Minor cleanups. Use touch for stamp-filesThiago A. Corrêa2008-10-311-2/+2
|
* fix wrong variable name for SQL. Signed-off-by: Markus Heidelberg ↵Thiago A. Corrêa2008-10-311-1/+1
| | | | <markus.heidelberg@web.de>
* Bump ntp versionArnar Mar Sigurðsson2008-10-311-1/+1
|
* 2 gcc patches from Atmel's buildrootArnar Mar Sigurðsson2008-10-312-0/+181
|
* python: add $(STAGING_DIR)/usr/lib to PYTHON_MODULES_LIB so thatWade Berrier2008-10-301-2/+2
| | | | modules build correctly (particularly readline)
* linux: skip installing modules if modules are disabled in kernel configHans-Christian Egtvedt2008-10-301-7/+13
| | | | | | | | This patch will check if CONFIG_MODULES is set in the kernel .config, if not yes then it will skip installing the modules. Signed-off-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
* linux: make touch also create the dependency file when installing modulesHans-Christian Egtvedt2008-10-301-1/+1
| | | | | Signed-off-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
* linux: fix typo in status printoutHans-Christian Egtvedt2008-10-301-1/+1
| | | | | Signed-off-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
* linux: add probing for kernel version when installing modulesHans-Christian Egtvedt2008-10-301-9/+10
| | | | | | | | | | This patch will ask the kernel for the specific version before doing modules_install, that way Buildroot will know which directories to remove and what parameters to use for depmod. Needed when compiling a kernel grabbed from GIT or vendor specific releases. Signed-off-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
* qtopia4: fix wrong compilation of qmakePeter Korsgaard2008-10-291-1/+5
| | | | Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
* package/libpng/libpng.mk: Change to autotools.in formatDaniel Laird2008-10-291-76/+13
| | | | | | | Move libpng into the new era..... Signed-off-by: Daniel Laird <daniel.j.laird@nxp.com>
* bind: use strchr() instead of index()Peter Korsgaard2008-10-291-0/+33
|
* qtopia4: fix adjustment of qmake.confPeter Korsgaard2008-10-281-8/+9
| | | | | | | | | Extend the regexp to match spaces and also tabs to replace the qmake variables with the proper buildroot values. Also use TARGET_AR and TARGET_STRIP instead of using TARGET_CROSS and set a variable for qmake.conf to shorten the command line. Patch by Markus Heidelberg
* qtopia4: fix use of pkg-configPeter Korsgaard2008-10-281-1/+6
| | | | | | | | | | | | When cross compiling, Qt sets PKG_CONFIG in its own configure script to an empty string. That leads to not using pkg-config. To avoid that, use the configure option -force-pkg-config. Also set environment variables for pkg-config defined in TARGET_CONFIGURE_OPTS. Patch by Markus Heidelberg. See http://buildroot.uclibc.org/lists/buildroot/2008-October/011324.html for more details.
* Fix matchbox buildPeter Korsgaard2008-10-273-18/+58
| | | | | | | | | | | | | | | | | | | | | | | | | | Fix matchbox build This patch fixes various failures in the Matchbox build: * libmatchbox and matchbox-panel were using a now legacy index() function, which is not part of every uClibc build nowadays (depending on the configuration). As this function doesn't exist anymore in all builds, use strchr() instead, which is the recommended replacement for index(). Two patches, one for libmatchbox, one for matchbox-panel, are added to fix this problem. Closes bug http://bugs.uclibc.org/view.php?id=5484 * Do not override the CFLAGS and LDFLAGS values, they are already set by TARGET_CONFIGURE_OPTS. It caused build failures. * Mangle the library paths in the .la file of libmatchbox, after installation in the staging dir. It would probably be nice to switch Matchbox over to the new Makefile.autotools.in. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* Strip gettext libraries on the targetPeter Korsgaard2008-10-271-0/+2
| | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* Strip libgtk2 in the targetPeter Korsgaard2008-10-271-2/+0
| | | | | | | | | Rely on the sane default values of Makefile.autotools.in for the staging and target installs. The immediate benefit is that the target install will use install-strip instead of install, leading to a quite nice size reduction in the libraries. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* Strip pango libraries on the targetPeter Korsgaard2008-10-271-2/+0
| | | | | | | | Use the predefined INSTALL_STAGING_OPT and INSTALL_TARGET_OPT behaviour of Makefile.autotools.in, so that installation on the target is done using install-strip. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* Fix strange problems in pango configure targetPeter Korsgaard2008-10-271-2/+2
| | | | | | | The configure target of pango had strange characters in it, preventing compilation to work. Remove them, they just seem to be mistakes. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* libglib2: remove $(DISABLE_NLS) from configure optionsPeter Korsgaard2008-10-261-1/+1
| | | | | | | The configure option --disable-nls is not supported anymore in glib since version 2.0, see file ChangeLog.pre-2-0 line 544. Patch by Markus Heidelberg.
* libglib2: remove redundant configure argsPeter Korsgaard2008-10-261-2/+2
| | | | Patch by Markus Heidelberg.
* package: remove redundant pkg-config variablesPeter Korsgaard2008-10-2611-48/+17
| | | | | | | Also remove some redundant or predefined configure/make args in these packages. Patch by Markus Heidelberg.
* vim: add TARGET_CONFIGURE_OPTSPeter Korsgaard2008-10-261-1/+2
| | | | Patch by Markus Heidelberg.
* docker: requires pkgconfig, glib2 and X11Peter Korsgaard2008-10-262-1/+4
|
* docker: strip on target installPeter Korsgaard2008-10-261-0/+3
|
* docker: s/PKGCONFIG/PKG_CONFIG/ to be consistentPeter Korsgaard2008-10-262-2/+3
| | | | Patch by Markus Heidelberg.
* toolhain/: confgure: respect quiet optionPeter Korsgaard2008-10-265-0/+6
|
* package: cleanup PKG_CONFIG_SYSROOTPeter Korsgaard2008-10-264-16/+1
| | | | | | | | PKG_CONFIG_SYSROOT_DIR and friends get set in package/Makefile.in, so there's no need to set it in the makefiles of the individual packages as well. Based on a patch by Markus Heidelberg.
* qtopia4: reduce the use of BR2_PACKAGE_QTOPIA4Peter Korsgaard2008-10-261-25/+10
| | | | | | | | Use one conditional if statement instead of several single "depends on". Patch by Markus Heidelberg. Cleaned up trailing white space while we're at it.
* kernel-headers: bump 2.6.25, 2.6.26 and 2.6.27 minor versionsPeter Korsgaard2008-10-241-2/+2
|
* lsof: bump versionPeter Korsgaard2008-10-235-12/+12
| | | | Reported by Mark McLaurin.