board/t1040qds: Enable memory reset control
[oweals/u-boot.git] / include / fs.h
index c3ac7ccc0d9dbfd972443da200ef463a0a86c269..7d9403ed87588c2f254ec0a4b514fe5840eac0b9 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 cmdline_base);
+int do_load(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
+               int fstype);
 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);
 
 #endif /* _FS_H */