summaryrefslogtreecommitdiff
path: root/package/mtd/Config.in
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2005-01-23 11:16:11 +0000
committerEric Andersen <andersen@codepoet.org>2005-01-23 11:16:11 +0000
commitdda90723ce4a6d8c84dbf7c66ef8b2c4e5d67b2c (patch)
treea8dbd06e4860f91530b93a1c1a098aa0beff2760 /package/mtd/Config.in
parent7be239c03f7b5366ad0c4c118955492c1529861c (diff)
Patch from gtj: http://bugs.uclibc.org/view.php?id=40
0000040: Adds options to jffs2 filesystem creation Brings jffs2 up to the 20041007 build level so it will compile with both 2.4 and 2.6 kernels. Adds ability to specify eraseblock and pad sizes, permissions squash, big/little endian and device table in the configuration. Also adds capability to copy the resulting image to a secondary location like a tftp server's root directory. mtd.patch adds capabilities of the previously attached patch plus allows you to compile a version of the utilities to run on the target system. So now there's a set of config options under package to compile the utils for distribution to the target and a set of config options under target to create a jffs2 filesystem.
Diffstat (limited to 'package/mtd/Config.in')
-rw-r--r--package/mtd/Config.in99
1 files changed, 99 insertions, 0 deletions
diff --git a/package/mtd/Config.in b/package/mtd/Config.in
new file mode 100644
index 000000000..a6cd22d62
--- /dev/null
+++ b/package/mtd/Config.in
@@ -0,0 +1,99 @@
+
+menuconfig BR2_PACKAGE_MTD
+ bool "mtd/jffs2 utilities"
+ default n
+ help
+ Build mtd/jffs utilities
+
+config BR2_PACKAGE_MTD_FLASH_ERASE
+ bool "flash_erase"
+ default y
+ depends on BR2_PACKAGE_MTD
+
+config BR2_PACKAGE_MTD_FLASH_ERASEASLL
+ bool "flash_eraseall"
+ default y
+ depends on BR2_PACKAGE_MTD
+
+config BR2_PACKAGE_MTD_FLASH_INFO
+ bool "flash_info"
+ default y
+ depends on BR2_PACKAGE_MTD
+
+config BR2_PACKAGE_MTD_FLASH_LOCK
+ bool "flash_loco"
+ default y
+ depends on BR2_PACKAGE_MTD
+
+config BR2_PACKAGE_MTD_FLASH_UNLOCK
+ bool "flash_unlock"
+ default y
+ depends on BR2_PACKAGE_MTD
+
+config BR2_PACKAGE_MTD_FLASHCP
+ bool "flashcp"
+ default y
+ depends on BR2_PACKAGE_MTD
+
+config BR2_PACKAGE_MTD_JFFS2DUMP
+ bool "jffs2dump"
+ default y
+ depends on BR2_PACKAGE_MTD
+
+config BR2_PACKAGE_MTD_FTL_CHECK
+ bool "ftl_check"
+ default y
+ depends on BR2_PACKAGE_MTD
+
+config BR2_PACKAGE_MTD_FTL_FORMAT
+ bool "ftl_format"
+ default y
+ depends on BR2_PACKAGE_MTD
+
+config BR2_PACKAGE_MTD_NFTL_FORMAT
+ bool "nftl_format"
+ default y
+ depends on BR2_PACKAGE_MTD
+
+config BR2_PACKAGE_MTD_NFTLDUMP
+ bool "nftldump"
+ default y
+ depends on BR2_PACKAGE_MTD
+
+config BR2_PACKAGE_MTD_MKFSJFFS2
+ bool "mkfs.jffs2"
+ default y
+ depends on BR2_PACKAGE_MTD
+
+config BR2_PACKAGE_MTD_MKFSJFFS
+ bool "mkfs.jffs"
+ default y
+ depends on BR2_PACKAGE_MTD
+
+config BR2_PACKAGE_MTD_NANDDUMP
+ bool "nanddump"
+ default y
+ depends on BR2_PACKAGE_MTD
+
+config BR2_PACKAGE_MTD_NANDWRITE
+ bool "nandwrite"
+ default y
+ depends on BR2_PACKAGE_MTD
+
+config BR2_PACKAGE_MTD_MTD_DEBUG
+ bool "mtd_debug"
+ default y
+ depends on BR2_PACKAGE_MTD
+
+config BR2_PACKAGE_MTD_DOCFDISK
+ bool "docfdisk"
+ default y
+ depends on BR2_PACKAGE_MTD
+
+config BR2_PACKAGE_MTD_DOC_LOADBIOS
+ bool "doc_loadbios"
+ default y
+ depends on BR2_PACKAGE_MTD
+
+
+