From: Rob Herring Date: Mon, 3 Dec 2012 03:00:23 +0000 (-0600) Subject: bootz: un-staticize do_bootz X-Git-Tag: v2013.07-rc2~57^2~30 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=da620222f89162af2b43f868f1d6184533166104;p=platform%2Fkernel%2Fu-boot.git bootz: un-staticize do_bootz Make do_bootz available for other functions like do_bootm is. Signed-off-by: Rob Herring --- diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c index 05130b6..e452fca 100644 --- a/common/cmd_bootm.c +++ b/common/cmd_bootm.c @@ -1707,7 +1707,7 @@ static int bootz_start(cmd_tbl_t *cmdtp, int flag, int argc, return 0; } -static int do_bootz(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) +int do_bootz(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) { bootm_headers_t images; diff --git a/include/command.h b/include/command.h index 65692fd..9e05ddc 100644 --- a/include/command.h +++ b/include/command.h @@ -110,6 +110,8 @@ static inline int bootm_maybe_autostart(cmd_tbl_t *cmdtp, const char *cmd) } #endif +extern int do_bootz(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); + extern int common_diskboot(cmd_tbl_t *cmdtp, const char *intf, int argc, char *const argv[]);