Command usage cleanup

Remove command name from all command "usage" fields and update
common/command.c to display "name - usage" instead of
just "usage". Also remove newlines from command usage fields.

Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
This commit is contained in:
Peter Tyser 2009-01-27 18:03:12 -06:00 committed by Wolfgang Denk
parent 79621bc10b
commit 2fb2604d5c
163 changed files with 361 additions and 352 deletions

3
README
View file

@ -2045,6 +2045,9 @@ Configuration Settings:
- CONFIG_SYS_LONGHELP: Defined when you want long help messages included; - CONFIG_SYS_LONGHELP: Defined when you want long help messages included;
undefine this when you're short of memory. undefine this when you're short of memory.
- CONFIG_SYS_HELP_CMD_WIDTH: Defined when you want to override the default
width of the commands listed in the 'help' command output.
- CONFIG_SYS_PROMPT: This is what U-Boot prints on the console to - CONFIG_SYS_PROMPT: This is what U-Boot prints on the console to
prompt for user input. prompt for user input.

View file

@ -155,7 +155,7 @@ int do_vcimage (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
vcimage, 2, 0, do_vcimage, vcimage, 2, 0, do_vcimage,
"vcimage - loads an image to Display\n", "loads an image to Display",
"vcimage addr\n" "vcimage addr\n"
); );

View file

@ -122,7 +122,7 @@ int do_boota (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
#if defined(CONFIG_AMIGAONEG3SE) && defined(CONFIG_CMD_BSP) #if defined(CONFIG_AMIGAONEG3SE) && defined(CONFIG_CMD_BSP)
U_BOOT_CMD( U_BOOT_CMD(
boota, 3, 1, do_boota, boota, 3, 1, do_boota,
"boota - boot an Amiga kernel\n", "boot an Amiga kernel",
"address disk" "address disk"
); );
#endif /* _CMD_BOOTA_H */ #endif /* _CMD_BOOTA_H */

View file

@ -10,7 +10,7 @@ int do_menu( cmd_tbl_t *cmdtp, /*bd_t *bd,*/ int flag, int argc, char *argv[] )
#if defined(CONFIG_AMIGAONEG3SE) && defined(CONFIG_CMD_BSP) #if defined(CONFIG_AMIGAONEG3SE) && defined(CONFIG_CMD_BSP)
U_BOOT_CMD( U_BOOT_CMD(
menu, 1, 1, do_menu, menu, 1, 1, do_menu,
"menu - display BIOS setup menu\n", "display BIOS setup menu",
"" ""
); );
#endif #endif

View file

@ -101,7 +101,7 @@ int ads5121diu_init_show_bmp(cmd_tbl_t *cmdtp,
U_BOOT_CMD( U_BOOT_CMD(
diufb, CONFIG_SYS_MAXARGS, 1, ads5121diu_init_show_bmp, diufb, CONFIG_SYS_MAXARGS, 1, ads5121diu_init_show_bmp,
"diufb - Init or Display BMP file\n", "Init or Display BMP file",
"init\n - initialize DIU\n" "init\n - initialize DIU\n"
"addr\n - display bmp at address 'addr'\n" "addr\n - display bmp at address 'addr'\n"
); );

View file

@ -96,6 +96,6 @@ static int do_bootstrap(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
bootstrap, 3, 0, do_bootstrap, bootstrap, 3, 0, do_bootstrap,
"bootstrap - program the I2C bootstrap EEPROM\n", "program the I2C bootstrap EEPROM",
"<cpu-freq> <nor|nand> - program the I2C bootstrap EEPROM\n" "<cpu-freq> <nor|nand> - program the I2C bootstrap EEPROM\n"
); );

View file

@ -190,6 +190,6 @@ static int do_bootstrap(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
bootstrap, 2, 0, do_bootstrap, bootstrap, 2, 0, do_bootstrap,
"bootstrap - program the I2C bootstrap EEPROM\n", "program the I2C bootstrap EEPROM",
"<nand|nor> - strap to boot from NAND or NOR flash\n" "<nand|nor> - strap to boot from NAND or NOR flash\n"
); );

View file

@ -213,6 +213,6 @@ static int do_bootstrap(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
bootstrap, 3, 1, do_bootstrap, bootstrap, 3, 1, do_bootstrap,
"bootstrap - program the serial device strap\n", "program the serial device strap",
"wrclk [prom0|prom1] - program the serial device strap\n" "wrclk [prom0|prom1] - program the serial device strap\n"
); );

View file

