summaryrefslogtreecommitdiff
path: root/common/cmd_mfsl.c
AgeCommit message (Collapse)Author
2007-11-20[BUILD] conditionally compile common/cmd_*.c in common/MakefileGrant Likely
Modify common/Makefile to conditionally compile the cmd_*.c files based on the board config. Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
2007-09-24[FIX] repair MFSL commandsMichal Simek
2007-09-24synchronizition with mainlineMichal Simek
2007-08-07Merge git://www.denx.de/git/u-bootMichal Simek
2007-07-13[FIX] correct help for rsprMichal Simek
2007-07-10common/: Remove lingering references to CFG_CMD_* symbols.Jon Loeliger
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>
2007-07-08common/cmd_[i-n]*: Remove obsolete references to CONFIG_COMMANDS.Jon Loeliger
Signed-off-by: Jon Loeliger <jdl@freescale.com>
2007-07-04common/cmd_[i-z]* : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).Jon Loeliger
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>
2007-05-16Fix compile problem cause my Microblaze mergeStefano Babic
Signed-off-by: Stefano Babic <sbabic@denx.de>
2007-05-08add: reading special purpose registersMichal Simek
2007-05-08add: FSL control read and writeMichal Simek
2007-05-07fix: read and write MSR - repair number of parametersMichal Simek
2007-05-07new: add writing to msr registerMichal Simek
2007-05-05new: FSL and MSR supportMichal Simek