diff --git a/Documentation/commands.dox b/Documentation/commands.dox index bc1a428..17e034a 100644 --- a/Documentation/commands.dox +++ b/Documentation/commands.dox @@ -10,6 +10,7 @@ @li @subpage crc_command @li @subpage delpart_command @li @subpage devinfo_command +@li @subpage dfu_command @li @subpage edit_command @li @subpage erase_command @li @subpage export_command diff --git a/commands/dfu.c b/commands/dfu.c index 66fd6ea..385fd89 100644 --- a/commands/dfu.c +++ b/commands/dfu.c @@ -162,16 +162,24 @@ return 1; } -static const __maybe_unused char cmd_dfu_help[] = -"Usage: dfu [OPTION]... description\n" -"start dfu firmware update\n" -" -m Manufacturer string (barebox)\n" -" -p product string (" CONFIG_BOARDINFO ")\n" -" -V vendor id\n" -" -P product id\n" -"description has the form\n" -"device1(name1)[sr],device2(name2)[sr]\n" -"where s is for save mode and r for read back of firmware\n"; +BAREBOX_CMD_HELP_START(dfu) +BAREBOX_CMD_HELP_USAGE("dfu [OPTIONS] \n") +BAREBOX_CMD_HELP_SHORT("Start firmware update with the Device Firmware Update (DFU) protocol.\n") +BAREBOX_CMD_HELP_OPT ("-m ", "Manufacturer string (barebox)\n") +BAREBOX_CMD_HELP_OPT ("-p ", "product string (" CONFIG_BOARDINFO ")\n") +BAREBOX_CMD_HELP_OPT ("-V ", "vendor id\n") +BAREBOX_CMD_HELP_OPT ("-P ", "product id\n") +BAREBOX_CMD_HELP_END + +/** + * @page dfu_command +\ has the following form: +device1(name1)[sr],device2(name2)[sr] +'s' means 'safe mode' (download the complete image before flashing) and +'r' that readback of the firmware is allowed. + +\todo Add example, how to use dfu from a Linux or Windows host. + */ BAREBOX_CMD_START(dfu) .cmd = do_dfu,