@ -237,7 +237,7 @@ ret:
U_BOOT_CMD( U_BOOT_CMD(
pllalter, CONFIG_SYS_MAXARGS, 1, do_pll_alter, pllalter, CONFIG_SYS_MAXARGS, 1, do_pll_alter,
"pllalter- change pll frequence \n", "change pll frequence",
"pllalter <selection> - change pll frequence \n\n\ "pllalter <selection> - change pll frequence \n\n\
** New freq take effect after reset. ** \n\ ** New freq take effect after reset. ** \n\
----------------------------------------------\n\ ----------------------------------------------\n\

View file

@ -329,7 +329,7 @@ int do_l2cache( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[] )
U_BOOT_CMD( U_BOOT_CMD(
l2cache, 2, 1, do_l2cache, l2cache, 2, 1, do_l2cache,
"l2cache - enable or disable L2 cache\n", "enable or disable L2 cache",
"[on, off]\n" "[on, off]\n"
" - enable or disable L2 cache\n" " - enable or disable L2 cache\n"
); );

View file

@ -237,7 +237,7 @@ ret:
U_BOOT_CMD( U_BOOT_CMD(
pllalter, CONFIG_SYS_MAXARGS, 1, do_pll_alter, pllalter, CONFIG_SYS_MAXARGS, 1, do_pll_alter,
"pllalter- change pll frequence \n", "change pll frequence",
"pllalter <selection> - change pll frequence \n\n\ "pllalter <selection> - change pll frequence \n\n\
** New freq take effect after reset. ** \n\ ** New freq take effect after reset. ** \n\
----------------------------------------------\n\ ----------------------------------------------\n\

View file

@ -226,6 +226,6 @@ static int do_bootstrap(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
bootstrap, 2, 0, do_bootstrap, bootstrap, 2, 0, do_bootstrap,
"bootstrap - program the I2C bootstrap EEPROM\n", "program the I2C bootstrap EEPROM",
"<nand|nor> - strap to boot from NAND or NOR flash\n" "<nand|nor> - strap to boot from NAND or NOR flash\n"
); );

View file

@ -232,25 +232,25 @@ static int do_lcd_cur (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
lcd_cls, 1, 1, do_lcd_clear, lcd_cls, 1, 1, do_lcd_clear,
"lcd_cls - lcd clear display\n", "lcd clear display",
NULL NULL
); );
U_BOOT_CMD( U_BOOT_CMD(
lcd_puts, 2, 1, do_lcd_puts, lcd_puts, 2, 1, do_lcd_puts,
"lcd_puts - display string on lcd\n", "display string on lcd",
"<string> - <string> to be displayed\n" "<string> - <string> to be displayed\n"
); );
U_BOOT_CMD( U_BOOT_CMD(
lcd_putc, 2, 1, do_lcd_putc, lcd_putc, 2, 1, do_lcd_putc,
"lcd_putc - display char on lcd\n", "display char on lcd",
"<char> - <char> to be displayed\n" "<char> - <char> to be displayed\n"
); );
U_BOOT_CMD( U_BOOT_CMD(
lcd_cur, 3, 1, do_lcd_cur, lcd_cur, 3, 1, do_lcd_cur,
"lcd_cur - shift cursor on lcd\n", "shift cursor on lcd",
"<count> <dir> - shift cursor on lcd <count> times, direction is <dir> \n" "<count> <dir> - shift cursor on lcd <count> times, direction is <dir> \n"
" <count> - 0..31\n" " <count> - 0..31\n"
" <dir> - 0=backward 1=forward\n" " <dir> - 0=backward 1=forward\n"

View file

@ -93,7 +93,7 @@ static int do_sw_stat(cmd_tbl_t* cmd_tp, int flags, int argc, char *argv[])
U_BOOT_CMD ( U_BOOT_CMD (
sw2_stat, 1, 1, do_sw_stat, sw2_stat, 1, 1, do_sw_stat,
"sw2_stat - show status of switch 2\n", "show status of switch 2",
NULL NULL
); );
@ -132,7 +132,7 @@ static int do_led_ctl(cmd_tbl_t* cmd_tp, int flags, int argc, char *argv[])
U_BOOT_CMD ( U_BOOT_CMD (
led_ctl, 3, 1, do_led_ctl, led_ctl, 3, 1, do_led_ctl,
"led_ctl - make led 1 or 2 on or off\n", "make led 1 or 2 on or off",
"<led_no> <on/off> - make led <led_no> on/off,\n" "<led_no> <on/off> - make led <led_no> on/off,\n"
"\tled_no is 1 or 2\t" "\tled_no is 1 or 2\t"
); );

View file

@ -127,6 +127,6 @@ static int update_boot_eeprom(cmd_tbl_t* cmdtp, int flag, int argc, char *argv[]
U_BOOT_CMD ( U_BOOT_CMD (
update_boot_eeprom, 1, 1, update_boot_eeprom, update_boot_eeprom, 1, 1, update_boot_eeprom,
"update_boot_eeprom - update boot eeprom content\n", "update boot eeprom content",
NULL NULL
); );

View file

@ -254,16 +254,16 @@ static int do_lcd_cur(cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
return 0; return 0;
} }
U_BOOT_CMD(lcd_test, 1, 1, do_lcd_test, "lcd_test - lcd test display\n", NULL); U_BOOT_CMD(lcd_test, 1, 1, do_lcd_test, "lcd test display", NULL);
U_BOOT_CMD(lcd_cls, 1, 1, do_lcd_clear, "lcd_cls - lcd clear display\n", NULL); U_BOOT_CMD(lcd_cls, 1, 1, do_lcd_clear, "lcd clear display", NULL);
U_BOOT_CMD(lcd_puts, 2, 1, do_lcd_puts, U_BOOT_CMD(lcd_puts, 2, 1, do_lcd_puts,
"lcd_puts - display string on lcd\n", "display string on lcd",
"<string> - <string> to be displayed\n"); "<string> - <string> to be displayed\n");
U_BOOT_CMD(lcd_putc, 2, 1, do_lcd_putc, U_BOOT_CMD(lcd_putc, 2, 1, do_lcd_putc,
"lcd_putc - display char on lcd\n", "display char on lcd",
"<char> - <char> to be displayed\n"); "<char> - <char> to be displayed\n");
U_BOOT_CMD(lcd_cur, 3, 1, do_lcd_cur, U_BOOT_CMD(lcd_cur, 3, 1, do_lcd_cur,
"lcd_cur - shift cursor on lcd\n", "shift cursor on lcd",
"<count> <dir>- shift cursor on lcd <count> times, direction is <dir> \n" "<count> <dir>- shift cursor on lcd <count> times, direction is <dir> \n"
" <count> - 0~31\n" " <dir> - 0,backward; 1, forward\n"); " <count> - 0~31\n" " <dir> - 0,backward; 1, forward\n");
@ -373,8 +373,8 @@ static int do_led_test_on(cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD(ledon, 1, 1, do_led_test_on, U_BOOT_CMD(ledon, 1, 1, do_led_test_on,
"ledon - led test light on\n", NULL); "led test light on", NULL);
U_BOOT_CMD(ledoff, 1, 1, do_led_test_off, U_BOOT_CMD(ledoff, 1, 1, do_led_test_off,
"ledoff - led test light off\n", NULL); "led test light off", NULL);
#endif #endif

View file

@ -168,7 +168,7 @@ int do_show_xbridge_info(cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD(xbriinfo, 1, 1, do_show_xbridge_info, U_BOOT_CMD(xbriinfo, 1, 1, do_show_xbridge_info,
"xbriinfo - Show PCIX bridge info\n", NULL); "Show PCIX bridge info", NULL);
#define TAISHAN_PCI_DEV_ID0 0x800 #define TAISHAN_PCI_DEV_ID0 0x800
#define TAISHAN_PCI_DEV_ID1 0x1000 #define TAISHAN_PCI_DEV_ID1 0x1000
@ -222,7 +222,7 @@ int do_show_pcix_device_info(cmd_tbl_t * cmdtp, int flag, int argc,
} }
U_BOOT_CMD(xdevinfo, 1, 1, do_show_pcix_device_info, U_BOOT_CMD(xdevinfo, 1, 1, do_show_pcix_device_info,
"xdevinfo - Show PCIX Device info\n", NULL); "Show PCIX Device info", NULL);
extern void show_reset_reg(void); extern void show_reset_reg(void);
@ -233,4 +233,4 @@ int do_show_reset_reg_info(cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD(resetinfo, 1, 1, do_show_reset_reg_info, U_BOOT_CMD(resetinfo, 1, 1, do_show_reset_reg_info,
"resetinfo - Show Reset REG info\n", NULL); "Show Reset REG info", NULL);

View file

@ -74,5 +74,5 @@ int do_update_boot_eeprom(cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD(update_boot_eeprom, 1, 1, do_update_boot_eeprom, U_BOOT_CMD(update_boot_eeprom, 1, 1, do_update_boot_eeprom,
"update_boot_eeprom - update bootstrap eeprom content\n", NULL); "update bootstrap eeprom content", NULL);
#endif #endif

View file

@ -281,6 +281,6 @@ static int setBootStrapClock(cmd_tbl_t *cmdtp, int incrflag, int flag,
U_BOOT_CMD( U_BOOT_CMD(
evb440spe, 3, 1, do_evb440spe, evb440spe, 3, 1, do_evb440spe,
"evb440spe - program the serial device strap\n", "program the serial device strap",
"wrclk [prom0|prom1] - program the serial device strap\n" "wrclk [prom0|prom1] - program the serial device strap\n"
); );

View file

@ -659,7 +659,7 @@ done:
} }
U_BOOT_CMD (temp, 6, 0, do_temp_sensor, U_BOOT_CMD (temp, 6, 0, do_temp_sensor,
"temp - interact with the temperature sensor\n", "interact with the temperature sensor",
"temp [s]\n" "temp [s]\n"
" - Show status.\n" " - Show status.\n"
"temp l LOW [HIGH] [THERM]\n" "temp l LOW [HIGH] [THERM]\n"
@ -674,28 +674,28 @@ U_BOOT_CMD (temp, 6, 0, do_temp_sensor,
#if 0 #if 0
U_BOOT_CMD (loadace, 2, 0, do_loadace, U_BOOT_CMD (loadace, 2, 0, do_loadace,
"loadace - load fpga configuration from System ACE compact flash\n", "load fpga configuration from System ACE compact flash",
"N\n" "N\n"
" - Load configuration N (0-7) from System ACE compact flash\n" " - Load configuration N (0-7) from System ACE compact flash\n"
"loadace\n" " - loads default configuration\n"); "loadace\n" " - loads default configuration\n");
#endif #endif
U_BOOT_CMD (swconfig, 2, 0, do_swconfigbyte, U_BOOT_CMD (swconfig, 2, 0, do_swconfigbyte,
"swconfig- display or modify the software configuration byte\n", "display or modify the software configuration byte",
"N [ADDRESS]\n" "N [ADDRESS]\n"
" - set software configuration byte to N, optionally use ADDRESS as\n" " - set software configuration byte to N, optionally use ADDRESS as\n"
" location of buffer for flash copy\n" " location of buffer for flash copy\n"
"swconfig\n" " - display software configuration byte\n"); "swconfig\n" " - display software configuration byte\n");
U_BOOT_CMD (pause, 2, 0, do_pause, U_BOOT_CMD (pause, 2, 0, do_pause,
"pause - sleep processor until any key is pressed with poll time of N seconds\n", "sleep processor until any key is pressed with poll time of N seconds",
"N\n" "N\n"
" - sleep processor until any key is pressed with poll time of N seconds\n" " - sleep processor until any key is pressed with poll time of N seconds\n"
"pause\n" "pause\n"
" - sleep processor until any key is pressed with poll time of 1 second\n"); " - sleep processor until any key is pressed with poll time of 1 second\n");
U_BOOT_CMD (swrecon, 1, 0, do_swreconfig, U_BOOT_CMD (swrecon, 1, 0, do_swreconfig,
"swrecon - trigger a board reconfigure to the software selected configuration\n", "trigger a board reconfigure to the software selected configuration",
"\n" "\n"
" - trigger a board reconfigure to the software selected configuration\n"); " - trigger a board reconfigure to the software selected configuration\n");

View file

@ -478,7 +478,7 @@ int do_eeprom (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD (eeprom, 4, 0, do_eeprom, U_BOOT_CMD (eeprom, 4, 0, do_eeprom,
"eeprom - read/write/copy to/from the PowerSpan II eeprom\n", "read/write/copy to/from the PowerSpan II eeprom",
"eeprom r OFF [NUM]\n" "eeprom r OFF [NUM]\n"
" - read NUM words starting at OFF\n" " - read NUM words starting at OFF\n"
"eeprom w OFF VAL\n" "eeprom w OFF VAL\n"

View file

@ -306,19 +306,19 @@ int barcobcd_boot_image (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD ( U_BOOT_CMD (
try_working, 1, 1, barcobcd_boot_image, try_working, 1, 1, barcobcd_boot_image,
" try_working - check flash value and boot the appropriate image\n", "check flash value and boot the appropriate image",
"\n" "\n"
); );
U_BOOT_CMD ( U_BOOT_CMD (
boot_working, 1, 1, barcobcd_boot_image, boot_working, 1, 1, barcobcd_boot_image,
" boot_working - check flash value and boot the appropriate image\n", "check flash value and boot the appropriate image",
"\n" "\n"
); );
U_BOOT_CMD ( U_BOOT_CMD (
boot_default, 1, 1, barcobcd_boot_image, boot_default, 1, 1, barcobcd_boot_image,
" boot_default - check flash value and boot the appropriate image\n", "check flash value and boot the appropriate image",
"\n" "\n"
); );
/* /*

View file

@ -194,7 +194,7 @@ int cmd_dip (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD (dip, 1, 1, cmd_dip, U_BOOT_CMD (dip, 1, 1, cmd_dip,
"dip - read dip switch and config inputs\n", "read dip switch and config inputs",
"\n" "\n"
" - prints the state of the dip switch and/or\n" " - prints the state of the dip switch and/or\n"
" external configuration inputs as hex value.\n" " external configuration inputs as hex value.\n"
@ -228,7 +228,7 @@ static int cmd_buz (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD (buz, 2, 1, cmd_buz, U_BOOT_CMD (buz, 2, 1, cmd_buz,
"buz - turns buzzer on/off\n", "turns buzzer on/off",
"\n" "buz <on/off>\n" " - turns the buzzer on or off\n"); "\n" "buz <on/off>\n" " - turns the buzzer on or off\n");
#endif /* CONFIG_BC3450_BUZZER */ #endif /* CONFIG_BC3450_BUZZER */
@ -322,7 +322,7 @@ static int cmd_fp (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD (fp, 3, 1, cmd_fp, U_BOOT_CMD (fp, 3, 1, cmd_fp,
"fp - front panes access functions\n", "front panes access functions",
"\n" "\n"
"fp bl <on/off>\n" "fp bl <on/off>\n"
" - turns the CCFL backlight of the display on/off\n" " - turns the CCFL backlight of the display on/off\n"
@ -523,7 +523,7 @@ static int cmd_temp (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD (temp, 3, 1, cmd_temp, U_BOOT_CMD (temp, 3, 1, cmd_temp,
"temp - print current temperature\n", "print current temperature",
"\n" "temp\n" " - print current temperature\n"); "\n" "temp\n" " - print current temperature\n");
#ifdef CONFIG_BC3450_CAN #ifdef CONFIG_BC3450_CAN
@ -816,7 +816,7 @@ int cmd_test (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
return 1; return 1;
} }
U_BOOT_CMD (test, 2, 1, cmd_test, "test - unit test routines\n", "\n" U_BOOT_CMD (test, 2, 1, cmd_test, "unit test routines", "\n"
#ifdef CONFIG_BC3450_CAN #ifdef CONFIG_BC3450_CAN
"test can\n" "test can\n"
" - connect CAN1 (X8) with CAN2 (X9) for this test\n" " - connect CAN1 (X8) with CAN2 (X9) for this test\n"

View file

@ -196,6 +196,6 @@ void show_cmd_usage()
/* Register information for u-boot to find this command */ /* Register information for u-boot to find this command */
U_BOOT_CMD(led, 3, 1, do_bf537led, U_BOOT_CMD(led, 3, 1, do_bf537led,
"led- Control BF537 stamp LEDs\n", USAGE_LONG); "Control BF537 stamp LEDs", USAGE_LONG);
#endif #endif

View file

@ -435,7 +435,7 @@ int cmd_fkt(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
fkt, 4, 1, cmd_fkt, fkt, 4, 1, cmd_fkt,
"fkt - Function test routines\n", "Function test routines",
"i2c\n" "i2c\n"
" - Test I2C communication\n" " - Test I2C communication\n"
"fkt led\n" "fkt led\n"

View file

@ -259,7 +259,7 @@ int do_kbd (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
kbd, 1, 1, do_kbd, kbd, 1, 1, do_kbd,
"kbd - read keyboard status\n", "read keyboard status",
NULL NULL
); );

View file

@ -247,7 +247,7 @@ int do_digtest(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD( U_BOOT_CMD(
digtest, 3, 1, do_digtest, digtest, 3, 1, do_digtest,
"digtest - Test digital in-/output\n", "Test digital in-/output",
NULL NULL
); );
@ -341,7 +341,7 @@ int do_anatest(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD( U_BOOT_CMD(
anatest, 2, 1, do_anatest, anatest, 2, 1, do_anatest,
"anatest - Test analog in-/output\n", "Test analog in-/output",
NULL NULL
); );
@ -408,7 +408,7 @@ int do_inctest(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD( U_BOOT_CMD(
inctest, 3, 1, do_inctest, inctest, 3, 1, do_inctest,
"inctest - Test incremental encoder inputs\n", "Test incremental encoder inputs",
NULL NULL
); );
#endif #endif

View file

@ -198,7 +198,7 @@ int do_eep_wren (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD(eepwren, 2, 0, do_eep_wren, U_BOOT_CMD(eepwren, 2, 0, do_eep_wren,
"eepwren - Enable / disable / query EEPROM write access\n", "Enable / disable / query EEPROM write access",
NULL); NULL);
#endif /* #if defined(CONFIG_SYS_EEPROM_WREN) */ #endif /* #if defined(CONFIG_SYS_EEPROM_WREN) */

View file

@ -550,7 +550,7 @@ int auto_update(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD( U_BOOT_CMD(
autoupd, 1, 1, auto_update, autoupd, 1, 1, auto_update,
"autoupd - Automatically update images\n", "Automatically update images",
NULL NULL
); );
#endif /* CONFIG_AUTO_UPDATE */ #endif /* CONFIG_AUTO_UPDATE */

View file

@ -123,7 +123,7 @@ int do_loadpci(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
loadpci, 1, 1, do_loadpci, loadpci, 1, 1, do_loadpci,
"loadpci - Wait for pci bootcmd and boot it\n", "Wait for pci bootcmd and boot it",
NULL NULL
); );

View file

@ -372,6 +372,6 @@ int do_esdbmp(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
esdbmp, 2, 1, do_esdbmp, esdbmp, 2, 1, do_esdbmp,
"esdbmp - display BMP image\n", "display BMP image",
"<imageAddr> - display image\n" "<imageAddr> - display image\n"
); );

View file

@ -1859,6 +1859,6 @@ int do_cpld(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD( U_BOOT_CMD(
cpld, 1, 1, do_cpld, cpld, 1, 1, do_cpld,
"cpld - Program onboard CPLD\n", "Program onboard CPLD",
NULL NULL
); );

View file

@ -176,7 +176,7 @@ int do_eep_wren (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
eepwren, 2, 0, do_eep_wren, eepwren, 2, 0, do_eep_wren,
"eepwren - Enable / disable / query EEPROM write access\n", "Enable / disable / query EEPROM write access",
NULL NULL
); );
#endif /* #if defined(CONFIG_SYS_EEPROM_WREN) */ #endif /* #if defined(CONFIG_SYS_EEPROM_WREN) */

View file

@ -689,7 +689,7 @@ int do_onewire(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD( U_BOOT_CMD(
onewire, 1, 1, do_onewire, onewire, 1, 1, do_onewire,
"onewire - Read 1-write ID\n", "Read 1-write ID",
NULL NULL
); );
@ -750,7 +750,7 @@ int do_get_bpip(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD( U_BOOT_CMD(
getbpip, 1, 1, do_get_bpip, getbpip, 1, 1, do_get_bpip,
"getbpip - Update IP-Address with Backplane IP-Address\n", "Update IP-Address with Backplane IP-Address",
NULL NULL
); );
@ -786,7 +786,7 @@ int do_set_bpip(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD( U_BOOT_CMD(
setbpip, 2, 1, do_set_bpip, setbpip, 2, 1, do_set_bpip,
"setbpip - Write Backplane IP-Address\n", "Write Backplane IP-Address",
NULL NULL
); );

View file

@ -294,5 +294,5 @@ int do_writepci(cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD(writepci, 3, 1, do_writepci, U_BOOT_CMD(writepci, 3, 1, do_writepci,
"writepci- Write some data to pcibus\n", "Write some data to pcibus",
"<addr> <size>\n" " - Write some data to pcibus.\n"); "<addr> <size>\n" " - Write some data to pcibus.\n");

View file

@ -993,6 +993,6 @@ int do_show_config(cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
show_config, 1, 1, do_show_config, show_config, 1, 1, do_show_config,
"show_config - Show Marvell strapping register\n", "Show Marvell strapping register",
"Show Marvell strapping register (ResetSampleLow ResetSampleHigh)\n" "Show Marvell strapping register (ResetSampleLow ResetSampleHigh)\n"
); );

View file

@ -227,7 +227,7 @@ int do_pci9054 (cmd_tbl_t * cmdtp, int flag, int argc,
U_BOOT_CMD( U_BOOT_CMD(
pci9054, 3, 1, do_pci9054, pci9054, 3, 1, do_pci9054,
"pci9054 - PLX PCI9054 EEPROM access\n", "PLX PCI9054 EEPROM access",
"pci9054 info - print EEPROM values\n" "pci9054 info - print EEPROM values\n"
"pci9054 update - updates EEPROM with default values\n" "pci9054 update - updates EEPROM with default values\n"
); );

View file

@ -606,7 +606,7 @@ int do_dcf77(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD( U_BOOT_CMD(
dcf77, 1, 1, do_dcf77, dcf77, 1, 1, do_dcf77,
"dcf77 - Check DCF77 receiver\n", "Check DCF77 receiver",
NULL NULL
); );
@ -656,7 +656,7 @@ int do_hubinit(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD( U_BOOT_CMD(
hubinit, 1, 1, do_hubinit, hubinit, 1, 1, do_hubinit,
"hubinit - Initialize USB hub\n", "Initialize USB hub",
NULL NULL
); );
#endif /* CONFIG_I2C_MULTI_BUS */ #endif /* CONFIG_I2C_MULTI_BUS */
@ -789,7 +789,7 @@ int do_setup_boot_eeprom(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD( U_BOOT_CMD(
sbe, 2, 0, do_setup_boot_eeprom, sbe, 2, 0, do_setup_boot_eeprom,
"sbe - setup boot eeprom\n", "setup boot eeprom",
NULL NULL
); );
@ -863,7 +863,7 @@ int do_eep_wren (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD(eepwren, 2, 0, do_eep_wren, U_BOOT_CMD(eepwren, 2, 0, do_eep_wren,
"eepwren - Enable / disable / query EEPROM write access\n", "Enable / disable / query EEPROM write access",
NULL); NULL);
#endif /* #if defined(CONFIG_SYS_EEPROM_WREN) */ #endif /* #if defined(CONFIG_SYS_EEPROM_WREN) */
@ -914,7 +914,7 @@ int do_waitpwrirq(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD( U_BOOT_CMD(
wpi, 1, 1, do_waitpwrirq, wpi, 1, 1, do_waitpwrirq,
"wpi - Wait for power change interrupt\n", "Wait for power change interrupt",
NULL NULL
); );
@ -959,7 +959,7 @@ int do_dviinit(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD( U_BOOT_CMD(
dviinit, 1, 1, do_dviinit, dviinit, 1, 1, do_dviinit,
"dviinit - Initialize DVI Panellink transmitter\n", "Initialize DVI Panellink transmitter",
NULL NULL
); );
@ -999,7 +999,7 @@ int do_time(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD( U_BOOT_CMD(
time, CONFIG_SYS_MAXARGS, 1, do_time, time, CONFIG_SYS_MAXARGS, 1, do_time,
"time - run command and output execution time\n", "run command and output execution time",
NULL NULL
); );
@ -1049,6 +1049,6 @@ int do_gfxdemo(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD( U_BOOT_CMD(
gfxdemo, CONFIG_SYS_MAXARGS, 1, do_gfxdemo, gfxdemo, CONFIG_SYS_MAXARGS, 1, do_gfxdemo,
"gfxdemo - demo\n", "demo",
NULL NULL
); );

View file

@ -733,7 +733,7 @@ int do_eep_wren (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD(eepwren, 2, 0, do_eep_wren, U_BOOT_CMD(eepwren, 2, 0, do_eep_wren,
"eepwren - Enable / disable / query EEPROM write access\n", "Enable / disable / query EEPROM write access",
NULL); NULL);
#endif /* #if defined(CONFIG_SYS_EEPROM_WREN) */ #endif /* #if defined(CONFIG_SYS_EEPROM_WREN) */

View file

@ -54,7 +54,7 @@ int do_setdevice(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD( U_BOOT_CMD(
setdevice, 1, 1, do_setdevice, setdevice, 1, 1, do_setdevice,
"setdevice - Set device number on pci adapter boards\n", "Set device number on pci adapter boards",
NULL NULL
); );
@ -77,7 +77,7 @@ int do_getdevice(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD( U_BOOT_CMD(
getdevice, 1, 1, do_getdevice, getdevice, 1, 1, do_getdevice,
"getdevice - Get device number and set slot env variable\n", "Get device number and set slot env variable",
NULL NULL
); );

View file

@ -108,7 +108,7 @@ int do_loadpci(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD( U_BOOT_CMD(
loadpci, 1, 1, do_loadpci, loadpci, 1, 1, do_loadpci,
"loadpci - Wait for pci-image and boot it\n", "Wait for pci-image and boot it",
NULL NULL
); );
#endif #endif

View file

@ -375,7 +375,7 @@ int do_wpeeprom(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
wpeeprom, 2, 1, do_wpeeprom, wpeeprom, 2, 1, do_wpeeprom,
"wpeeprom - Check/Enable/Disable I2C EEPROM write protection\n", "Check/Enable/Disable I2C EEPROM write protection",
"wpeeprom\n" "wpeeprom\n"
" - check I2C EEPROM write protection state\n" " - check I2C EEPROM write protection state\n"
"wpeeprom 1\n" "wpeeprom 1\n"

View file

@ -294,7 +294,7 @@ int do_poweroff(cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
return (0); return (0);
} }
U_BOOT_CMD(poweroff, 1, 1, do_poweroff, "poweroff- Switch off power\n", NULL); U_BOOT_CMD(poweroff, 1, 1, do_poweroff, "Switch off power", NULL);
int phypower(int flag) int phypower(int flag)
{ {
@ -338,7 +338,7 @@ int do_phypower(cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD(phypower, 2, 2, do_phypower, U_BOOT_CMD(phypower, 2, 2, do_phypower,
"phypower- Switch power of ethernet phy\n", NULL); "Switch power of ethernet phy", NULL);
int do_writepci(cmd_tbl_t * cmdtp, int flag, int argc, char *argv[]) int do_writepci(cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
{ {
@ -369,5 +369,5 @@ int do_writepci(cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD(writepci, 3, 1, do_writepci, U_BOOT_CMD(writepci, 3, 1, do_writepci,
"writepci- Write some data to pcibus\n", "Write some data to pcibus",
"<addr> <size>\n" " - Write some data to pcibus.\n"); "<addr> <size>\n" " - Write some data to pcibus.\n");

View file

@ -333,6 +333,6 @@ int do_eep_wren (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD(eepwren, 2, 0, do_eep_wren, U_BOOT_CMD(eepwren, 2, 0, do_eep_wren,
"eepwren - Enable / disable / query EEPROM write access\n", "Enable / disable / query EEPROM write access",
NULL); NULL);
#endif /* #if defined(CONFIG_SYS_EEPROM_WREN) */ #endif /* #if defined(CONFIG_SYS_EEPROM_WREN) */

View file

@ -203,6 +203,6 @@ int do_cantest(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD( U_BOOT_CMD(
cantest, 3, 1, do_cantest, cantest, 3, 1, do_cantest,
"cantest - Test CAN controller", "Test CAN controller",
NULL NULL
); );

View file

@ -98,7 +98,7 @@ int do_waithci(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD( U_BOOT_CMD(
waithci, 1, 1, do_waithci, waithci, 1, 1, do_waithci,
"waithci - Wait for host control interrupt\n", "Wait for host control interrupt",
NULL NULL
); );
@ -258,7 +258,7 @@ int do_fifo(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD( U_BOOT_CMD(
fifo, 5, 1, do_fifo, fifo, 5, 1, do_fifo,
"fifo - Fifo module operations\n", "Fifo module operations",
"wait\nfifo read\n" "wait\nfifo read\n"
"fifo write fifo(0..3) data [cnt=1]\n" "fifo write fifo(0..3) data [cnt=1]\n"
"fifo write address(>=4) data [cnt=1]\n" "fifo write address(>=4) data [cnt=1]\n"
@ -336,7 +336,7 @@ int do_setup_bootstrap_eeprom(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]
} }
U_BOOT_CMD( U_BOOT_CMD(
sbe, 4, 0, do_setup_bootstrap_eeprom, sbe, 4, 0, do_setup_bootstrap_eeprom,
"sbe - setup bootstrap eeprom\n", "setup bootstrap eeprom",
"<cpufreq:400|533|667> [<console-uart:0|1> [<bringup delay (0..20s)>]]" "<cpufreq:400|533|667> [<console-uart:0|1> [<bringup delay (0..20s)>]]"
); );
@ -399,7 +399,7 @@ int do_painit(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD( U_BOOT_CMD(
painit, 1, 1, do_painit, painit, 1, 1, do_painit,
"painit - prepare PciAccess system\n", "prepare PciAccess system",
NULL NULL
); );
#endif /* CONFIG_PRAM */ #endif /* CONFIG_PRAM */
@ -411,7 +411,7 @@ int do_selfreset(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD( U_BOOT_CMD(
selfreset, 1, 1, do_selfreset, selfreset, 1, 1, do_selfreset,
"selfreset- assert self-reset# signal\n", "assert self-reset# signal",
NULL NULL
); );
@ -448,7 +448,7 @@ int do_resetout(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD( U_BOOT_CMD(
resetout, 2, 1, do_resetout, resetout, 2, 1, do_resetout,
"resetout - assert PMC-RESETOUT# signal\n", "assert PMC-RESETOUT# signal",
NULL NULL
); );
@ -480,7 +480,7 @@ int do_inta(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD( U_BOOT_CMD(
inta, 2, 1, do_inta, inta, 2, 1, do_inta,
"inta - Assert/Deassert or query INTA# state in non-monarch mode\n", "Assert/Deassert or query INTA# state in non-monarch mode",
NULL NULL
); );
@ -513,7 +513,7 @@ int do_pmm(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD( U_BOOT_CMD(
pmm, 2, 1, do_pmm, pmm, 2, 1, do_pmm,
"pmm - Setup pmm[1] registers\n", "Setup pmm[1] registers",
"<pciaddr> (pciaddr will be aligned to 256MB)\n" "<pciaddr> (pciaddr will be aligned to 256MB)\n"
); );
@ -549,7 +549,7 @@ int do_eep_wren(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
return state; return state;
} }
U_BOOT_CMD(eepwren, 2, 0, do_eep_wren, U_BOOT_CMD(eepwren, 2, 0, do_eep_wren,
"eepwren - Enable / disable / query EEPROM write access\n", "Enable / disable / query EEPROM write access",
NULL); NULL);
#endif /* #if defined(CONFIG_SYS_EEPROM_WREN) */ #endif /* #if defined(CONFIG_SYS_EEPROM_WREN) */

View file

@ -248,7 +248,7 @@ int do_iploop(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD( U_BOOT_CMD(
iploop, 2, 1, do_iploop, iploop, 2, 1, do_iploop,
"iploop - iprobe loop <addr>\n", "iprobe loop <addr>",
NULL NULL
); );
@ -301,7 +301,7 @@ int do_codec(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD( U_BOOT_CMD(
codec, 1, 1, do_codec, codec, 1, 1, do_codec,
"codec - Enable codec\n", "Enable codec",
NULL NULL
); );
@ -334,7 +334,7 @@ int do_saa(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD( U_BOOT_CMD(
saa, 5, 1, do_saa, saa, 5, 1, do_saa,
"saa - Write to SAA1064 <addr> <instr> <cntrl> <data>\n", "Write to SAA1064 <addr> <instr> <cntrl> <data>",
NULL NULL
); );
@ -373,7 +373,7 @@ int do_iwrite(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD( U_BOOT_CMD(
iwrite, 6, 1, do_iwrite, iwrite, 6, 1, do_iwrite,
"iwrite - Write n bytes to I2C-device\n", "Write n bytes to I2C-device",
"addr cnt data0 ... datan\n" "addr cnt data0 ... datan\n"
); );
@ -405,7 +405,7 @@ int do_iread(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD( U_BOOT_CMD(
iread, 3, 1, do_iread, iread, 3, 1, do_iread,
"iread - Read from I2C <addr> <cnt>\n", "Read from I2C <addr> <cnt>",
NULL NULL
); );
@ -443,7 +443,7 @@ int do_ireadl(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD( U_BOOT_CMD(
ireadl, 2, 1, do_ireadl, ireadl, 2, 1, do_ireadl,
"ireadl - Read-loop from I2C <addr>\n", "Read-loop from I2C <addr>",
NULL NULL
); );
#endif #endif

View file

@ -392,6 +392,6 @@ int do_eep_wren (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD(eepwren, 2, 0, do_eep_wren, U_BOOT_CMD(eepwren, 2, 0, do_eep_wren,
"eepwren - Enable / disable / query EEPROM write access\n", "Enable / disable / query EEPROM write access",
NULL); NULL);
#endif /* #if defined(CONFIG_SYS_EEPROM_WREN) */ #endif /* #if defined(CONFIG_SYS_EEPROM_WREN) */

View file

@ -202,19 +202,19 @@ do_zuma_init_mbox (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
zinit, 1, 0, do_zuma_init_pbb, zinit, 1, 0, do_zuma_init_pbb,
"zinit - init zuma pbb\n", "init zuma pbb",
"\n" "\n"
" - init zuma pbb\n" " - init zuma pbb\n"
); );
U_BOOT_CMD( U_BOOT_CMD(
zdtest, 3, 1, do_zuma_test_dma, zdtest, 3, 1, do_zuma_test_dma,
"zdtest - run dma test\n", "run dma test",
"[cmd [count]]\n" "[cmd [count]]\n"
" - run dma cmd (w=0,v=1,cp=2,cmp=3,wi=4,vi=5), count bytes\n" " - run dma cmd (w=0,v=1,cp=2,cmp=3,wi=4,vi=5), count bytes\n"
); );
U_BOOT_CMD( U_BOOT_CMD(
zminit, 1, 0, do_zuma_init_mbox, zminit, 1, 0, do_zuma_init_mbox,
"zminit - init zuma mbox\n", "init zuma mbox",
"\n" "\n"
" - init zuma mbox\n" " - init zuma mbox\n"
); );

View file

@ -280,7 +280,7 @@ int pixis_disable_watchdog_cmd(cmd_tbl_t *cmdtp,
U_BOOT_CMD( U_BOOT_CMD(
diswd, 1, 0, pixis_disable_watchdog_cmd, diswd, 1, 0, pixis_disable_watchdog_cmd,
"diswd - Disable watchdog timer \n", "Disable watchdog timer",
NULL); NULL);
#ifdef CONFIG_PIXIS_SGMII_CMD #ifdef CONFIG_PIXIS_SGMII_CMD
@ -539,7 +539,7 @@ pixis_reset_cmd(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
pixis_reset, CONFIG_SYS_MAXARGS, 1, pixis_reset_cmd, pixis_reset, CONFIG_SYS_MAXARGS, 1, pixis_reset_cmd,
"pixis_reset - Reset the board using the FPGA sequencer\n", "Reset the board using the FPGA sequencer",
" pixis_reset\n" " pixis_reset\n"
" pixis_reset [altbank]\n" " pixis_reset [altbank]\n"
" pixis_reset altbank wd\n" " pixis_reset altbank wd\n"

View file

@ -138,7 +138,7 @@ int mpc8610diu_init_show_bmp(cmd_tbl_t *cmdtp,
U_BOOT_CMD( U_BOOT_CMD(
diufb, CONFIG_SYS_MAXARGS, 1, mpc8610diu_init_show_bmp, diufb, CONFIG_SYS_MAXARGS, 1, mpc8610diu_init_show_bmp,
"diufb - Init or Display BMP file\n", "Init or Display BMP file",
"init\n - initialize DIU\n" "init\n - initialize DIU\n"
"addr\n - display bmp at address 'addr'\n" "addr\n - display bmp at address 'addr'\n"
); );

View file

@ -185,7 +185,7 @@ int do_dumpebc(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD( U_BOOT_CMD(
dumpebc, 1, 1, do_dumpebc, dumpebc, 1, 1, do_dumpebc,
"dumpebc - Dump all EBC registers\n", "Dump all EBC registers",
NULL NULL
); );
@ -207,7 +207,7 @@ int do_dumpdcr(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD( U_BOOT_CMD(
dumpdcr, 1, 1, do_dumpdcr, dumpdcr, 1, 1, do_dumpdcr,
"dumpdcr - Dump all DCR registers\n", "Dump all DCR registers",
NULL NULL
); );
@ -271,7 +271,7 @@ int do_dumpspr(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD( U_BOOT_CMD(
dumpspr, 1, 1, do_dumpspr, dumpspr, 1, 1, do_dumpspr,
"dumpspr - Dump all SPR registers\n", "Dump all SPR registers",
NULL NULL
); );
#endif #endif

View file

@ -277,7 +277,7 @@ do_fpga (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD( U_BOOT_CMD(
fpga, 6, 1, do_fpga, fpga, 6, 1, do_fpga,
"fpga - FPGA sub-system\n", "FPGA sub-system",
"load [type] addr size\n" "load [type] addr size\n"
" - write the configuration data at memory address `addr',\n" " - write the configuration data at memory address `addr',\n"
" size `size' bytes, into the FPGA of type `type' (either\n" " size `size' bytes, into the FPGA of type `type' (either\n"
@ -336,7 +336,7 @@ do_eecl (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD( U_BOOT_CMD(
eeclear, 1, 0, do_eecl, eeclear, 1, 0, do_eecl,
"eeclear - Clear the eeprom on a Hymod board \n", "Clear the eeprom on a Hymod board",
"[type]\n" "[type]\n"
" - write zeroes into the EEPROM on the board of type `type'\n" " - write zeroes into the EEPROM on the board of type `type'\n"
" (`type' is either `main' or `mezz' - default `main')\n" " (`type' is either `main' or `mezz' - default `main')\n"

View file

@ -590,7 +590,7 @@ int hdlc_enet_stest(struct cmd_tbl_s *a, int b, int c, char **d)
} }
U_BOOT_CMD( U_BOOT_CMD(
stest, 1, 1, hdlc_enet_stest, stest, 1, 1, hdlc_enet_stest,
"stest - simple send test for hdlc_enet\n", "simple send test for hdlc_enet",
"no arguments\n" "no arguments\n"
); );
/* simple receive test routine */ /* simple receive test routine */
@ -612,7 +612,7 @@ int hdlc_enet_rtest(struct cmd_tbl_s *a, int b, int c, char **d)
} }
U_BOOT_CMD( U_BOOT_CMD(
rtest, 1, 1, hdlc_enet_rtest, rtest, 1, 1, hdlc_enet_rtest,
"rtest - simple receive test for hdlc_enet\n", "simple receive test for hdlc_enet",
"no arguments\n" "no arguments\n"
); );
#endif #endif

View file

@ -851,7 +851,7 @@ int do_pic (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD( U_BOOT_CMD(
pic, 4, 1, do_pic, pic, 4, 1, do_pic,
"pic - read and write PIC registers\n", "read and write PIC registers",
"read reg - read PIC register `reg'\n" "read reg - read PIC register `reg'\n"
"pic write reg val - write value `val' to PIC register `reg'\n" "pic write reg val - write value `val' to PIC register `reg'\n"
); );
@ -910,7 +910,7 @@ int do_kbd (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
kbd, 1, 1, do_kbd, kbd, 1, 1, do_kbd,
"kbd - read keyboard status\n", "read keyboard status",
NULL NULL
); );
@ -982,7 +982,7 @@ int do_lsb (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
lsb, 2, 1, do_lsb, lsb, 2, 1, do_lsb,
"lsb - check and set LSB switch\n", "check and set LSB switch",
"on - switch LSB on\n" "on - switch LSB on\n"
"lsb off - switch LSB off\n" "lsb off - switch LSB off\n"
"lsb - print current setting\n" "lsb - print current setting\n"

View file

@ -432,7 +432,7 @@ int do_kbd (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
kbd, 1, 1, do_kbd, kbd, 1, 1, do_kbd,
"kbd - read keyboard status\n", "read keyboard status",
NULL NULL
); );

View file

@ -486,7 +486,7 @@ int do_eeprom_wp(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
eepromwp, 2, 0, do_eeprom_wp, eepromwp, 2, 0, do_eeprom_wp,
"eepromwp- eeprom write protect off/on\n", "eeprom write protect off/on",
"<on|off> - enable (on) or disable (off) I2C EEPROM write protect\n" "<on|off> - enable (on) or disable (off) I2C EEPROM write protect\n"
); );

View file

@ -55,7 +55,7 @@ int do_mip405(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD( U_BOOT_CMD(
mip405, 8, 1, do_mip405, mip405, 8, 1, do_mip405,
"mip405 - MIP405 specific Cmds\n", "MIP405 specific Cmds",
"flash mem [SrcAddr] - updates U-Boot with image in memory\n" "flash mem [SrcAddr] - updates U-Boot with image in memory\n"
"mip405 flash mps - updates U-Boot with image from MPS\n" "mip405 flash mps - updates U-Boot with image from MPS\n"
"mip405 info - displays board information\n" "mip405 info - displays board information\n"

View file

@ -427,7 +427,7 @@ int do_pati(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
pati, 8, 1, do_pati, pati, 8, 1, do_pati,
"pati - PATI specific Cmds\n", "PATI specific Cmds",
"info - displays board information\n" "info - displays board information\n"
"pati pci - displays PCI registers\n" "pati pci - displays PCI registers\n"
"pati led <nr> <on> \n" "pati led <nr> <on> \n"

View file

@ -60,7 +60,7 @@ int do_pip405(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD( U_BOOT_CMD(
pip405, 6, 1, do_pip405, pip405, 6, 1, do_pip405,
"pip405 - PIP405 specific Cmds\n", "PIP405 specific Cmds",
"flash mem [SrcAddr] - updates U-Boot with image in memory\n" "flash mem [SrcAddr] - updates U-Boot with image in memory\n"
"pip405 flash floppy [SrcAddr] - updates U-Boot with image from floppy\n" "pip405 flash floppy [SrcAddr] - updates U-Boot with image from floppy\n"
"pip405 flash mps - updates U-Boot with image from MPS\n" "pip405 flash mps - updates U-Boot with image from MPS\n"

View file

@ -175,6 +175,6 @@ int do_vcma9(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
vcma9, 6, 1, do_vcma9, vcma9, 6, 1, do_vcma9,
"vcma9 - VCMA9 specific commands\n", "VCMA9 specific commands",
"flash mem [SrcAddr]\n - updates U-Boot with image in memory\n" "flash mem [SrcAddr]\n - updates U-Boot with image in memory\n"
); );

View file

@ -236,7 +236,7 @@ int do_wd (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
wd, 2, 1, do_wd, wd, 2, 1, do_wd,
"wd - check and set watchdog\n", "check and set watchdog",
"on - switch watchDog on\n" "on - switch watchDog on\n"
"wd off - switch watchdog off\n" "wd off - switch watchdog off\n"
"wd - print current status\n" "wd - print current status\n"

View file

@ -761,7 +761,7 @@ int do_led (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
led, 2, 1, do_led, led, 2, 1, do_led,
"led - set the DIAG-LED\n", "set the DIAG-LED",
"[bitmask] 0x01 = DIAG 1 on\n" "[bitmask] 0x01 = DIAG 1 on\n"
" 0x02 = DIAG 2 on\n" " 0x02 = DIAG 2 on\n"
" 0x04 = DIAG 3 on\n" " 0x04 = DIAG 3 on\n"
@ -823,7 +823,7 @@ int do_sha1 (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
sha1, 4, 1, do_sha1, sha1, 4, 1, do_sha1,
"sha1 - calculate the SHA1 Sum\n", "calculate the SHA1 Sum",
"address len [addr] calculate the SHA1 sum [save at addr]\n" "address len [addr] calculate the SHA1 sum [save at addr]\n"
" -p calculate the SHA1 sum from the U-Boot image in flash and print\n" " -p calculate the SHA1 sum from the U-Boot image in flash and print\n"
" -c check the U-Boot image in flash\n" " -c check the U-Boot image in flash\n"

View file

@ -53,7 +53,7 @@ int do_led (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD( U_BOOT_CMD(
led , 3, 1, do_led, led , 3, 1, do_led,
"led - set LED 0..11 on the PN62 board\n", "set LED 0..11 on the PN62 board",
"i fun\n" "i fun\n"
" - set 'i'th LED to function 'fun'\n" " - set 'i'th LED to function 'fun'\n"
); );
@ -174,7 +174,7 @@ int do_loadpci (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
loadpci, 2, 1, do_loadpci, loadpci, 2, 1, do_loadpci,
"loadpci - load binary file over PCI\n", "load binary file over PCI",
"[addr]\n" "[addr]\n"
" - load binary file over PCI to address 'addr'\n" " - load binary file over PCI to address 'addr'\n"
); );

View file

@ -227,7 +227,7 @@ int do_fpga(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
fpga, 2, 0, do_fpga, fpga, 2, 0, do_fpga,
"fpga - boot FPGA\n", "boot FPGA",
"address size\n - boot FPGA with gzipped image at <address>\n" "address size\n - boot FPGA with gzipped image at <address>\n"
); );

View file

@ -128,7 +128,7 @@ int do_idpcmd(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD(idpcmd, CONFIG_SYS_MAXARGS, 0, do_idpcmd, U_BOOT_CMD(idpcmd, CONFIG_SYS_MAXARGS, 0, do_idpcmd,
"idpcmd - custom IDP command\n", "custom IDP command",
"no args at this time\n" "no args at this time\n"
); );

View file

@ -414,6 +414,6 @@ int do_kbd (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
kbd, 1, 1, do_kbd, kbd, 1, 1, do_kbd,
"kbd - read keyboard status\n", "read keyboard status",
NULL NULL
); );

View file

@ -323,7 +323,7 @@ int do_set_mac(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
setmac, 2, 1, do_set_mac, setmac, 2, 1, do_set_mac,
"setmac - write MAC address for RTL8110SCL\n", "write MAC address for RTL8110SCL",
"\n" "\n"
"setmac <mac address> - write MAC address for RTL8110SCL\n" "setmac <mac address> - write MAC address for RTL8110SCL\n"
); );
@ -342,7 +342,7 @@ int do_print_mac(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
printmac, 1, 1, do_print_mac, printmac, 1, 1, do_print_mac,
"printmac - print MAC address for RTL8110\n", "print MAC address for RTL8110",
"\n" "\n"
" - print MAC address for RTL8110\n" " - print MAC address for RTL8110\n"
); );

View file

@ -159,7 +159,7 @@ int do_hw_test(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
hwtest, 2, 1, do_hw_test, hwtest, 2, 1, do_hw_test,
"hwtest - hardware test for R0P7785LC0011RL board\n", "hardware test for R0P7785LC0011RL board",
"\n" "\n"
"hwtest all - test all hardware\n" "hwtest all - test all hardware\n"
"hwtest pld - output PLD version\n" "hwtest pld - output PLD version\n"

View file

@ -500,7 +500,7 @@ int do_i2c1_probe(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
iprobe1, 1, 1, do_i2c1_probe, iprobe1, 1, 1, do_i2c1_probe,
"iprobe1 - probe to discover valid I2C chip addresses\n", "probe to discover valid I2C chip addresses",
"\n -discover valid I2C chip addresses\n" "\n -discover valid I2C chip addresses\n"
); );

View file

@ -578,7 +578,7 @@ int karefRecover(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD(kasetup, 1, 1, karefSetupVars, U_BOOT_CMD(kasetup, 1, 1, karefSetupVars,
"kasetup - Set environment to factory defaults\n", NULL); "Set environment to factory defaults", NULL);
U_BOOT_CMD(karecover, 1, 1, karefRecover, U_BOOT_CMD(karecover, 1, 1, karefRecover,
"karecover - Set environment to allow for fs recovery\n", NULL); "Set environment to allow for fs recovery", NULL);

View file

@ -544,7 +544,7 @@ int metroboxRecover(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD(mbsetup, 1, 1, metroboxSetupVars, U_BOOT_CMD(mbsetup, 1, 1, metroboxSetupVars,
"mbsetup - Set environment to factory defaults\n", NULL); "Set environment to factory defaults", NULL);
U_BOOT_CMD(mbrecover, 1, 1, metroboxRecover, U_BOOT_CMD(mbrecover, 1, 1, metroboxRecover,
"mbrecover - Set environment to allow for fs recovery\n", NULL); "Set environment to allow for fs recovery", NULL);

View file

@ -292,7 +292,7 @@ int do_fpga (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
fpga, 4, 1, do_fpga, fpga, 4, 1, do_fpga,
"fpga - access FPGA(s)\n", "access FPGA(s)",
"fpga status [name] - print FPGA status\n" "fpga status [name] - print FPGA status\n"
"fpga reset [name] - reset FPGA\n" "fpga reset [name] - reset FPGA\n"
"fpga load [name] addr - load FPGA configuration data\n" "fpga load [name] addr - load FPGA configuration data\n"

View file

@ -404,7 +404,7 @@ int do_puma (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD (puma, 4, 1, do_puma, U_BOOT_CMD (puma, 4, 1, do_puma,
"puma - access PUMA FPGA\n", "access PUMA FPGA",
"status - print PUMA status\n" "status - print PUMA status\n"
"puma load addr len - load PUMA configuration data\n"); "puma load addr len - load PUMA configuration data\n");

View file

@ -156,7 +156,7 @@ int do_sled (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
#endif #endif
U_BOOT_CMD (sled, 3, 0, do_sled, U_BOOT_CMD (sled, 3, 0, do_sled,
"sled - check and set status led\n", "check and set status led",
"sled [name [state]]\n" __NAME_STR " - state: on|off|blink\n"); "sled [name [state]]\n" __NAME_STR " - state: on|off|blink\n");
#endif #endif
#endif /* CONFIG_STATUS_LED */ #endif /* CONFIG_STATUS_LED */

View file

@ -151,7 +151,7 @@ int do_wd (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
wd, 2, 1, do_wd, wd, 2, 1, do_wd,
"wd - check and set watchdog\n", "check and set watchdog",
"on - switch watchDog on\n" "on - switch watchDog on\n"
"wd off - switch watchdog off\n" "wd off - switch watchdog off\n"
"wd - print current status\n" "wd - print current status\n"

View file

@ -1194,7 +1194,7 @@ int cmd_fkt(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
sound , 5, 1, cmd_sound, sound , 5, 1, cmd_sound,
"sound - Sound sub-system\n", "Sound sub-system",
"saw [duration] [freq] [channel]\n" "saw [duration] [freq] [channel]\n"
" - generate sawtooth for 'duration' ms with frequency 'freq'\n" " - generate sawtooth for 'duration' ms with frequency 'freq'\n"
" on left \"l\" or right \"r\" channel\n" " on left \"l\" or right \"r\" channel\n"
@ -1206,14 +1206,14 @@ U_BOOT_CMD(
U_BOOT_CMD( U_BOOT_CMD(
wav , 3, 1, cmd_wav, wav , 3, 1, cmd_wav,
"wav - play wav file\n", "play wav file",
"[addr] [bytes]\n" "[addr] [bytes]\n"
" - play wav file at address 'addr' with length 'bytes'\n" " - play wav file at address 'addr' with length 'bytes'\n"
); );
U_BOOT_CMD( U_BOOT_CMD(
beep , 2, 1, cmd_beep, beep , 2, 1, cmd_beep,
"beep - play short beep\n", "play short beep",
"[channel]\n" "[channel]\n"
" - play short beep on \"l\"eft or \"r\"ight channel\n" " - play short beep on \"l\"eft or \"r\"ight channel\n"
); );
@ -1222,7 +1222,7 @@ U_BOOT_CMD(
#if defined(CONFIG_STK52XX) #if defined(CONFIG_STK52XX)
U_BOOT_CMD( U_BOOT_CMD(
fkt , 4, 1, cmd_fkt, fkt , 4, 1, cmd_fkt,
"fkt - Function test routines\n", "Function test routines",
"led number on/off\n" "led number on/off\n"
" - 'number's like printed on STK52XX board\n" " - 'number's like printed on STK52XX board\n"
"fkt can\n" "fkt can\n"
@ -1237,7 +1237,7 @@ U_BOOT_CMD(
#elif defined(CONFIG_FO300) #elif defined(CONFIG_FO300)
U_BOOT_CMD( U_BOOT_CMD(
fkt , 3, 1, cmd_fkt, fkt , 3, 1, cmd_fkt,
"fkt - Function test routines\n", "Function test routines",
"fkt can\n" "fkt can\n"
" - loopback plug for X16/X29 required\n" " - loopback plug for X16/X29 required\n"
"fkt rs232 number\n" "fkt rs232 number\n"

View file

@ -90,13 +90,13 @@ int cmd_backlight(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
led , 2, 1, cmd_led, led , 2, 1, cmd_led,
"led - switch status LED on or off\n", "switch status LED on or off",
"on/off\n" "on/off\n"
); );
U_BOOT_CMD( U_BOOT_CMD(
backlight , 2, 1, cmd_backlight, backlight , 2, 1, cmd_backlight,
"backlight - switch backlight on or off\n", "switch backlight on or off",
"on/off\n" "on/off\n"
); );

View file

@ -866,7 +866,7 @@ int do_hwib_dump (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
hwib, 1, 1, do_hwib_dump, hwib, 1, 1, do_hwib_dump,
"hwib - dump HWIB'\n", "dump HWIB'",
"\n" "\n"
); );

View file

@ -258,7 +258,7 @@ int do_burn_in (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
burn_in, 1, 1, do_burn_in, burn_in, 1, 1, do_burn_in,
"burn_in - start burn-in test application on TRAB\n", "start burn-in test application on TRAB",
"\n" "\n"
" - start burn-in test application\n" " - start burn-in test application\n"
" The burn-in test could took a while to finish!\n" " The burn-in test could took a while to finish!\n"
@ -292,7 +292,7 @@ int do_dip (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
dip, 1, 1, do_dip, dip, 1, 1, do_dip,
"dip - read dip switch on TRAB\n", "read dip switch on TRAB",
"\n" "\n"
" - read state of dip switch (S1) on TRAB board\n" " - read state of dip switch (S1) on TRAB board\n"
" read sequence: 1-2-3-4; ON=1; OFF=0; e.g.: \"0100\"\n" " read sequence: 1-2-3-4; ON=1; OFF=0; e.g.: \"0100\"\n"
@ -321,7 +321,7 @@ int do_vcc5v (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
vcc5v, 1, 1, do_vcc5v, vcc5v, 1, 1, do_vcc5v,
"vcc5v - read VCC5V on TRAB\n", "read VCC5V on TRAB",
"\n" "\n"
" - read actual value of voltage VCC5V\n" " - read actual value of voltage VCC5V\n"
); );
@ -346,7 +346,7 @@ int do_contact_temp (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
c_temp, 1, 1, do_contact_temp, c_temp, 1, 1, do_contact_temp,
"c_temp - read contact temperature on TRAB\n", "read contact temperature on TRAB",
"\n" "\n"
" - reads the onboard temperature (=contact temperature)\n" " - reads the onboard temperature (=contact temperature)\n"
); );
@ -398,7 +398,7 @@ int do_burn_in_status (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
bis, 1, 1, do_burn_in_status, bis, 1, 1, do_burn_in_status,
"bis - print burn in status on TRAB\n", "print burn in status on TRAB",
"\n" "\n"
" - prints the status variables of the last burn in test\n" " - prints the status variables of the last burn in test\n"
" stored in the onboard EEPROM on TRAB board\n" " stored in the onboard EEPROM on TRAB board\n"
@ -886,7 +886,7 @@ int do_temp_log (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
tlog, 2, 1, do_temp_log, tlog, 2, 1, do_temp_log,
"tlog - log contact temperature [1/100 C] to console (endlessly)\n", "log contact temperature [1/100 C] to console (endlessly)",
"delay\n" "delay\n"
" - contact temperature [1/100 C] is printed endlessly to console\n" " - contact temperature [1/100 C] is printed endlessly to console\n"
" <delay> specifies the seconds to wait between two measurements\n" " <delay> specifies the seconds to wait between two measurements\n"

View file

@ -322,7 +322,7 @@ int do_kbd (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
kbd, 1, 1, do_kbd, kbd, 1, 1, do_kbd,
"kbd - read keyboard status\n", "read keyboard status",
NULL NULL
); );

View file

@ -76,7 +76,7 @@ int do_dm9000_eeprom ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) {
U_BOOT_CMD( U_BOOT_CMD(
dm9000ee,4,1,do_dm9000_eeprom, dm9000ee,4,1,do_dm9000_eeprom,
"dm9000ee- Read/Write eeprom connected to Ethernet Controller\n", "Read/Write eeprom connected to Ethernet Controller",
"\ndm9000ee write <word offset> <value> \n" "\ndm9000ee write <word offset> <value> \n"
"\tdm9000ee read \n" "\tdm9000ee read \n"
"\tword:\t\t00-02 : MAC Address\n" "\tword:\t\t00-02 : MAC Address\n"

View file

@ -58,7 +58,7 @@ int do_vpd (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
vpd, 2, 1, do_vpd, vpd, 2, 1, do_vpd,
"vpd - Read Vital Product Data\n", "Read Vital Product Data",
"[dev_addr]\n" "[dev_addr]\n"
" - Read VPD Data from default address, or device address 'dev_addr'.\n" " - Read VPD Data from default address, or device address 'dev_addr'.\n"
); );

View file

@ -98,7 +98,7 @@ int do_update_boot_eeprom(cmd_tbl_t* cmdtp, int flag, int argc, char* argv[])
U_BOOT_CMD ( U_BOOT_CMD (
update_boot_eeprom, 1, 1, do_update_boot_eeprom, update_boot_eeprom, 1, 1, do_update_boot_eeprom,
"update_boot_eeprom - update boot eeprom content\n", "update boot eeprom content",
NULL NULL
); );

View file

@ -327,7 +327,7 @@ int do_set_default(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
setdef, 4, 1, do_set_default, setdef, 4, 1, do_set_default,
"setdef - write board-specific values to EEPROM (ethaddr...)\n", "write board-specific values to EEPROM (ethaddr...)",
"ethaddr eth1addr serial#\n - write board-specific values to EEPROM\n" "ethaddr eth1addr serial#\n - write board-specific values to EEPROM\n"
); );
@ -418,7 +418,7 @@ int do_chkreset(cmd_tbl_t* cmdtp, int flag, int argc, char* argv[])
U_BOOT_CMD ( U_BOOT_CMD (
chkreset, 1, 1, do_chkreset, chkreset, 1, 1, do_chkreset,
"chkreset- Check for status of SW-reset button and act accordingly\n", "Check for status of SW-reset button and act accordingly",
NULL NULL
); );

View file

@ -273,6 +273,6 @@ int ambapp_init_reloc(void)
} }
U_BOOT_CMD(ambapp, 1, 1, do_ambapp_print, U_BOOT_CMD(ambapp, 1, 1, do_ambapp_print,
"ambapp - list AMBA Plug&Play information\n", "list AMBA Plug&Play information",
"ambapp\n" "ambapp\n"
" - lists AMBA (AHB & APB) Plug&Play devices present on the system\n"); " - lists AMBA (AHB & APB) Plug&Play devices present on the system\n");

View file

@ -230,7 +230,7 @@ do_autoscript (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
autoscr, 2, 0, do_autoscript, autoscr, 2, 0, do_autoscript,
"autoscr - run script from memory\n", "run script from memory",
"[addr] - run script starting at addr" "[addr] - run script starting at addr"
" - A valid autoscr header must be present\n" " - A valid autoscr header must be present\n"
#if defined(CONFIG_FIT) #if defined(CONFIG_FIT)

View file

@ -444,6 +444,6 @@ static void print_str(const char *name, const char *str)
U_BOOT_CMD( U_BOOT_CMD(
bdinfo, 1, 1, do_bdinfo, bdinfo, 1, 1, do_bdinfo,
"bdinfo - print Board Info structure\n", "print Board Info structure",
NULL NULL
); );

View file

@ -107,7 +107,7 @@ int do_bedbug_dis (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
} /* do_bedbug_dis */ } /* do_bedbug_dis */
U_BOOT_CMD (ds, 3, 1, do_bedbug_dis, U_BOOT_CMD (ds, 3, 1, do_bedbug_dis,
"ds - disassemble memory\n", "disassemble memory",
"ds <address> [# instructions]\n"); "ds <address> [# instructions]\n");
/* ====================================================================== /* ======================================================================
@ -160,7 +160,7 @@ int do_bedbug_asm (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
} /* do_bedbug_asm */ } /* do_bedbug_asm */
U_BOOT_CMD (as, 2, 0, do_bedbug_asm, U_BOOT_CMD (as, 2, 0, do_bedbug_asm,
"as - assemble memory\n", "as <address>\n"); "assemble memory", "as <address>\n");
/* ====================================================================== /* ======================================================================
* Used to set a break point from the interpreter. Simply calls into the * Used to set a break point from the interpreter. Simply calls into the
@ -177,7 +177,7 @@ int do_bedbug_break (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
} /* do_bedbug_break */ } /* do_bedbug_break */
U_BOOT_CMD (break, 3, 0, do_bedbug_break, U_BOOT_CMD (break, 3, 0, do_bedbug_break,
"break - set or clear a breakpoint\n", "set or clear a breakpoint",
" - Set or clear a breakpoint\n" " - Set or clear a breakpoint\n"
"break <address> - Break at an address\n" "break <address> - Break at an address\n"
"break off <bp#> - Disable breakpoint.\n" "break off <bp#> - Disable breakpoint.\n"
@ -277,7 +277,7 @@ int do_bedbug_continue (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
} /* do_bedbug_continue */ } /* do_bedbug_continue */
U_BOOT_CMD (continue, 1, 0, do_bedbug_continue, U_BOOT_CMD (continue, 1, 0, do_bedbug_continue,
"continue- continue from a breakpoint\n", "continue from a breakpoint",
" - continue from a breakpoint.\n"); " - continue from a breakpoint.\n");
/* ====================================================================== /* ======================================================================
@ -308,7 +308,7 @@ int do_bedbug_step (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
} /* do_bedbug_step */ } /* do_bedbug_step */
U_BOOT_CMD (step, 1, 1, do_bedbug_step, U_BOOT_CMD (step, 1, 1, do_bedbug_step,
"step - single step execution.\n", "single step execution.",
" - single step execution.\n"); " - single step execution.\n");
/* ====================================================================== /* ======================================================================
@ -339,7 +339,7 @@ int do_bedbug_next (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
} /* do_bedbug_next */ } /* do_bedbug_next */
U_BOOT_CMD (next, 1, 1, do_bedbug_next, U_BOOT_CMD (next, 1, 1, do_bedbug_next,
"next - single step execution, stepping over subroutines.\n", "single step execution, stepping over subroutines.",
" - single step execution, stepping over subroutines.\n"); " - single step execution, stepping over subroutines.\n");
/* ====================================================================== /* ======================================================================
@ -384,7 +384,7 @@ int do_bedbug_stack (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
} /* do_bedbug_stack */ } /* do_bedbug_stack */
U_BOOT_CMD (where, 1, 1, do_bedbug_stack, U_BOOT_CMD (where, 1, 1, do_bedbug_stack,
"where - Print the running stack.\n", "Print the running stack.",
" - Print the running stack.\n"); " - Print the running stack.\n");
/* ====================================================================== /* ======================================================================
@ -405,7 +405,7 @@ int do_bedbug_rdump (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
} /* do_bedbug_rdump */ } /* do_bedbug_rdump */
U_BOOT_CMD (rdump, 1, 1, do_bedbug_rdump, U_BOOT_CMD (rdump, 1, 1, do_bedbug_rdump,
"rdump - Show registers.\n", " - Show registers.\n"); "Show registers.", " - Show registers.\n");
/* ====================================================================== */ /* ====================================================================== */

View file

@ -139,7 +139,7 @@ int do_bmp(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
bmp, 5, 1, do_bmp, bmp, 5, 1, do_bmp,
"bmp - manipulate BMP image data\n", "manipulate BMP image data",
"info <imageAddr> - display image info\n" "info <imageAddr> - display image info\n"
"bmp display <imageAddr> [x y] - display image at x,y\n" "bmp display <imageAddr> [x y] - display image at x,y\n"
); );

View file

@ -64,7 +64,7 @@ int do_go (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
go, CONFIG_SYS_MAXARGS, 1, do_go, go, CONFIG_SYS_MAXARGS, 1, do_go,
"go - start application at address 'addr'\n", "start application at address 'addr'",
"addr [arg ...]\n - start application at address 'addr'\n" "addr [arg ...]\n - start application at address 'addr'\n"
" passing 'arg' as arguments\n" " passing 'arg' as arguments\n"
); );
@ -73,6 +73,6 @@ extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
U_BOOT_CMD( U_BOOT_CMD(
reset, 1, 0, do_reset, reset, 1, 0, do_reset,
"reset - Perform RESET of the CPU\n", "Perform RESET of the CPU",
NULL NULL
); );

View file

@ -59,6 +59,6 @@ int do_bootldr(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD(bootldr, 2, 0, do_bootldr, U_BOOT_CMD(bootldr, 2, 0, do_bootldr,
"bootldr - boot ldr image from memory\n", "boot ldr image from memory",
"[addr]\n" "[addr]\n"
" - boot ldr image stored in memory\n"); " - boot ldr image stored in memory\n");

View file

@ -913,7 +913,7 @@ static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]
U_BOOT_CMD( U_BOOT_CMD(
bootm, CONFIG_SYS_MAXARGS, 1, do_bootm, bootm, CONFIG_SYS_MAXARGS, 1, do_bootm,
"bootm - boot application image from memory\n", "boot application image from memory",
"[addr [arg ...]]\n - boot application image stored in memory\n" "[addr [arg ...]]\n - boot application image stored in memory\n"
"\tpassing arguments 'arg ...'; when booting a Linux kernel,\n" "\tpassing arguments 'arg ...'; when booting a Linux kernel,\n"
"\t'arg' can be the address of an initrd image\n" "\t'arg' can be the address of an initrd image\n"
@ -970,14 +970,14 @@ int do_bootd (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
boot, 1, 1, do_bootd, boot, 1, 1, do_bootd,
"boot - boot default, i.e., run 'bootcmd'\n", "boot default, i.e., run 'bootcmd'",
NULL NULL
); );
/* keep old command name "bootd" for backward compatibility */ /* keep old command name "bootd" for backward compatibility */
U_BOOT_CMD( U_BOOT_CMD(
bootd, 1, 1, do_bootd, bootd, 1, 1, do_bootd,
"bootd - boot default, i.e., run 'bootcmd'\n", "boot default, i.e., run 'bootcmd'",
NULL NULL
); );
@ -1062,7 +1062,7 @@ static int image_info (ulong addr)
U_BOOT_CMD( U_BOOT_CMD(
iminfo, CONFIG_SYS_MAXARGS, 1, do_iminfo, iminfo, CONFIG_SYS_MAXARGS, 1, do_iminfo,
"iminfo - print header information for application image\n", "print header information for application image",
"addr [addr ...]\n" "addr [addr ...]\n"
" - print header information for application image starting at\n" " - print header information for application image starting at\n"
" address 'addr' in memory; this includes verification of the\n" " address 'addr' in memory; this includes verification of the\n"
@ -1130,7 +1130,7 @@ next_bank: ;
U_BOOT_CMD( U_BOOT_CMD(
imls, 1, 1, do_imls, imls, 1, 1, do_imls,
"imls - list all images found in flash\n", "list all images found in flash",
"\n" "\n"
" - Prints information about all images found at sector\n" " - Prints information about all images found at sector\n"
" boundaries in flash.\n" " boundaries in flash.\n"

View file

@ -97,14 +97,14 @@ static int on_off (const char *s)
U_BOOT_CMD( U_BOOT_CMD(
icache, 2, 1, do_icache, icache, 2, 1, do_icache,
"icache - enable or disable instruction cache\n", "enable or disable instruction cache",
"[on, off]\n" "[on, off]\n"
" - enable or disable instruction cache\n" " - enable or disable instruction cache\n"
); );
U_BOOT_CMD( U_BOOT_CMD(
dcache, 2, 1, do_dcache, dcache, 2, 1, do_dcache,
"dcache - enable or disable data cache\n", "enable or disable data cache",
"[on, off]\n" "[on, off]\n"
" - enable or disable data (writethrough) cache\n" " - enable or disable data (writethrough) cache\n"
); );

View file

@ -65,6 +65,6 @@ int do_coninfo (cmd_tbl_t * cmd, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
coninfo, 3, 1, do_coninfo, coninfo, 3, 1, do_coninfo,
"coninfo - print console devices and information\n", "print console devices and information",
"" ""
); );

View file

@ -54,6 +54,6 @@ int do_cplbinfo(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
} }
U_BOOT_CMD(cplbinfo, 1, 0, do_cplbinfo, U_BOOT_CMD(cplbinfo, 1, 0, do_cplbinfo,
"cplbinfo- display current CPLB tables\n", "display current CPLB tables",
"\n" "\n"
" - display current CPLB tables\n"); " - display current CPLB tables\n");

View file

@ -214,7 +214,7 @@ int mk_date (char *datestr, struct rtc_time *tmp)
U_BOOT_CMD( U_BOOT_CMD(
date, 2, 1, do_date, date, 2, 1, do_date,
"date - get/set/reset date & time\n", "get/set/reset date & time",
"[MMDDhhmm[[CC]YY][.ss]]\ndate reset\n" "[MMDDhhmm[[CC]YY][.ss]]\ndate reset\n"
" - without arguments: print date & time\n" " - without arguments: print date & time\n"
" - with numeric argument: set the system date & time\n" " - with numeric argument: set the system date & time\n"

View file

@ -223,23 +223,23 @@ int do_setidcr (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
getdcr, 2, 1, do_getdcr, getdcr, 2, 1, do_getdcr,
"getdcr - Get an AMCC PPC 4xx DCR's value\n", "Get an AMCC PPC 4xx DCR's value",
"dcrn - return a DCR's value.\n" "dcrn - return a DCR's value.\n"
); );
U_BOOT_CMD( U_BOOT_CMD(
setdcr, 2, 1, do_setdcr, setdcr, 2, 1, do_setdcr,
"setdcr - Set an AMCC PPC 4xx DCR's value\n", "Set an AMCC PPC 4xx DCR's value",
"dcrn - set a DCR's value.\n" "dcrn - set a DCR's value.\n"
); );
U_BOOT_CMD( U_BOOT_CMD(
getidcr, 3, 1, do_getidcr, getidcr, 3, 1, do_getidcr,
"getidcr - Get a register value via indirect DCR addressing\n", "Get a register value via indirect DCR addressing",
"adr_dcrn[.dat_dcrn] offset - write offset to adr_dcrn, read value from dat_dcrn.\n" "adr_dcrn[.dat_dcrn] offset - write offset to adr_dcrn, read value from dat_dcrn.\n"
); );
U_BOOT_CMD( U_BOOT_CMD(
setidcr, 4, 1, do_setidcr, setidcr, 4, 1, do_setidcr,
"setidcr - Set a register value via indirect DCR addressing\n", "Set a register value via indirect DCR addressing",
"adr_dcrn[.dat_dcrn] offset value - write offset to adr_dcrn, write value to dat_dcrn.\n" "adr_dcrn[.dat_dcrn] offset value - write offset to adr_dcrn, write value to dat_dcrn.\n"
); );

View file

@ -33,5 +33,5 @@ usage:
U_BOOT_CMD( U_BOOT_CMD(
sf, 2, 1, do_serial_flash, sf, 2, 1, do_serial_flash,
"sf - Serial flash sub-system\n", "Serial flash sub-system",
"probe [bus:]cs - init flash device on given SPI bus and CS\n") "probe [bus:]cs - init flash device on given SPI bus and CS\n")

View file

@ -66,7 +66,7 @@ int do_diag (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
U_BOOT_CMD( U_BOOT_CMD(
diag, CONFIG_SYS_MAXARGS, 0, do_diag, diag, CONFIG_SYS_MAXARGS, 0, do_diag,
"diag - perform board diagnostics\n", "perform board diagnostics",
" - print list of available tests\n" " - print list of available tests\n"
"diag [test1 [test2]]\n" "diag [test1 [test2]]\n"
" - print information about specified tests\n" " - print information about specified tests\n"

Some files were not shown because too many files have changed in this diff Show more