do_bootm
The interface has the following parameters.
- Synopsis:
int do_bootm(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]);
- Description: The interface is used to run the
bootm
command, and boot the application from the image in memory. - Parameter:
- cmdtp: The command information for the
bootm
command. - flag: The command flags.
- argc: The number of arguments.
- agrv: The list of arguments.
- cmdtp: The command information for the
- Return:
- Success: 0.
- Failure: Any value other than 0.