]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - include/fs.h
usb: ums: code refactoring to improve reusability on other boards.
[karo-tx-uboot.git] / include / fs.h
index 4f30a385a03ca2d2a4e2fe65b6b38168acdced07..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
@@ -58,8 +59,10 @@ int fs_read(const char *filename, ulong addr, int offset, int len);
  * to a specific filesystem type via the fstype parameter.
  */
 int do_load(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
-               int fstype, int cmdline_base);
+               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 */