diff options
author | Stefano Babic <sbabic@denx.de> | 2010-04-08 17:23:52 +0200 |
---|---|---|
committer | trix <trix@windriver.com> | 2010-04-30 05:23:26 -0500 |
commit | c9d944d35e7904229c5333e761bce9d4324971f8 (patch) | |
tree | de2335e7d60dbb0c240b3021a55a29a8c71cfa0c /include/configs/qong.h | |
parent | eab40f819ddd50eef465619db1386c053b59a95b (diff) | |
download | u-boot-imx-c9d944d35e7904229c5333e761bce9d4324971f8.zip u-boot-imx-c9d944d35e7904229c5333e761bce9d4324971f8.tar.gz u-boot-imx-c9d944d35e7904229c5333e761bce9d4324971f8.tar.bz2 |
MX31: Add UBI support to QONG module
The UBI/UBIFS support is added to the QONG module.
Signed-off-by: Stefano Babic <sbabic@denx.de>
Diffstat (limited to 'include/configs/qong.h')
-rw-r--r-- | include/configs/qong.h | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/include/configs/qong.h b/include/configs/qong.h index 669b586..baf8481 100644 --- a/include/configs/qong.h +++ b/include/configs/qong.h @@ -41,7 +41,7 @@ /* * Size of malloc() pool */ -#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 128 * 1024) +#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 1024 * 1024) /* size in bytes reserved for initial data */ #define CONFIG_SYS_GBL_DATA_SIZE 128 @@ -97,7 +97,6 @@ #define CONFIG_CMD_DHCP #define CONFIG_CMD_NET #define CONFIG_CMD_MII -#define CONFIG_CMD_JFFS2 #define CONFIG_CMD_NAND /* @@ -229,7 +228,7 @@ extern int qong_nand_rdy(void *chip); #define CONFIG_ENV_IS_IN_FLASH 1 #define CONFIG_ENV_SECT_SIZE 0x20000 #define CONFIG_ENV_SIZE CONFIG_ENV_SECT_SIZE -#define CONFIG_ENV_ADDR (CONFIG_SYS_FLASH_BASE + 0x40000) +#define CONFIG_ENV_ADDR (CONFIG_SYS_FLASH_BASE + 0x60000) /* Address and size of Redundant Environment Sector */ #define CONFIG_ENV_OFFSET_REDUND (CONFIG_ENV_OFFSET + CONFIG_ENV_SIZE) @@ -248,9 +247,15 @@ extern int qong_nand_rdy(void *chip); #define CONFIG_SYS_FLASH_PROTECTION 1 /* - * JFFS2 partitions + * Filesystem */ +#define CONFIG_CMD_JFFS2 +#define CONFIG_CMD_UBI +#define CONFIG_CMD_UBIFS +#define CONFIG_RBTREE +#define CONFIG_MTD_PARTITIONS #define CONFIG_CMD_MTDPARTS +#define CONFIG_LZO #define CONFIG_MTD_DEVICE /* needed for mtdparts commands */ #define CONFIG_FLASH_CFI_MTD #define MTDIDS_DEFAULT "nor0=physmap-flash.0" |