From: Gabor Juhos Date: Tue, 23 Jul 2013 10:21:21 +0000 (+0000) Subject: image: fix a typo in JFFS2OPTS to fix jffs2 rootfs generation X-Git-Tag: reboot~9721 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fstaging%2Fchunkeey.git;a=commitdiff_plain;h=ce9e0767b59b02d20fbc5ab015cd3faeed429767 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 SVN-Revision: 37514 --- diff --git a/include/image.mk b/include/image.mk index 80be17afd7..09eda736af 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