diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-01-24 23:18:08 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-01-24 23:18:08 +0000 |
commit | 28f4689413206f9943e5a6c2f93689e66ef24f04 (patch) | |
tree | 84e616e57cd975dde2282eddf57ffbf03950d21f /target/jffs2/Config.in | |
parent | 77a3b8679c1d662195453eafb23b3d3b2c01ede4 (diff) | |
download | buildroot-novena-28f4689413206f9943e5a6c2f93689e66ef24f04.tar.gz buildroot-novena-28f4689413206f9943e5a6c2f93689e66ef24f04.zip |
- Additional JFFS2 options to support Dataflash (Ulf Samuelsson)
- cleanup a bit while at it
Diffstat (limited to 'target/jffs2/Config.in')
-rw-r--r-- | target/jffs2/Config.in | 25 |
1 files changed, 22 insertions, 3 deletions
diff --git a/target/jffs2/Config.in b/target/jffs2/Config.in index 7ee0b7051..a16848ef5 100644 --- a/target/jffs2/Config.in +++ b/target/jffs2/Config.in @@ -5,6 +5,26 @@ config BR2_TARGET_ROOTFS_JFFS2 help Build a jffs2 root filesystem +config BR2_TARGET_ROOTFS_JFFS2_DEFAULT_PAGESIZE + bool "Use default 4 kB pagesize" + depends on BR2_TARGET_ROOTFS_JFFS2 + default y + +config BR2_TARGET_ROOTFS_JFFS2_PAGESIZE + hex "Page Size (0x0 = Use default 4 kB)" + depends on !BR2_TARGET_ROOTFS_JFFS2_DEFAULT_PAGESIZE + default 0x420 + help + Set to pagesize of memory (Dataflash is 0x210 or 0x420) + +config BR2_TARGET_ROOTFS_JFFS2_NOCLEANMARKER + bool "Do not use Cleanmarker" + depends on !BR2_TARGET_ROOTFS_JFFS2_DEFAULT_PAGESIZE + default y + help + Do not use cleanmarkers if using NAND flash or Dataflash where + the pagesize is not a power of 2 + config BR2_TARGET_ROOTFS_JFFS2_EBSIZE hex "Erase block size" depends on BR2_TARGET_ROOTFS_JFFS2 @@ -19,7 +39,7 @@ config BR2_TARGET_ROOTFS_JFFS2_PADSIZE depends on BR2_TARGET_ROOTFS_JFFS2_PAD default 0x0 help - Set to 0x0 to pad to end of erase block. + Set to 0x0 to pad to end of erase block. choice prompt "Endianess" @@ -50,6 +70,5 @@ config BR2_TARGET_ROOTFS_JFFS2_COPYTO depends on BR2_TARGET_ROOTFS_JFFS2 default "" help - Copies the resulting image to a secondary location. - + Copies the resulting image to a secondary location. |