diff options
| author | Detlev Zundel <dzu@denx.de> | 2007-05-23 19:02:41 +0200 | 
|---|---|---|
| committer | Detlev Zundel <dzu@denx.de> | 2007-06-12 14:23:00 +0200 | 
| commit | 9912121f7ed804ea58fd62f3f230b5dcfc357d88 (patch) | |
| tree | 9ea50de6c23197fa829131701c329fe1345bb285 /common/cmd_misc.c | |
| parent | 5afb202093f6a001797db92cf695b93a70ea9ab4 (diff) | |
| download | olio-uboot-2014.01-9912121f7ed804ea58fd62f3f230b5dcfc357d88.tar.xz olio-uboot-2014.01-9912121f7ed804ea58fd62f3f230b5dcfc357d88.zip | |
Change 'repeatable' attribute of some commands to sensible values.
Most prominently this changes 'erase' to be non-repeatable.
Signed-off-by: Detlev Zundel <dzu@denx.de>
Diffstat (limited to 'common/cmd_misc.c')
| -rw-r--r-- | common/cmd_misc.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/common/cmd_misc.c b/common/cmd_misc.c index 67ee9e8a8..a99222d3e 100644 --- a/common/cmd_misc.c +++ b/common/cmd_misc.c @@ -63,7 +63,7 @@ U_BOOT_CMD(  #endif  /* CONFIG_COMMANDS & CFG_CMD_IRQ */  U_BOOT_CMD( -	sleep ,    2,    2,     do_sleep, +	sleep ,    2,    1,     do_sleep,  	"sleep   - delay execution for some time\n",  	"N\n"  	"    - delay execution for N seconds (N is _decimal_ !!!)\n" |