Standardize command usage messages with cmd_usage()Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
Memory footprint optimizationsAs suggested by Wolfgang Denk:- image printing functions: - remove wrappers - remove indentation prefix from functions' signatures- merge getenv_verify and geten
Memory footprint optimizationsAs suggested by Wolfgang Denk:- image printing functions: - remove wrappers - remove indentation prefix from functions' signatures- merge getenv_verify and getenv_autostart into one parametrized functionSigned-off-by: Bartlomiej Sieka <tur@semihalf.com>
show more ...
[new uImage] Update naming convention for bootm/uImage related codeThis patch introduces the following prefix convention for theimage format handling and bootm related code:genimg_ - dual forma
[new uImage] Update naming convention for bootm/uImage related codeThis patch introduces the following prefix convention for theimage format handling and bootm related code:genimg_ - dual format shared codeimage_ - legacy uImage format specific codefit_ - new uImage format specific codeboot_ - booting process related codeRelated routines are renamed and a few pieces of code are moved around andre-grouped.Signed-off-by: Marian Balakowicz <m8@semihalf.com>
[new uImage] Add dual format uImage support frameworkThis patch adds framework for dual format images. Format detection is addedand the bootm controll flow is updated to include cases for new FIT
[new uImage] Add dual format uImage support frameworkThis patch adds framework for dual format images. Format detection is addedand the bootm controll flow is updated to include cases for new FIT formatuImages.When the legacy (image_header based) format is detected appropriatelegacy specific handling is invoked. For the new (FIT based) format uImagesdual boot framework has a minial support, that will only print out acorresponding debug messages. Implementation of the FIT specific handling willbe added in following patches.Signed-off-by: Marian Balakowicz <m8@semihalf.com>
[new uImage] Define a API for image handling operations- Add inline helper macros for basic header processing- Move common non inline code common/image.c- Replace direct header access with the AP
[new uImage] Define a API for image handling operations- Add inline helper macros for basic header processing- Move common non inline code common/image.c- Replace direct header access with the API routines- Rename IH_CPU_* to IH_ARCH_*Signed-off-by: Marian Balakowicz <m8@semihalf.com>
board/[q-z]*: Remove obsolete references to CONFIG_COMMANDSSigned-off-by: Jon Loeliger <jdl@freescale.com>
board/[k-z]*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).This is a compatibility step that allows both the older formand the new form to co-exist for a while until the older canbe r
board/[k-z]*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).This is a compatibility step that allows both the older formand the new form to co-exist for a while until the older canbe 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>
Change all '$(...)' variable references into '${...}'which makes the environment compatible with the hush shell.WARNING: Support for the old '$(...)' syntax will bediscontinued in a later version.
Cleanup for GCC-4.x
Patch by Kenneth Johansson, 30 Jun 2003:get rid of MK_CMD_ENTRY macro; update doc/README.command
* Code cleanup: - remove trailing white space, trailing empty lines, C++ comments, etc. - split cmd_boot.c (separate cmd_bdinfo.c and cmd_load.c)* Patches by Kenneth Johansson, 25 Jun 2003: -
* Code cleanup: - remove trailing white space, trailing empty lines, C++ comments, etc. - split cmd_boot.c (separate cmd_bdinfo.c and cmd_load.c)* Patches by Kenneth Johansson, 25 Jun 2003: - major rework of command structure (work done mostly by Michal Cendrowski and Joakim Kristiansen)
Initial revision
12