Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | - our dependencies are project specific. First (untested) attempt to take ↵ | Bernhard Reutner-Fischer | 2007-08-21 | 1 | -3/+13 |
| | | | | | | | this fact into account. Will need to try to copy eventual pre-existing project-specific deps back to package/config in order not to mess up the corresponding timestamps (to avoid superfluous rebuilds).. | ||||
* | - sed -i -e ↵ | Bernhard Reutner-Fischer | 2007-08-21 | 1 | -7/+7 |
| | | | | | | "/\-[[:space:]]*mkdir[[:space:]][[:space:]]*-p/s/-[[:space:]]*mkdir/mkdir/g" (want to know about errors if mkdir failed). Thanks to Cristian Ionescu-Idbohrn for pointing this out | ||||
* | - fix incorrect invocation of non-existing binary named "-find" | Bernhard Reutner-Fischer | 2007-08-21 | 1 | -6/+6 |
| | | | | This bloated the target needlessly (and used to work before) | ||||
* | - fix whitespace damage.. | Bernhard Reutner-Fischer | 2007-08-21 | 1 | -2/+2 |
| | |||||
* | - cosmetic adjustment in help text | Bernhard Reutner-Fischer | 2007-08-21 | 1 | -1/+1 |
| | |||||
* | Add BUILDROOT_DL_DIR to dependencies.sh and fix whitespace damage (sorry) | Ulf Samuelsson | 2007-08-20 | 1 | -1/+1 |
| | |||||
* | Add support for BUILDROOT_DL_DIR environment variable, overriding DL_DIR | Ulf Samuelsson | 2007-08-19 | 1 | -0/+3 |
| | |||||
* | Move fakeroot temps from STAGING_DIR to PROJECT_BUILD_DIR | Ulf Samuelsson | 2007-08-16 | 1 | -1/+1 |
| | |||||
* | Dont create TARGET_DIR if it exists | Ulf Samuelsson | 2007-08-16 | 1 | -1/+1 |
| | |||||
* | Avoid copying TARGET_SKELETON on every 'make' | Ulf Samuelsson | 2007-08-16 | 1 | -3/+5 |
| | |||||
* | Remove fakeroot files after use to avoid rerun | Ulf Samuelsson | 2007-08-15 | 1 | -0/+4 |
| | |||||
* | Move project related info from main Makefile to project dir | Ulf Samuelsson | 2007-08-14 | 1 | -20/+6 |
| | |||||
* | Avoid continuous rebuilds of TARGET_DIR and /etc/* project files | Ulf Samuelsson | 2007-08-14 | 1 | -11/+16 |
| | |||||
* | - add variable BR2_DEPENDS_DIR to point to the Kconfig depend hierarchy | Bernhard Reutner-Fischer | 2007-07-31 | 1 | -1/+2 |
| | |||||
* | - explicitely list base targets for World | Bernhard Reutner-Fischer | 2007-07-27 | 1 | -1/+1 |
| | |||||
* | - put dependency checking right to the start where any later stages can rely ↵ | Bernhard Reutner-Fischer | 2007-07-27 | 1 | -1/+1 |
| | | | | on the being ok. | ||||
* | - fix directory dependencies | Bernhard Reutner-Fischer | 2007-07-27 | 1 | -10/+13 |
| | | | | - BASE_TARGET depends on dirs | ||||
* | - remove passing down the goals | Bernhard Reutner-Fischer | 2007-07-27 | 1 | -4/+2 |
| | |||||
* | - fix building mconf with curses flags | Bernhard Reutner-Fischer | 2007-07-27 | 1 | -2/+4 |
| | | | | - make sure to rm .config when the first 'make menuconfig' was interrupted and thus no .config.cmd was created. | ||||
* | - the external-toolchain.mk is not parallel-safe, so ignore it. | Bernhard Reutner-Fischer | 2007-07-23 | 1 | -3/+14 |
| | | | | - first step of minor adjustments to allow for a toplevel 'make -j128' (regardless of BR2_JLEVEL) | ||||
* | make source-check without permanently changing WGET command | Ulf Samuelsson | 2007-07-20 | 1 | -6/+2 |
| | |||||
* | Fix INITRAMFS target that was broken. Get rid of config stuff out of the ↵ | "Steven J. Hill" | 2007-07-18 | 1 | -21/+24 |
| | | | | top-level directory. Finally fix Linux kernel module building such that modules are built and installed first followed by rest of packages. This allows for packages to build external Linux kernel modules. | ||||
* | Define HOSTLN to allow gzip to build for non-x86 target | Ulf Samuelsson | 2007-07-15 | 1 | -0/+4 |
| | |||||
* | - use established style | Bernhard Reutner-Fischer | 2007-07-13 | 1 | -3/+6 |
| | |||||
* | Workaround for vi bug in syntax highlighting | Ulf Samuelsson | 2007-07-12 | 1 | -3/+3 |
| | |||||
* | Change HOSTNAME to TARGET_HOSTNAME to avoid superseeding build host HOSTNAME | Ulf Samuelsson | 2007-07-12 | 1 | -4/+4 |
| | |||||
* | BSP Patch: | Ulf Samuelsson | 2007-07-12 | 1 | -7/+27 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ========================================================= 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. | ||||
* | Define date of build as DATE, use in mtd/mtd.mk | Ulf Samuelsson | 2007-07-11 | 1 | -0/+1 |
| | |||||
* | - fix evaluation of HOSTCFLAGS for kconfig. Closes #1415 | Bernhard Reutner-Fischer | 2007-07-09 | 1 | -2/+5 |
| | |||||
* | - wipe config related files in distclean | Bernhard Reutner-Fischer | 2007-07-09 | 1 | -1/+2 |
| | |||||
* | sh needs '-c' to run a binary | Ulf Samuelsson | 2007-07-09 | 1 | -5/+5 |
| | |||||
* | - add help target | Bernhard Reutner-Fischer | 2007-07-08 | 1 | -2/+18 |
| | |||||
* | - silence a cosmetic warning (closes several issues in mantis). | Bernhard Reutner-Fischer | 2007-07-08 | 1 | -11/+32 |
| | | | | This also provides a nice up-to-date filestamp if something got reconfigured (e.g. c++ support got toggled) that can be used in the future to depend accordingly. | ||||
* | Remove some unwanted white space in Makefile | Ulf Samuelsson | 2007-07-06 | 1 | -1/+1 |
| | |||||
* | - adjust infrastructure for new kconfig | Bernhard Reutner-Fischer | 2007-06-28 | 1 | -2/+56 |
| | |||||
* | - Search for defconfigs in target, not entire tree | Bernhard Reutner-Fischer | 2007-06-25 | 1 | -4/+5 |
| | | | | | | | | | This patch changes the way the top level Makefile searches for a <board>_defconfig file, it will only look in the target/ directory and its sub directories. The patch also enables loading a defconfig even if there already is a .config. (Hans-Christian Egtvedt) | ||||
* | - forgot to apply this hunk that should have belonged to r18904 | Bernhard Reutner-Fischer | 2007-06-24 | 1 | -1/+1 |
| | |||||
* | - add full sysroot support for non-ancient toolchains. | Bernhard Reutner-Fischer | 2007-06-20 | 1 | -5/+11 |
| | | | | - start to separate usr/lib and lib to match normal system-layout | ||||
* | Hide troublesome environment variables from sub processes | Peter Korsgaard | 2007-06-19 | 1 | -0/+7 |
| | | | | (E.G. screws up gdb, busybox, ..) | ||||
* | - provide a "source-check" target that tries to download all packages with | Bernhard Reutner-Fischer | 2007-06-07 | 1 | -2/+14 |
| | | | | | | wget's spider-mode (i.e. just see if the server says the file is there without actually downloading the files. Convenient to check for unavailable source-packages. | ||||
* | - fixup the extension for the host and start to honor BR2_PREFER_STATIC_LIB | Bernhard Reutner-Fischer | 2007-06-02 | 1 | -16/+16 |
| | |||||
* | - move setting up the extensions to correct place (like i said but tom ↵ | Bernhard Reutner-Fischer | 2007-06-02 | 1 | -21/+29 |
| | | | | didn't do..) | ||||
* | - correct extensions for apple (thanks Heikki Lindholm for pointing this out) | Bernhard Reutner-Fischer | 2007-06-02 | 1 | -2/+2 |
| | |||||
* | - add BR2_PREFER_STATIC_LIB config option to be able to select if we prefer ↵ | Bernhard Reutner-Fischer | 2007-06-01 | 1 | -0/+25 |
| | | | | | | | to build static or dynamic libs/bins. - depending on the BR2_GNU_BUILD_SUFFIX, set the respective EXEEXT, LIBEXT, SHREXT extensions for use on the target. Thanks to Tom for suplying a diff which implements these. | ||||
* | Create 'bin' directory in staging area. | "Steven J. Hill" | 2007-05-07 | 1 | -0/+1 |
| | |||||
* | Create symlink for 'usr/include' in the staging directory so that packages ↵ | "Steven J. Hill" | 2007-04-28 | 1 | -0/+1 |
| | | | | like zlib and others who expect that to exist will install properly. | ||||
* | - make sure to download fakeroot if needed | Bernhard Reutner-Fischer | 2007-04-06 | 1 | -1/+1 |
| | |||||
* | - add cc-option and use it to check for stuff that is benefical for PREFER_IMA | Bernhard Reutner-Fischer | 2007-02-12 | 1 | -0/+7 |
| | | | | - backport the libbackend.o gcov-iov.h dependency fixup from 4.2 to 4.0 | ||||
* | Support building using an external toolchain. Questions to the mailing list ↵ | "Steven J. Hill" | 2007-02-06 | 1 | -0/+4 |
| | | | | and all other comments to <biteme@devnull.com>. | ||||
* | - generalize the menuconfig linux kernel support | Bernhard Reutner-Fischer | 2007-01-30 | 1 | -8/+2 |
| | | | | - simplify toplevel mkdir rules a tiny bit |