1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-09-01 16:52:14 +02:00

Patch by Kenneth Johansson, 30 Jun 2003:

get rid of MK_CMD_ENTRY macro; update doc/README.command
This commit is contained in:
wdenk
2003-07-01 21:06:45 +00:00
parent b37c7e5e5c
commit 0d4983930a
61 changed files with 332 additions and 389 deletions

View File

@@ -170,8 +170,8 @@ int do_doc (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
return rcode;
}
}
cmd_tbl_t U_BOOT_CMD(DOC) = MK_CMD_ENTRY(
"doc", 5, 1, do_doc,
U_BOOT_CMD(
doc, 5, 1, do_doc,
"doc - Disk-On-Chip sub-system\n",
"info - show available DOC devices\n"
"doc device [dev] - show or set current device\n"
@@ -284,8 +284,8 @@ int do_docboot (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
return rcode;
}
cmd_tbl_t U_BOOT_CMD(DOCBOOT) = MK_CMD_ENTRY(
"docboot", 4, 1, do_docboot,
U_BOOT_CMD(
docboot, 4, 1, do_docboot,
"docboot - boot from DOC device\n",
"loadAddr dev\n"
);