summaryrefslogtreecommitdiffstats
path: root/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* Makefile: fix autoconf.h locationJean-Christophe PLAGNIOL-VILLARD2010-08-271-2/+2
| | | | | Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Kconfig: sync with linux kernel v2.6.36-rc1-168-ge36c886Jean-Christophe PLAGNIOL-VILLARD2010-08-221-1/+1
| | | | | | this will add also the support of the new ncurse interface nconfig Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
* Merge branch 'next'Sascha Hauer2010-08-031-3/+3
|\
| * move boards to arch/<architecure>/boardsJean-Christophe PLAGNIOL-VILLARD2010-07-231-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | this will allow each arch to handle the boards more simply and depending on there need the env var BOARD will refer to the current board dirent for sandbox as we have only one board the board dirent is arch/sandbox/board Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* | Release v2010.08.0v2010.08.0Sascha Hauer2010-08-031-1/+1
|/ | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Merge branch 'next'Sascha Hauer2010-07-031-15/+0
|\
| * Allow to merge default environment from more than one directorySascha Hauer2010-06-221-15/+0
| | | | | | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* | v2010.07.0v2010.07.0Sascha Hauer2010-07-031-1/+1
|/ | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* v2010-06.0v2010.06.0Sascha Hauer2010-06-021-1/+1
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* give nice output when generating barebox.bin and barebox.SUwe Kleine-König2010-05-031-3/+14
| | | | | | | | | | As a side effect don't build barebox.S when barebox.bin is updated. I didn't manage to keep the old behaviour and I consider it cleaner this way. Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Signed-off-by: Wolfram Sang <w.sang@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* barebox 2010.05.0v2010.05.0Sascha Hauer2010-05-031-1/+1
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Release v2010.04.0v2010.04.0Sascha Hauer2010-04-061-1/+1
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* barebox-2010.03.0v2010.03.0Sascha Hauer2010-03-031-1/+1
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Merge branch 'next'Sascha Hauer2010-02-011-0/+23
|\
| * Consider real and protected mode in the dump fileJuergen Beisert2010-01-141-0/+23
| | | | | | | | | | | | | | | | | | On x86 'objdump' does not know which parts of the image are 16 bit code and 32 bit. As the default is 32 bit, it will output garbage from the 16 bit parts (due to 16/32 bit ops are sharing the same opcodes). Signed-off-by: Juergen Beisert <jbe@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* | v2010.02.0v2010.02.0Sascha Hauer2010-02-011-2/+2
|/ | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* barebox-2009.12.0v2009.12.0Sascha Hauer2009-12-231-1/+1
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* barebox-2009.12.01Sascha Hauer2009-12-231-2/+2
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Fix barebox Version numberSascha Hauer2009-12-181-3/+3
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Makefile: clean barebox.ldrSascha Hauer2009-12-181-1/+1
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* rename U-Boot-v2 project to bareboxSascha Hauer2009-12-151-87/+87
| | | | | | | | | | | | | | | | | | | | | | | | | | | This has been done with the following script: find -path ./.git -prune -o -type f -print0 | xargs -0 -r sed -i \ -e 's/u2boot/barebox/g' \ -e 's/U2Boot/barebox/g' \ -e 's/U-boot V2/barebox/g' \ -e 's/u-boot v2/barebox/g' \ -e 's/U-Boot V2/barebox/g' \ -e 's/U-Boot-v2/barebox/g' \ -e 's/U_BOOT/BAREBOX/g' \ -e 's/UBOOT/BAREBOX/g' \ -e 's/uboot/barebox/g' \ -e 's/u-boot/barebox/g' \ -e 's/u_boot/barebox/g' \ -e 's/U-Boot/barebox/g' \ -e 's/U-boot/barebox/g' \ -e 's/U-BOOT/barebox/g' find -path ./.git -prune -o \( -name "*u-boot*" -o -name "*uboot*" -o -name "*u_boot*" \) -print0 | \ xargs -0 -r rename 's/u[-_]?boot/barebox/' It needs some manual fixup following in the next patch Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* let linker create a link mapJuergen Beisert2009-12-101-0/+2
| | | | | Signed-off-by: Juergen Beisert <j.beisert@pengutronix.de> Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* arm: generate mach-types.h instead of static versionJean-Christophe PLAGNIOL-VILLARD2009-11-031-0/+1
| | | | | | mach-types against v2.6.32-rc5 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
* kbuild: add arch/$ARCH/include to search pathJean-Christophe PLAGNIOL-VILLARD2009-10-221-0/+1
| | | | | Signed-off-by: Sam Ravnborg <sam@ravnborg.org> Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
* kbuild: asm symlink support for arch/$ARCH/includeJean-Christophe PLAGNIOL-VILLARD2009-10-221-4/+31
| | | | | | | | | | | Adjust the asm symlink support so we do not create the symlink unless really needed. We check the precense of include/asm-$ARCH by checking for the system.h file. We may end up with a stale directory so it is not enough to check if the directory is present. Signed-off-by: Sam Ravnborg <sam@ravnborg.org> Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
* kbuild: support arch/$ARCH/include for tags, cscopeJean-Christophe PLAGNIOL-VILLARD2009-10-211-1/+5
| | | | | Signed-off-by: Sam Ravnborg <sam@ravnborg.org> Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
* v2.0.0-rc10v2.0.0-rc10Sascha Hauer2009-08-131-1/+1
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* v2.0.0-rc9v2.0.0-rc9Sascha Hauer2009-05-281-1/+1
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* 2.0.0-rc8v2.0.0-rc8Sascha Hauer2009-03-231-1/+1
| | | | | | | | | | | Oh, dear dad, can you see me now I am myself, like you somehow Ill ride the wave where it takes me Ill hold the pain... Release me... Ohh...ohh...ohh...ohh... Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* recreate symlink to board config if necessarySascha Hauer2009-03-191-1/+1
| | | | | | | When changing the board it is necessary to change the symlink from include/config.h to the new board Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* v2.0.0-rc7v2.0.0-rc7Sascha Hauer2008-12-191-1/+1
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* ridiculous counter 6v2.0.0-rc6Sascha Hauer2008-11-141-1/+1
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* back to gitSascha Hauer2008-09-041-1/+1
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Version bump to v2.0.0-rc5v2.0.0-rc5Sascha Hauer2008-09-041-1/+1
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Sync action and log when creating the config.h linkJuergen Beisert2008-07-111-1/+1
|
* [kbuild] fix out of tree build problem with environment handlingMarc Kleine-Budde2008-07-031-16/+16
| | | | | | | This patch fixes the out of tree build, which was broken in 7b498d9838e68eb0b58450ec54ed968e7848c8e0. Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* 004-arm-makefileNishanth Menon2008-06-051-2/+1
| | | | | | | | | | | | [Patch 04/17] U-Boot-V2:ARM: Remove unwanted flags from Makefile CFLAGS: "-D __ARM__" should have been "-D__ARM__". this breaks sparse check. Further -nostdinc in Makefile is redfined by commit ID:847934bc960ba1588c87e283118318dfdd78d4c0 This is unecessary as NOSTDINC_FLAGS defines it Signed-off-by: Nishanth Menon<x0nishan@ti.com>
* [kbuild] move -pipe from architecture Makefiles to toplevelSascha Hauer2008-06-031-1/+1
| | | | Makefile
* [kbuild] move -nostdinc from architecture Makefiles to toplevelSascha Hauer2008-06-031-1/+2
| | | | Makefile
* [kbuild] move -ffreestanding from architecture Makefiles to toplevelSascha Hauer2008-06-031-1/+1
| | | | Makefile
* [kbuild] move -fno-builtin from architecture Makefiles to toplevelSascha Hauer2008-06-031-1/+1
| | | | Makefile
* [kbuild] move -Os flag from architecture Makefiles to toplevelSascha Hauer2008-06-031-1/+1
| | | | Makefile
* [general] remove trailing whitespaces in MakefileSascha Hauer2008-04-071-3/+3
|
* [general] Move include/configs/* to board/*/config.hSascha Hauer2008-04-071-2/+2
|
* [general] Added docs and htmldocs target to master makefileCarsten Schlote2008-02-201-0/+12
| | | | | | | | | Added two targets to the toplevel Makefile : docs and htmdocs. Further output formats might be added later (PDF, TeX, ...) and wrapped by the docs target. Signed-off-by: Carsten Schlote <c.schlote@konzeptpark.de>
* back to -gitWolfram Sang2008-02-201-1/+1
| | | | Signed-off-by: Wolfram Sang <w.sang@pengutronix.de>
* Version bump up rc4v2.0.0-rc4Wolfram Sang2008-02-201-1/+1
| | | | Signed-off-by: Wolfram Sang <w.sang@pengutronix.de>
* version to rc4-gitMarc Kleine-Budde2007-11-301-2/+2
| | | | Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* version bump to -rc3v2.0.0-rc3Marc Kleine-Budde2007-11-291-1/+1
| | | | Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* [makesystem] reworked default environment handlingMarc Kleine-Budde2007-11-191-0/+16
| | | | | | | | | | | This patch improves the default environment handling, now the makesystem bails out if the default environment path is empty or points to an invalid directory (with activated default environment). It also fixes this error: find: invalid predicate `' Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>