summaryrefslogtreecommitdiffstats
path: root/project
Commit message (Collapse)AuthorAgeFilesLines
* Remove the "project" featureThomas Petazzoni2009-09-163-156/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The "project" feature was designed to allow to several projects to be built inside the same Buildroot source tree and allowing the toolchain and non-configurable packages to be shared between the different projects on the same architecture. While being interesting in theory, this feature adds a level of complexity to Buildroot, both from an user perspective and from a developer perspective, while one of the main Buildroot strengh is to be simple. Moreover, this feature is only seldomly used by our users. From a user-level perspective, this for example allows to remove the project_build_ARCH directory, which was very confusing. The autotools-stamps directory is also removed, since these stamps are back at their normal location. Description of the changes involved : * project/, directory removed * Makefile - Don't include project/Makefile.in and project/project.mk anymore - Grab a copy of the contents of project/Makefile.in at the location it was imported, but remove the definition related to PROJECT_BUILD_DIR. The TARGET_DIR is now in $(BUILD_DIR)/target_dir - Remove the creation/removal of the $(PROJECT_BUILD_DIR) and $(PROJECT_BUILD_DIR)/autotools-stamps directories - Don't make world depends on target-host-info. This target was defined by project/project.mk to customize /etc/issue, /etc/hostname and create /etc/br-version depending on the project definitions. We can of course imagine re-adding such a feature later. - Replace PROJECT_BUILD_DIR by BUILD_DIR everywhere - Remove the update, log and lognr.$(PROJECT) target, they were specific to the project feature. * package/Makefile.autotools.in - Replace PROJECT_BUILD_DIR by BUILD_DIR for the location of the configure cache - Move the INSTALL_TARGET and HOOK_POST_INSTALL stamps to the same directory as the other stamps (i.e, in the package directory). * package/Makefile.in - Replace PROJECT_BUILD_DIR by BUILD_DIR for the location of the configure cache * package/at/at.mk, package/busybox/busybox.mk, package/busybox/initramfs.mk, package/customize/customize.mk, package/linux-fusion/linux-fusion.mk, package/ltp-testsuite/ltp-testsuite.mk, package/nfs-utils/nfs-utils.mk, target/cpio/cpioroot.mk, target/cramfs/cramfs.mk, target/device/Atmel/DataFlashBoot/DataflashBoot.mk, target/device/Atmel/Makefile.in, target/device/Atmel/at91bootstrap/at91bootstrap.mk, target/device/KwikByte/Makefile.in, target/ext2/ext2root.mk, target/initramfs/initramfs.mk, target/iso9660/iso9660.mk, target/jffs2/jffs2root.mk, target/linux/Makefile.in, target/romfs/romfs.mk, target/squashfs/squashfsroot.mk, target/tar/tarroot.mk, target/ubifs/ubifsroot.mk - Replace PROJECT_BUILD_DIR by BUILD_DIR * target/device/Config.in - Do not include project/Config.in anymore * target/linux/Makefile.in.advanced - Replace PROJECT_BUILD_DIR by BUILD_DIR - Store the stamps file in $(STAMP_DIR) instead of $(PROJECT_BUILD_DIR)/autotools-stamps * target/u-boot/Makefile.in - Replace PROJECT_BUILD_DIR by BUILD_DIR - Remove $(PROJECT) from the U-Boot target binary name - Remove the insertion in the configuration of the project name as the hostname - The u-boot-autoscript target now generates $(U_BOOT_AUTOSCRIPT).img instead of $(U_BOOT_AUTOSCRIPT).$(PROJECT) * toolchain/gcc/gcc-uclibc-3.x.mk toolchain/gcc/gcc-uclibc-4.x.mk - Move the stamps files to $(STAMP_DIR) Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* buildroot: add basic Bazaar supportSven Neumann2009-09-071-0/+2
| | | | | | | | This change adds the config options BR2_BZR_CO and BR2_BZR_UP that allow to configure the commands for doing a checkout/update from a Bazaar repository. Signed-off-by: Sven Neumann <s.neumann@raumfeld.com>
* project: use qstripThomas Petazzoni2009-09-051-47/+24
| | | | Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* project: saveconfig/getconfig doesn't need confPeter Korsgaard2009-08-271-11/+2
| | | | | | And get rid of unused debugging code while we're at it. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* project: xtensa specific ARCH handlingMaxim Grigoriev2009-07-241-0/+3
| | | | | | | Part of #163. Signed-off-by: Maxim Grigoriev <maxim2405@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
* package: add STAMP_DIR and use for host buildsPeter Korsgaard2009-03-191-0/+3
| | | | | | | | | | | | | | Move stamp (dependency) files outside the (version specific) source directories, so other packages can hardcode dependencies on them instead of having to use <PACKAGE>_VERSION variables. This is important as the variables in the make rules are evaluated when the rules is seen, which might be before the dependent makefile is parsed (and hence <PACKAGE>_VERSION variable is known, screwing up stuff. The downside of this is that the package isn't automatically rebuilt when the version changes (E.G. by a svn update) and you now also have to remove the stamp files next to $(BUILD_DIR)/<PACKAGE>-* to force a rebuild.
* Makefile: introduce $(HOST_DIR) for host binariesPeter Korsgaard2009-03-161-0/+3
| | | | | Add HOST_DIR directory handling. HOST_DIR should be used just like STAGING_DIR, but for host files instead of target ones.
* BR2_BANNER: set to 'Welcome to Buildroot'Peter Korsgaard2009-01-151-1/+1
| | | | Seems a bit more sensible as default.
* Fix BOARD_PATH for local projectsUlf Samuelsson2009-01-061-0/+2
|
* buildroot: add QUIET variable and use it for wget/git/svn/configurePeter Korsgaard2008-10-211-5/+6
| | | | | | A lot of tools take a -q option to be quiet. Set this if make is called with the -s (silent) option and use for wget, git, svn and configure.
* project/Makefile.in: workaround issue with out-of-tree buildsPeter Korsgaard2008-09-261-0/+6
| | | | | | | Other packages might also support Linux-style out of tree builds with the O=<dir> syntax (E.G. Busybox does). As make automatically forwards command line variable definitions those packages get very confused. Fix this by telling make to not do so
* Makefile: support relative paths for out of tree buildsPeter Korsgaard2008-09-161-1/+2
| | | | And complain if the output directory cannot be created.
* buildroot: support out-of-tree buildsPeter Korsgaard2008-08-311-0/+7
| | | | | Add support and documentation for out-of-tree builds with syntax like the Linux kernel (make O=<dir>).
* buildroot: add /etc/br-version with version info to target dirPeter Korsgaard2008-03-311-5/+9
|
* Fix saveconfig followed by menuconfigUlf Samuelsson2007-10-301-3/+3
|
* - whitespace cleanup (Cristian Ionescu-Idbohrn)Bernhard Reutner-Fischer2007-09-301-1/+0
|
* - revert some bad checkins, fixup bad settings in atmel targets and move the ↵Bernhard Reutner-Fischer2007-09-261-2/+13
| | | | gcc target abi back to a place where the other arch-specific settings live
* "Project Name" needed before "root" file system can be copied.Ulf Samuelsson2007-09-261-13/+2
| | | | | | | | Put first according to principle of configuration order Merge root skeleton configuration to one place - currently in package/busybox/Config.in - Should maybe have it's own Config.in gcc ABI configuration moved from toplevel to toolchain/gcc/Config.in
* - revert patch that obfuscates the config UI and doesn't reflect the order ↵Bernhard Reutner-Fischer2007-09-251-0/+11
| | | | of config steps
* Reorganize configs to even more logical positionsUlf Samuelsson2007-09-241-11/+0
|
* Ensure project U-Boot dir exists before using itUlf Samuelsson2007-09-231-0/+1
|
* - Subsume and collaps toolchain options in one menuBernhard Reutner-Fischer2007-09-221-2/+1
| | | | | This is ment to ease configuration by providing toolchain related options in one place No functional changes, just shuffling the menus around..
* - add a SVN_UP command for updating an already checked-out treeBernhard Reutner-Fischer2007-09-191-1/+3
|
* - fixes and cleanups (Cristian Ionescu-Idbohrn)Bernhard Reutner-Fischer2007-09-191-16/+20
|
* Move VENDOR dbg to correct MakefileUlf Samuelsson2007-09-172-9/+10
|
* Add debug infoUlf Samuelsson2007-09-171-0/+8
|
* Add hooks for creating your own board support packageUlf Samuelsson2007-09-121-1/+28
|
* Move VENDOR stuff to projectUlf Samuelsson2007-08-241-0/+19
|
* - global whitespace trimmingBernhard Reutner-Fischer2007-08-221-6/+6
|
* - our dependencies are project specific. First (untested) attempt to take ↵Bernhard Reutner-Fischer2007-08-211-0/+44
| | | | | | | 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)..
* - move the PROJECT variable setting to a more sensible placeBernhard Reutner-Fischer2007-08-211-0/+6
|
* Move project related info from main Makefile to project dirUlf Samuelsson2007-08-142-0/+20
|
* BSP Patch:Ulf Samuelsson2007-07-121-0/+26
========================================================= 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.