summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRob Herring <rob.herring@calxeda.com>2012-05-25 10:47:39 (GMT)
committerWolfgang Denk <wd@denx.de>2012-06-21 20:35:56 (GMT)
commit669df7e42d460233f39e26d7c27d3c17821f4666 (patch)
treefe81eac98deb1bee8e92664f0517c24e362cb3f9 /include
parent34bd23e42f3ba9b7fb333a29ea36e9a73b608b8e (diff)
downloadu-boot-669df7e42d460233f39e26d7c27d3c17821f4666.tar.xz
pxe: add support for parsing local syslinux files
Add a new command "sysboot" which parses syslinux menu files and boots using kernel and initrd specified by menu files. The operation is similar to "pxe boot" except local files on ext2 or fat filesystem are parsed. Signed-off-by: Rob Herring <rob.herring@calxeda.com>
Diffstat (limited to 'include')
-rw-r--r--include/common.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/common.h b/include/common.h
index ecfa6c4..7cf15c5 100644
--- a/include/common.h
+++ b/include/common.h
@@ -325,6 +325,12 @@ void doc_probe(unsigned long physadr);
/* common/cmd_net.c */
int do_tftpb(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
+/* common/cmd_fat.c */
+int do_fat_fsload(cmd_tbl_t *, int, int, char * const []);
+
+/* common/cmd_ext2.c */
+int do_ext2load(cmd_tbl_t *, int, int, char * const []);
+
/* common/cmd_nvedit.c */
int env_init (void);
void env_relocate (void);