diff options
Diffstat (limited to 'common/cmd_jffs2.c')
| -rw-r--r-- | common/cmd_jffs2.c | 29 | 
1 files changed, 29 insertions, 0 deletions
| diff --git a/common/cmd_jffs2.c b/common/cmd_jffs2.c index c4f5a9715..3cf00b8e2 100644 --- a/common/cmd_jffs2.c +++ b/common/cmd_jffs2.c @@ -49,6 +49,8 @@ static int part_num=0;  static struct part_info part; +#ifndef CONFIG_JFFS2_NAND +  struct part_info*  jffs2_part_info(int part_num)  { @@ -88,6 +90,33 @@ jffs2_part_info(int part_num)  	}  	return 0;  } + +#else /* CONFIG_JFFS2_NAND */ + +struct part_info* +jffs2_part_info(int part_num) +{ +	if(part_num==0){ + +		if(part.usr_priv==(void*)1) +			return ∂ + +		memset(&part, 0, sizeof(part)); + +		part.offset = CONFIG_JFFS2_NAND_OFF; +		part.size = CONFIG_JFFS2_NAND_SIZE; /* the bigger size the slower jffs2 */ + +#ifndef CONFIG_JFFS2_NAND_DEV +#define CONFIG_JFFS2_NAND_DEV 0 +#endif +		/* nand device with the JFFS2 parition plus 1 */ +		part.usr_priv = (void*)(CONFIG_JFFS2_NAND_DEV+1); +		return ∂ +	} +	return 0; +} + +#endif /* CONFIG_JFFS2_NAND */  #endif /* ifndef CFG_JFFS_CUSTOM_PART */  int |