Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | - fix typo in previous commit | Bernhard Reutner-Fischer | 2007-07-23 | 1 | -3/+3 |
| | |||||
* | - iff the cross-compiler supports certain mtune,march,mabi flags then use ↵ | Bernhard Reutner-Fischer | 2007-07-23 | 1 | -0/+16 |
| | | | | | | them for the packages. This should make it obvious if the wrong compiler is used to build the target. | ||||
* | No platform code in this file. | "Steven J. Hill" | 2007-07-22 | 1 | -4/+0 |
| | |||||
* | ATMEL_MIRROR needs to be available before toolchain is built | Ulf Samuelsson | 2007-07-22 | 1 | -0/+5 |
| | |||||
* | Add additional include directory, required by some packages | Ulf Samuelsson | 2007-07-20 | 1 | -1/+1 |
| | |||||
* | make source-check without permanently changing WGET command | Ulf Samuelsson | 2007-07-20 | 1 | -1/+1 |
| | |||||
* | Ensure we use host 'make', even when building 'make' in buildroot | Ulf Samuelsson | 2007-07-17 | 1 | -4/+9 |
| | |||||
* | Add comment on when to use BUILD_DIR vs PROJECT_BUILD_DIR | Ulf Samuelsson | 2007-07-12 | 1 | -0/+3 |
| | |||||
* | BSP Patch: | Ulf Samuelsson | 2007-07-12 | 1 | -3/+7 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ========================================================= The purpose of the BSP patch is to allow building several boards inside the same buildroot tree. For this to work, each board has to have its own "$(TARGET_DIR)" and all *configurable* packages must be rebuilt for each board. They are now built in the "$(PROJECT_BUILD_DIR)" All non configurable packages can and should still be built in the "$(BUILD_DIR)". If a package is built for one board, then when you build for a second board of the same architecture the build becomes a simple copy of the resulting binaries. ----- Define BR2_PROJECT which will be used as the selector between different boards. Note that BR2_PROJECT allow you to build multiple root file systems for a single board, and should not be confused with BR2_BOARD_NAME which relates to the H/W. ----- Define PROJECT_BUILD_DIR as "PROJECT_BUILD_DIR/$(PROJECT)" Define BINARIES_DIR as "binaries/$(PROJECT)" Define TARGET_DIR as "$(PROJECT_BUILD_DIR)/root" (some prefix/postfix may apply) Resulting images are stored in "$(BINARIES_DIR)" ----- Define a few new environment variables in Makefile PROJECT: Stripped BR2_PROJECT DATE: Date of build in YYYY-MM-DD format HOSTNAME: Stripped BR2_HOSTNAME => /etc/hostname BANNER: Stripped BR2_BANNER => /etc/issue Linux and Busybox will be built in $(PROJECT_BUILD_DIR) More patches will be needed later to ensure all configurable packages are built in this directory. | ||||
* | Remove usage of TARGET_LDFLAGS all together. Both TARGET_CFLAGS and ↵ | "Steven J. Hill" | 2007-07-06 | 1 | -7/+5 |
| | | | | TARGET_LDFLAGS are passed with the compilers and linker respectively so that we can pass CFLAGS and LDFLAGS on a per-package basis which was not possible previously and a number of packages failed to build. TARGET_CFLAGS usage in package makefiles will be removed next. | ||||
* | - adjust infrastructure for new kconfig | Bernhard Reutner-Fischer | 2007-06-28 | 1 | -24/+0 |
| | |||||
* | - add endian handling, mmap, memcmp checks to TARGET_CONFIGURE_ARGS | Bernhard Reutner-Fischer | 2007-06-27 | 1 | -1/+9 |
| | | | | - use TARGET_CONFIGURE_ARGS where appropriate. | ||||
* | - introduce TARGET_CONFIGURE_ARGS to hold presets for configure for target ↵ | Bernhard Reutner-Fischer | 2007-06-27 | 1 | -0/+26 |
| | | | | packages | ||||
* | - add BR2_INET_IPV6 and BR2_INET_RPC | Bernhard Reutner-Fischer | 2007-06-26 | 1 | -0/+4 |
| | | | | TODO: use $(DISABLE_IPV6) in packages instead of a gazillion different hackish ways that are currently in there | ||||
* | - pass -msoft-float if BR2_SOFT_FLOAT is set. Closes bug #1069 | Bernhard Reutner-Fischer | 2007-06-26 | 1 | -0/+8 |
| | |||||
* | - add full sysroot support for non-ancient toolchains. | Bernhard Reutner-Fischer | 2007-06-20 | 1 | -8/+73 |
| | | | | - start to separate usr/lib and lib to match normal system-layout | ||||
* | Add another include path to the CFLAGS. | "Steven J. Hill" | 2007-05-07 | 1 | -1/+1 |
| | |||||
* | - put staging_dir/usr/bin into the target path, so X-stuff can find ↵ | Bernhard Reutner-Fischer | 2007-03-20 | 1 | -1/+1 |
| | | | | | | freetype-config. Closes #1233 | ||||
* | Support building using an external toolchain. Questions to the mailing list ↵ | "Steven J. Hill" | 2007-02-06 | 1 | -1/+20 |
| | | | | and all other comments to <biteme@devnull.com>. | ||||
* | - the $(XSERVER) target can be provided by different X server impls. Adjust ↵ | Bernhard Reutner-Fischer | 2007-02-04 | 1 | -0/+13 |
| | | | | | | users - rdesktop needs an xserver impl | ||||
* | - make absolutely sure that we are not trying to go into jobserver mode for ↵ | Bernhard Reutner-Fischer | 2007-01-30 | 1 | -2/+5 |
| | | | | MAKE1 | ||||
* | filter pkgconfig output to force it do use our staging_dir and not | Eric Andersen | 2007-01-14 | 1 | -1/+5 |
| | | | | try to use the system libraries as it is inclined to do | ||||
* | - use centralized DISABLE_LARGEFILE | Bernhard Reutner-Fischer | 2006-12-21 | 1 | -5/+7 |
| | | | | - nil CXX if there isn't one | ||||
* | - Quote TARGET_PATH. Closes #1107. | Bernhard Reutner-Fischer | 2006-12-08 | 1 | -1/+2 |
| | |||||
* | - add and use a HOSTCXX variable. | Bernhard Reutner-Fischer | 2006-11-20 | 1 | -0/+1 |
| | |||||
* | - add and use BR2_BZCAT config option. | Bernhard Reutner-Fischer | 2006-11-17 | 1 | -7/+15 |
| | |||||
* | we use BR2_ENABLE_LOCALE not ENABLE_LOCALE | Eric Andersen | 2006-10-17 | 1 | -1/+1 |
| | |||||
* | - add missing hung from the BR2_ZCAT introduction | Bernhard Reutner-Fischer | 2006-10-01 | 1 | -0/+2 |
| | |||||
* | - fix bug #1042; Hardcoding system-paths is a bad idea. If some of them are not | Bernhard Reutner-Fischer | 2006-09-30 | 1 | -1/+1 |
| | | | | in PATH seen by make then most likely for a very good reason. Set your PATH accordingly if you need /bin or /usr/local/bin et al. | ||||
* | - pickup the PATH the user has set. | Bernhard Reutner-Fischer | 2006-08-24 | 1 | -1/+1 |
| | | | | Fixes HOSTCC et al being installed in e.g. /opt where it wasn't found before. | ||||
* | move TAR_OPTIONS to its rightful place | Eric Andersen | 2006-07-18 | 1 | -0/+2 |
| | |||||
* | Split the target suffix out as a config option, for the few cases where | Paul Mundt | 2006-06-05 | 1 | -3/+4 |
| | | | | | we have to use a different one. | ||||
* | - pass $(TARGET_CROSS)strip as STRIP to the packages. | Bernhard Reutner-Fischer | 2006-03-10 | 1 | -0/+1 |
| | |||||
* | add TARGET_CXX per case 0000593 | David Anders | 2006-01-25 | 1 | -0/+1 |
| | |||||
* | add an option for the --build so cygwin users can utilize buildroot | Mike Frysinger | 2005-12-27 | 1 | -1/+1 |
| | |||||
* | force CPP | Mike Frysinger | 2005-12-17 | 1 | -0/+1 |
| | |||||
* | let people control location of download dir | Mike Frysinger | 2005-10-01 | 1 | -2/+7 |
| | |||||
* | add sf mirrors list in help (fix by Bernhard Fischer) and allow people to ↵ | Mike Frysinger | 2005-09-18 | 1 | -2/+12 |
| | | | | add custom prefix/suffix to builds | ||||
* | Build 'file' for the host as well as the target. If the host system has a ↵ | "Steven J. Hill" | 2005-08-30 | 1 | -1/+1 |
| | | | | version older than that being built for buildroot, the target build will fail. So, we build 'file' for the host and add actually add '$(TOOL_BUILD_DIR)/bin' to the TARGET_PATH so that it takes precedence over the host system version. | ||||
* | Change root_fs_$(ARCH) to rootfs.$(ARCH) | Eric Andersen | 2005-08-13 | 1 | -1/+1 |
| | |||||
* | Fix bzip2 cross build error associated with host ranlib being | "Steven J. Hill" | 2005-05-18 | 1 | -0/+1 |
| | | | | used instead of cross target ranlib. | ||||
* | SnarlCat writes: add OBJCOPY to build environment Bug #213 | Mike Frysinger | 2005-04-07 | 1 | -1/+2 |
| | |||||
* | more dhcp updates | Eric Andersen | 2005-02-16 | 1 | -0/+1 |
| | |||||
* | Patch from scott: http://bugs.uclibc.org/view.php?id=42 | Eric Andersen | 2005-01-23 | 1 | -0/+4 |
| | | | | | | | 0000042: add subversion (svn) support to buildroot This patch adds support for subversion to checkout files, much like how CVS already works. It uses 'SVN' macro in makefiles. | ||||
* | Add initial BR2_JLEVEL support, with some exceptions for apps that | Eric Andersen | 2004-12-11 | 1 | -0/+3 |
| | | | | have broken 'make -j' support | ||||
* | Add an option to allow people to relocate the toolchain | Eric Andersen | 2004-12-11 | 1 | -1/+3 |
| | |||||
* | nuke sources/ - you might want to move sources/dl/ to dl/ to avoid ↵ | Tim Riker | 2004-10-27 | 1 | -2/+2 |
| | | | | redownloading the world | ||||
* | facelift step number two | Eric Andersen | 2004-10-09 | 1 | -3/+2 |
| | |||||
* | Major buildroot facelift, step one. | Eric Andersen | 2004-10-09 | 1 | -0/+60 |
-Erik |