]> git.sur5r.net Git - u-boot/blobdiff - include/fs.h
siemens-am33x-common.h: Always build CONFIG_OMAP_GPIO support
[u-boot] / include / fs.h
index f396d8492a512f4cb9fee2324b050d3babd949d3..c837bae25cda0f9a0e8d52120269a009c7a1646c 100644 (file)
@@ -21,6 +21,7 @@
 #define FS_TYPE_ANY    0
 #define FS_TYPE_FAT    1
 #define FS_TYPE_EXT    2
+#define FS_TYPE_SANDBOX        3
 
 /*
  * Tell the fs layer which block device an partition to use for future
@@ -57,9 +58,11 @@ int fs_read(const char *filename, ulong addr, int offset, int len);
  * Common implementation for various filesystem commands, optionally limited
  * to a specific filesystem type via the fstype parameter.
  */
-int do_fsload(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
-               int fstype);
+int do_load(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
+               int fstype, int cmdline_base);
 int do_ls(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
                int fstype);
+int do_save(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
+               int fstype, int cmdline_base);
 
 #endif /* _FS_H */