summaryrefslogtreecommitdiffstats
path: root/include/cmd_jffs2.h
blob: 670455b47a0a91c294706588bb2c6e72977c7ce9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
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