summaryrefslogtreecommitdiff
path: root/board/nc650
Commit message (Collapse)AuthorAgeLines
* Fix linker scripts: add NOLOAD atribute to .bss/.sbss sectionsWolfgang Denk2008-01-12-1/+1
| | | | | | | | | | | | | | | | | | | With recent toolchain versions, some boards would not build because or errors like this one (here for ocotea board when building with ELDK 4.2 beta): ppc_4xx-ld: section .bootpg [fffff000 -> fffff23b] overlaps section .bss [fffee900 -> fffff8ab] For many boards, the .bss section is big enough that it wraps around at the end of the address space (0xFFFFFFFF), so the problem will not be visible unless you use a 64 bit tool chain for development. On some boards however, changes to the code size (due to different optimizations) we bail out with section overlaps like above. The fix is to add the NOLOAD attribute to the .bss and .sbss sections, telling the linker that .bss does not consume any space in the image. Signed-off-by: Wolfgang Denk <wd@denx.de>
* board/[m-p]*: Remove obsolete references to CONFIG_COMMANDSJon Loeliger2007-07-09-2/+2
| | | | Signed-off-by: Jon Loeliger <jdl@freescale.com>
* board/[k-z]*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).Jon Loeliger2007-07-04-1/+1
| | | | | | | | | | | | | | This is a compatibility step that allows both the older form and the new form to co-exist for a while until the older can be removed entirely. All transformations are of the form: Before: #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) After: #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT) Signed-off-by: Jon Loeliger <jdl@freescale.com>
* Cleanup compiler warnings, update CHANGELOGWolfgang Denk2007-04-20-4/+2
| | | | Signed-off-by: Wolfgang Denk <wd@denx.de>
* Fix breakage of NC650 board with respect to nand support.Detlev Zundel2007-04-20-2/+1
| | | | Signed-off-by: Detlev Zundel <dzu@denx.de>
* Added support for the TQM8272 board from TQHeiko Schocher2006-12-21-1/+2
| | | | Signed-off-by: Heiko Schocher <hs@denx.de>
* Move "ar" flags to config.mk to allow for silent "make -s"Wolfgang Denk2006-10-09-1/+1
| | | | Based on patch by Mike Frysinger, 20 Jun 2006
* Add support for a saving build objects in a separate directory.Marian Balakowicz2006-09-01-8/+12
| | | | | | | | | | | | | | | | | | | | | Modifications are based on the linux kernel approach and support two use cases: 1) Add O= to the make command line 'make O=/tmp/build all' 2) Set environement variable BUILD_DIR to point to the desired location 'export BUILD_DIR=/tmp/build' 'make' The second approach can also be used with a MAKEALL script 'export BUILD_DIR=/tmp/build' './MAKEALL' Command line 'O=' setting overrides BUILD_DIR environent variable. When none of the above methods is used the local build is performed and the object files are placed in the source directory.
* Coding Style cleanupWolfgang Denk2006-05-03-40/+40
|
* Added missing nand.c for NC650 boarddzu@denx.de2006-04-19-0/+117
| | | | Signed-off-by: dzu@denx.de <dzu@eddie.localdomain>
* Update for NC650 board. Add NC650 based CP850 configuration.dzu@denx.de2006-04-19-8/+69
| | | | Signed-off-by: dzu@denx.de <dzu@denx.de>
* GCC-4.x fixes: clean up global data pointer initialization for all boards.Wolfgang Denk2006-03-31-2/+2
|
* (no commit message)Wolfgang Denk2005-12-12-0/+3
|
* Fix problems with ld version 2.16 (dot outside sections problem)Wolfgang Denk2005-08-31-0/+2
| | | | | Pointed out by Gerhard Jaeger, 31 Aug 2005; cf. http://sourceware.org/ml/binutils/2005-08/msg00412.html
* Patch by Detlev Zundel, 14 Mar 2005:wdenk2005-03-14-0/+36
| | | | NC650: changed NAND flash addressing to using UPMB
* Cleanupwdenk2004-10-11-3/+3
|
* * Enable NAND flash support for NC650 board.wdenk2004-10-11-0/+10
| | | | | * Patch by Thomas Lange 07 Oct 2004: Updated README for DBAu1x00 boards to match current status
* Add support for IDS "NC650" boardwdenk2004-08-28-0/+1068