summaryrefslogtreecommitdiff
path: root/include/image.mk
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2013-07-23 10:21:21 +0000
committerGabor Juhos <juhosg@openwrt.org>2013-07-23 10:21:21 +0000
commitce9e0767b59b02d20fbc5ab015cd3faeed429767 (patch)
tree1e30b2993593c70b369fd9e455dfd17aaa8c40a3 /include/image.mk
parent9181c569c45f1acc214fc8be6d45ddf8f68955ef (diff)
downloadmtk-20170518-ce9e0767b59b02d20fbc5ab015cd3faeed429767.zip
mtk-20170518-ce9e0767b59b02d20fbc5ab015cd3faeed429767.tar.gz
mtk-20170518-ce9e0767b59b02d20fbc5ab015cd3faeed429767.tar.bz2
image: fix a typo in JFFS2OPTS to fix jffs2 rootfs generation
Due to a typo in the Makefile variable, mkfs.jffs2 is called without the correct parameters. Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 37514
Diffstat (limited to 'include/image.mk')
-rw-r--r--include/image.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/image.mk b/include/image.mk
index 80be17a..09eda73 100644
--- a/include/image.mk
+++ b/include/image.mk
@@ -86,7 +86,7 @@ endef
ifneq ($(CONFIG_TARGET_ROOTFS_JFFS2),)
define Image/mkfs/jffs2
- $(foreach SZ,$(JFFS2_BLOCKSIZE),$(call Image/mkfs/jffs2/sub,$(SZ),$(SZ),$(JFFS2OPS)))
+ $(foreach SZ,$(JFFS2_BLOCKSIZE),$(call Image/mkfs/jffs2/sub,$(SZ),$(SZ),$(JFFS2OPTS)))
endef
endif