diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-07-06 22:58:47 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-07-07 09:58:21 +0200 |
commit | cf253d388f1a55414996da4c1ea6a38250a100c9 (patch) | |
tree | 37dfa40c85e7548fbc6730d265cfd703a12725f9 | |
parent | 015d68c84c9c6ad6f6d41f181d19d813f309088b (diff) | |
download | buildroot-cf253d388f1a55414996da4c1ea6a38250a100c9.tar.gz buildroot-cf253d388f1a55414996da4c1ea6a38250a100c9.zip |
mtd: fix build issues on older hosts
Building the MTD test programs requires the MS_DIRSYNC, which is not
necessarily available on old build machines. But obviously, MTD test
programs are not needed, so we can simply disable them, as they were
prior to the migration to mtd 2.0.
Fixes:
http://autobuild.buildroot.net/results/21e1ad2a4560b6d3ba6490d20ae064246e66d5c1/
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/mtd/mtd.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/mtd/mtd.mk b/package/mtd/mtd.mk index 7c3a2b6bda..043f1c722a 100644 --- a/package/mtd/mtd.mk +++ b/package/mtd/mtd.mk @@ -45,6 +45,7 @@ MTD_CONF_OPTS += --without-xattr endif HOST_MTD_DEPENDENCIES = host-zlib host-lzo host-e2fsprogs +HOST_MTD_CONF_OPTS = --disable-tests MKFS_JFFS2 = $(HOST_DIR)/sbin/mkfs.jffs2 SUMTOOL = $(HOST_DIR)/sbin/sumtool |