Commit message (Collapse) | Author | Age | Lines | |
---|---|---|---|---|
* | Fix quoting problem (preboot setting) in many board config files. | Wolfgang Denk | 2008-03-03 | -1/+1 |
| | | | | Signed-off-by: Wolfgang Denk <wd@denx.de> | |||
* | TQM8xx[LM]: Fix broken environment alignment. | Wolfgang Denk | 2007-09-16 | -0/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | With recent toolchains, the environment sectors were no longer aligned to sector boundaries. The reason was a combination of two bugs: 1) common/environment.c assumed that CONFIG_TQM8xxL would be defined for all TQM8xxL and TQM8xxM boards. But "include/common.h", where this gets defined, is not included here (and cannot be included without causing lots of problems). Added a new #define CFG_USE_PPCENV for all boards which really want to put the environment is a ".ppcenv" section. 2) The linker scripts just include environment.o, silently assuming that the objects in that file are really in the order in which they are coded in the C file, i. e. "environment" first, then "redundand_environment", and "env_size" last. However, current toolchains (GCC-4.x) reorder the objects, causing the environment data not to start on a flash sector boundary: Instead of: we got: 40008000 T environment 40008000 T env_size 4000c000 T redundand_environment 40008004 T redundand_environment 40010000 T env_size 4000c004 T environment Note: this patch fixes just the first part, and cures the alignment problem by making sure that "env_size" gets placed correctly. However, we still have a potential issue because primary and redundant environment sectors are actually swapped, i. e. we have now: 40008000 T redundand_environment 4000c000 T environment 40010000 T env_size This shall be fixed in the next version. Signed-off-by: Wolfgang Denk <wd@denx.de> | |||
* | ColdFire: Fix some remaining problems with CFG_CMD_ | Stefan Roese | 2007-08-18 | -3/+3 |
| | | | | Signed-off-by: Stefan Roese <sr@denx.de> | |||
* | ColdFire: idmr platform MCF52x2 update | TsiChungLiew | 2007-08-16 | -7/+27 |
| | | | | Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com> | |||
* | include/configs/[g-o]*: Cleanup BOOTP and lingering CFG_CMD_*. | Jon Loeliger | 2007-07-10 | -0/+9 |
| | | | | | | | | | Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h used to be included but CONFIG_BOOTP_MASK was not defined. Remove lingering references to CFG_CMD_* symbols. Signed-off-by: Jon Loeliger <jdl@freescale.com> | |||
* | include/configs: Use new CONFIG_CMD_* in various i* named board config files. | Jon Loeliger | 2007-07-05 | -14/+14 |
| | | | | Signed-off-by: Jon Loeliger <jdl@freescale.com> | |||
* | [iDMR] Add MTD and JFFS2 support, also add default partition definition. | Bartlomiej Sieka | 2007-01-23 | -0/+12 |
| | ||||
* | [iDMR] Using MII-related commands on iDRM board doesn't work now (e.g., | Bartlomiej Sieka | 2007-01-23 | -2/+6 |
| | | | | | | "mii device" results in "Unexpected exception"). Fixing this properly requires some clean-up in the FEC drivers infrastructure for ColdFire, so this commit disables MII commads for now. | |||
* | Preliminary support for the iDMR board (ColdFire). | Bartlomiej Sieka | 2006-12-20 | -0/+197 |