aboutsummaryrefslogtreecommitdiff
path: root/include/common.h
diff options
context:
space:
mode:
authorRob Herring <rob.herring@calxeda.com>2012-05-25 10:47:39 +0000
committerJohn Rigby <john.rigby@linaro.org>2012-07-20 20:33:37 -0600
commitcfb48a3a75a8860f4d004a3a3e384732b3593b99 (patch)
tree07c46c8d2560635d7dbe3932f49d1ddb2f57aab3 /include/common.h
parent36f306c3239b195fadb2ee4e66ca4ab0f15a0b52 (diff)
pxe: add support for parsing local syslinux files2012.05.52012.05-5
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/common.h')
-rw-r--r--include/common.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/common.h b/include/common.h
index 4b5841ef4..5667b4580 100644
--- a/include/common.h
+++ b/include/common.h
@@ -300,6 +300,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);