summaryrefslogtreecommitdiffstats
path: root/include/bootm.h
diff options
context:
space:
mode:
authorBin Meng <bmeng.cn@gmail.com>2018-12-21 07:13:40 -0800
committerTom Rini <trini@konsulko.com>2018-12-31 08:08:51 -0500
commitf2a53c7665a87decac5f3048b2a97467f648659f (patch)
tree60ab2bd673577c93fb3f2d24ace2c30ba5b28004 /include/bootm.h
parent7ebfb3780cbb608baaffbf6835b642484fa02ba3 (diff)
downloadu-boot-f2a53c7665a87decac5f3048b2a97467f648659f.tar.gz
u-boot-f2a53c7665a87decac5f3048b2a97467f648659f.tar.xz
u-boot-f2a53c7665a87decac5f3048b2a97467f648659f.zip
bootm: vxworks: Make do_bootm_vxworks() non-static
For future extension to other architectures, make do_bootm_vxworks() a non-static function. Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'include/bootm.h')
-rw-r--r--include/bootm.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/bootm.h b/include/bootm.h
index 0501414e0d..dbd6f49c2d 100644
--- a/include/bootm.h
+++ b/include/bootm.h
@@ -35,6 +35,8 @@ typedef int boot_os_fn(int flag, int argc, char * const argv[],
bootm_headers_t *images);
extern boot_os_fn do_bootm_linux;
+extern boot_os_fn do_bootm_vxworks;
+
int do_bootelf(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
void lynxkdi_boot(image_header_t *hdr);