diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/command.h | 3 | ||||
-rw-r--r-- | include/environment.h | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/include/command.h b/include/command.h index c270110..3912b80 100644 --- a/include/command.h +++ b/include/command.h @@ -64,6 +64,9 @@ typedef struct cmd_tbl_s cmd_tbl_t; extern cmd_tbl_t __u_boot_cmd_start; extern cmd_tbl_t __u_boot_cmd_end; +#if defined(CONFIG_CMD_RUN) +extern int do_run(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); +#endif /* common/command.c */ int _do_help (cmd_tbl_t *cmd_start, int cmd_items, cmd_tbl_t * cmdtp, int diff --git a/include/environment.h b/include/environment.h index 951803f..3c8c24b 100644 --- a/include/environment.h +++ b/include/environment.h @@ -143,6 +143,9 @@ extern unsigned long nand_env_oob_offset; # define ENV_HEADER_SIZE (sizeof(uint32_t)) #endif +#if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE) +extern char *env_name_spec; +#endif #define ENV_SIZE (CONFIG_ENV_SIZE - ENV_HEADER_SIZE) |