diff options
author | Bernhard Walle <walle@corscience.de> | 2012-04-03 00:37:03 +0000 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2012-04-16 14:47:58 +0200 |
commit | 36f3aab2dd6e970244c555a858943747f97ab8f0 (patch) | |
tree | 2acb44acbba672dca169f142b51648ff11df6c1b /include | |
parent | 07277e740ba9422f603bbcd97d5a9ab5731fe06d (diff) | |
download | u-boot-imx-36f3aab2dd6e970244c555a858943747f97ab8f0.zip u-boot-imx-36f3aab2dd6e970244c555a858943747f97ab8f0.tar.gz u-boot-imx-36f3aab2dd6e970244c555a858943747f97ab8f0.tar.bz2 |
tricorder: Add UBIFS
Since kernel should be in a ubifs partition, we need UBIFS.
The greater malloc size is needed for UBIFS.
Signed-off-by: Bernhard Walle <walle@corscience.de>
Squashed two commits (UBIFS enabled and malloc size increased) into one.
Signed-off-by: Thomas Weber <weber@corscience.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/tricorder.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/configs/tricorder.h b/include/configs/tricorder.h index ba8847b..d826e19 100644 --- a/include/configs/tricorder.h +++ b/include/configs/tricorder.h @@ -71,7 +71,7 @@ /* Size of malloc() pool */ #define CONFIG_ENV_SIZE (128 << 10) /* 128 KiB */ /* Sector */ -#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + (512 << 10)) +#define CONFIG_SYS_MALLOC_LEN (1024*1024) /* Hardware drivers */ @@ -139,7 +139,9 @@ #define CONFIG_CMD_MTDPARTS /* Enable MTD parts commands */ #define CONFIG_CMD_NAND /* NAND support */ #define CONFIG_CMD_NAND_LOCK_UNLOCK /* nand (un)lock commands */ -#define CONFIG_CMD_UBI /* UBIFS commands */ +#define CONFIG_CMD_UBI /* UBI commands */ +#define CONFIG_CMD_UBIFS /* UBIFS commands */ +#define CONFIG_LZO /* LZO is needed for UBIFS */ #undef CONFIG_CMD_NET #undef CONFIG_CMD_NFS |