[U-Boot] [PATCH 04/10] bootz: un-staticize do_bootz
Rob Herring
robherring2 at gmail.com
Mon Dec 3 04:00:23 CET 2012
From: Rob Herring <rob.herring at calxeda.com>
Make do_bootz available for other functions like do_bootm is.
Signed-off-by: Rob Herring <rob.herring at calxeda.com>
---
common/cmd_bootm.c | 2 +-
include/command.h | 2 ++
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c
index 4dbe952..fc32a2f 100644
--- a/common/cmd_bootm.c
+++ b/common/cmd_bootm.c
@@ -1612,7 +1612,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 10bc260..593a332 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[]);
--
1.7.10.4
More information about the U-Boot
mailing list