summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorwdenk <wdenk>2002-09-28 20:25:19 +0000
committerwdenk <wdenk>2002-09-28 20:25:19 +0000
commitef94f5da1de4efc6db1f7fcaf8f68c2b4c033fc9 (patch)
tree9e3687ca0c9e8b719c599d73f33974c34dec04f9 /include
parent05706fddd0c9d2b97996e545a7a6d31217bd40b9 (diff)
downloadtalos-obmc-uboot-ef94f5da1de4efc6db1f7fcaf8f68c2b4c033fc9.tar.gz
talos-obmc-uboot-ef94f5da1de4efc6db1f7fcaf8f68c2b4c033fc9.zip
Initial revision
Diffstat (limited to 'include')
-rw-r--r--include/cmd_jffs2.h70
1 files changed, 70 insertions, 0 deletions
diff --git a/include/cmd_jffs2.h b/include/cmd_jffs2.h
new file mode 100644
index 0000000000..670455b47a
--- /dev/null
+++ b/include/cmd_jffs2.h
@@ -0,0 +1,70 @@
+/*
+ * (C) Copyright 2000
+ * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
+ *
+ * See file CREDITS for list of people who contributed to this
+ * project.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; either version 2 of
+ * the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ */
+
+/*
+ * JFFS2 support
+ */
+#ifndef _CMD_JFFS2_H
+#define _CMD_JFFS2_H
+
+#if (CONFIG_COMMANDS & CFG_CMD_JFFS2)
+
+#define CMD_TBL_JFFS2_FSLOAD MK_CMD_TBL_ENTRY( \
+ "fsload", 5, 3, 0, do_jffs2_fsload, \
+ "fsload - load binary file from a filesystem image\n", \
+ "[ off ] [ filename ]\n" \
+ " - load binary file from flash bank\n" \
+ " with offset 'off'\n" \
+),
+
+#define CMD_TBL_JFFS2_FSINFO MK_CMD_TBL_ENTRY( \
+ "fsinfo", 5, 1, 1, do_jffs2_fsinfo, \
+ "fsinfo - print information about filesystems\n", \
+ " - print information about filesystems\n" \
+),
+
+#define CMD_TBL_JFFS2_LS MK_CMD_TBL_ENTRY( \
+ "ls", 2, 2, 1, do_jffs2_ls, \
+ "ls - list files in a directory (default /)\n", \
+ "[ directory ]\n" \
+ " - list files in a directory.\n" \
+),
+
+#define CMD_TBL_JFFS2_CHPART MK_CMD_TBL_ENTRY( \
+ "chpart", 6, 2, 0, do_jffs2_chpart, \
+ "chpart - change active partition\n", \
+ " - change active partition\n" \
+),
+
+int do_jffs2_fsload (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
+int do_jffs2_fsinfo (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
+int do_jffs2_ls (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
+int do_jffs2_chpart (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
+#else
+#define CMD_TBL_JFFS2_FSLOAD
+#define CMD_TBL_JFFS2_FSINFO
+#define CMD_TBL_JFFS2_LS
+#define CMD_TBL_JFFS2_CHPART
+#endif /* CFG_CMD_JFFS2 */
+
+#endif /* _CMD_JFFS2_H */
OpenPOWER on IntegriCloud