diff options
| author | Ezequiel GarcĂa <ezequiel@vanguardiasur.com.ar> | 2014-01-28 08:39:21 -0300 |
|---|---|---|
| committer | Peter Korsgaard <peter@korsgaard.com> | 2014-02-02 23:02:19 +0100 |
| commit | 5d5b468345d52c0e5888667a2287d11f7f598a5f (patch) | |
| tree | 450002e90b762f32b8fa25ec562d418c8f0432cc | |
| parent | 7229dc67bcf7da6fe88c52f3aa632f82eeda4331 (diff) | |
| download | buildroot-5d5b468345d52c0e5888667a2287d11f7f598a5f.tar.gz buildroot-5d5b468345d52c0e5888667a2287d11f7f598a5f.zip | |
mtd: Allow to select the host variant
If any of the post-image scripts wants to create mtd/ubi images,
we need to expose an option for mtd-tools to be user-selectable.
[Peter: fix include order]
Signed-off-by: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
Acked-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
| -rw-r--r-- | package/Config.in.host | 1 | ||||
| -rw-r--r-- | package/mtd/Config.in.host | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/package/Config.in.host b/package/Config.in.host index 34e84bf340..685a8b8684 100644 --- a/package/Config.in.host +++ b/package/Config.in.host @@ -7,6 +7,7 @@ source "package/genext2fs/Config.in.host" source "package/genimage/Config.in.host" source "package/genpart/Config.in.host" source "package/lpc3250loader/Config.in.host" +source "package/mtd/Config.in.host" source "package/mtools/Config.in.host" source "package/omap-u-boot-utils/Config.in.host" source "package/openocd/Config.in.host" diff --git a/package/mtd/Config.in.host b/package/mtd/Config.in.host new file mode 100644 index 0000000000..3752266156 --- /dev/null +++ b/package/mtd/Config.in.host @@ -0,0 +1,6 @@ +config BR2_PACKAGE_HOST_MTD + bool "host mtd, jffs2 and ubi/ubifs tools" + help + Build mtd, jffs2 and ubi/ubifs tools + + http://www.linux-mtd.infradead.org/ |

