diff options
author | Eric Andersen <andersen@codepoet.org> | 2005-03-09 17:27:14 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2005-03-09 17:27:14 +0000 |
commit | 318cae634df9379c90cf5dd2b68a63766cfc3474 (patch) | |
tree | bbf18bdb1302dfbdc464019d9253ea6f043d17b0 /package/mtd/Config.in | |
parent | c3cdda3ce1c602b7b3102d66937117c8e2173153 (diff) | |
download | buildroot-novena-318cae634df9379c90cf5dd2b68a63766cfc3474.tar.gz buildroot-novena-318cae634df9379c90cf5dd2b68a63766cfc3474.zip |
patch from pgrayson:
This patch does a couple mtd related things:
* Updates to the latest (2005/01/22) mtd from debian.org
* Fixes weird behavior where mkfs.jffs2 built for target was put into the staging dir.
* Shows the mtd package in the package selection menu. When mtd is enabled, the various mtd utilities appear and can be individually selected.
* Added a config item for sumtool, which is part of the mtd-utils and helps manage the new summary feature in jffs2 images.
* Fixed mtd build dependency problem. The mtd utils dynamically link with libz.so, therefore the zlib package is prerequisite for any of the mtd utilities.
Diffstat (limited to 'package/mtd/Config.in')
-rw-r--r-- | package/mtd/Config.in | 24 |
1 files changed, 15 insertions, 9 deletions
diff --git a/package/mtd/Config.in b/package/mtd/Config.in index b05ffe801..390514c4e 100644 --- a/package/mtd/Config.in +++ b/package/mtd/Config.in @@ -1,6 +1,7 @@ config BR2_PACKAGE_MTD bool "mtd/jffs2 utilities" default n + select BR2_PACKAGE_ZLIB help Build mtd/jffs utilities @@ -8,7 +9,7 @@ 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 @@ -39,6 +40,11 @@ config BR2_PACKAGE_MTD_JFFS2DUMP default y depends on BR2_PACKAGE_MTD +config BR2_PACKAGE_MTD_SUMTOOL + bool "sumtool" + default y + depends on BR2_PACKAGE_MTD + config BR2_PACKAGE_MTD_FTL_CHECK bool "ftl_check" default y @@ -48,22 +54,22 @@ 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 @@ -73,22 +79,22 @@ 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 |