diff options
| author | Nishanth Menon <nm@ti.com> | 2013-07-15 07:11:28 -0500 | 
|---|---|---|
| committer | Tom Rini <trini@ti.com> | 2013-07-26 16:39:11 -0400 | 
| commit | 664979a2a9f764b63b8094458b87247d254b0cc1 (patch) | |
| tree | c62a38143b482ebd8fbb7071297204861bf6223a | |
| parent | c9be62caba2c727e62b681add94a4814ea1e6651 (diff) | |
| download | olio-uboot-2014.01-664979a2a9f764b63b8094458b87247d254b0cc1.tar.xz olio-uboot-2014.01-664979a2a9f764b63b8094458b87247d254b0cc1.zip | |
omap3_beagle: remove JFFS2 support.
We do not use JFFS2 by default and it conflicts with
CONFIG_CMD_FS_GENERIC (ls command is the same). Since most of our
BOOTCMD can be simplified by using the FS_GENERIC, dropping JFFS2
Signed-off-by: Nishanth Menon <nm@ti.com>
Acked-by: Joel Fernandes <joelf@ti.com>
| -rw-r--r-- | include/configs/omap3_beagle.h | 8 | 
1 files changed, 0 insertions, 8 deletions
| diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index 7958ca544..8992c35dc 100644 --- a/include/configs/omap3_beagle.h +++ b/include/configs/omap3_beagle.h @@ -134,7 +134,6 @@  #define CONFIG_CMD_CACHE  #define CONFIG_CMD_EXT2		/* EXT2 Support			*/  #define CONFIG_CMD_FAT		/* FAT support			*/ -#define CONFIG_CMD_JFFS2	/* JFFS2 Support		*/  #define CONFIG_CMD_MTDPARTS	/* Enable MTD parts commands */  #define CONFIG_MTD_DEVICE	/* needed for mtdparts commands */  #define MTDIDS_DEFAULT			"nand0=nand" @@ -187,13 +186,6 @@  #define CONFIG_SYS_MAX_NAND_DEVICE	1		/* Max number of NAND */  							/* devices */ -#define CONFIG_JFFS2_NAND -/* nand device jffs2 lives on */ -#define CONFIG_JFFS2_DEV		"nand0" -/* start of jffs2 partition */ -#define CONFIG_JFFS2_PART_OFFSET	0x680000 -#define CONFIG_JFFS2_PART_SIZE		0xf980000	/* size of jffs2 */ -							/* partition */  /* Environment information */  #define CONFIG_BOOTDELAY		3 |