Commit message (Collapse) | Author | Age | Lines | |
---|---|---|---|---|
* | board/[j-z]*: Remove lingering references to CFG_CMD_* symbols. | Jon Loeliger | 2007-07-10 | -2/+2 |
| | | | | | | | | Fixed some broken instances of "#ifdef CMD_CFG_IDE" too. Those always evaluated TRUE, and thus were always compiled even when IDE really wasn't defined/wanted. Signed-off-by: Jon Loeliger <jdl@freescale.com> | |||
* | board/[m-p]*: Remove obsolete references to CONFIG_COMMANDS | Jon Loeliger | 2007-07-09 | -1/+1 |
| | | | | Signed-off-by: Jon Loeliger <jdl@freescale.com> | |||
* | board/[k-z]*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*). | Jon Loeliger | 2007-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> | |||
* | Merge with /home/hs/SC3/u-boot | Wolfgang Denk | 2007-01-15 | -3/+3 |
|\ | | | | | | | Some code cleanup. | |||
* | | Fix auto_update for MCC200 board. | Wolfgang Denk | 2007-01-10 | -4/+3 |
|/ | | | | | | | | | | The invocation of do_auto_update() is moved to the end of the misc_init_r() function, after the flash mappings have been initialized. Please find attached a patch that implements that change. Also correct the decoding of the keypad status. With this update, the key that will trigger the update is Column 2, Row 2. | |||
* | automatic update mechanism | Andrei Safronov | 2006-12-08 | -0/+5 |
| | ||||
* | Minor code cleanup. Update CHANGELOG. | Wolfgang Denk | 2006-11-27 | -2/+1 |
| | ||||
* | Sequential accesses to non-existent memory must be synchronized, | Wolfgang Denk | 2006-11-06 | -0/+19 |
| | | | | | | at least on G2 cores. This fixes get_ram_size() problems on MPC5200 Rev. B boards. | |||
* | Code cleanup | Wolfgang Denk | 2006-08-27 | -2/+2 |
| | ||||
* | Updates for MCC200 / PRS200 boards: | Wolfgang Denk | 2006-08-24 | -0/+4 |
| | | | | | | - support for configurations with SDRAM or DDR memory, - support for highboot and lowboot - adjusting environment definitions | |||
* | MCC200: restrict addressable flash space to 32 MB | Wolfgang Denk | 2006-08-17 | -0/+8 |
| | ||||
* | MCC200: set default configuration to low_boot DDR, | Wolfgang Denk | 2006-07-23 | -1/+6 |
| | | | | and support for configurable options high_boot and/or SDRAM. | |||
* | Fix error in flash protection calculation on MCC200 board. | Wolfgang Denk | 2006-07-10 | -1/+1 |
| | ||||
* | Fix memory init problems on MCC200 board | Wolfgang Denk | 2006-06-14 | -1/+7 |
| | ||||
* | Fix U-Boot enviroenment sector protection on MCC200 board | Wolfgang Denk | 2006-06-09 | -1/+1 |
| | ||||
* | MCC200 Board: fix flash unprotection code for flash > 32 MB. | Wolfgang Denk | 2006-04-06 | -0/+10 |
| | ||||
* | GCC-4.x fixes: clean up global data pointer initialization for all boards. | Wolfgang Denk | 2006-03-31 | -2/+2 |
| | ||||
* | Minor code cleanup | Wolfgang Denk | 2006-03-06 | -60/+0 |
| | ||||
* | Fix problem with flash_get_size() from CFI driver update | Stefan Roese | 2006-03-01 | -0/+2 |
| | | | | Patch by Stefan Roese, 1 Mar 2006 | |||
* | Convert mcc200 to use common CFI flash driver | Stefan Roese | 2006-02-28 | -35/+47 |
| | | | | Patch by Stefan Roese, 28 Feb 2006 | |||
* | Cleanup MCC200 board. | Wolfgang Denk | 2006-02-24 | -7/+1 |
| | ||||
* | Initial port to MCC200 board (work in progress) | Wolfgang Denk | 2006-02-22 | -0/+328 |
Minimally modified patch by Bluetechnix, Vienna |