diff --git a/package/mtd/mtd.mk b/package/mtd/mtd.mk index 0de14dbcba..3477460200 100644 --- a/package/mtd/mtd.mk +++ b/package/mtd/mtd.mk @@ -27,6 +27,12 @@ MTD_CONF_OPTS += --with-crypto else MTD_CONF_OPTS += --without-crypto endif +ifeq ($(BR2_PACKAGE_ZSTD),y) +MTD_DEPENDENCIES += zstd +MTD_CONF_OPTS += --with-zstd +else +MTD_CONF_OPTS += --without-zstd +endif else MTD_CONF_OPTS += --without-ubifs endif @@ -46,7 +52,7 @@ else MTD_CONF_OPTS += --without-xattr endif -HOST_MTD_DEPENDENCIES = host-zlib host-lzo host-util-linux +HOST_MTD_DEPENDENCIES = host-zlib host-lzo host-util-linux host-zstd HOST_MTD_CONF_OPTS = \ --with-jffs \ --with-ubifs \