diff options
author | Jonas Gorski <jogo@openwrt.org> | 2015-08-05 13:55:52 +0000 |
---|---|---|
committer | Jonas Gorski <jogo@openwrt.org> | 2015-08-05 13:55:52 +0000 |
commit | dbe4173b206b4180e1ce03e545b63ab40ccb1cc1 (patch) | |
tree | e5107e4b2e3379b96a3bab6ff7abcf87f03242af /target/linux/lantiq | |
parent | 3368b4799b527a4179d9eac77acc90ce81125964 (diff) | |
download | upstream-dbe4173b206b4180e1ce03e545b63ab40ccb1cc1.tar.gz upstream-dbe4173b206b4180e1ce03e545b63ab40ccb1cc1.tar.bz2 upstream-dbe4173b206b4180e1ce03e545b63ab40ccb1cc1.zip |
image: fix jffs2(_nand) image generation
Variables dependend on JFFS2_BLOCKSIZE and NANDBLOCK_SIZE are used
for template generation, so need to be present before inclusion of
image.mk in target image Makefiles.
So move all declarations to before any includes.
Fixes: r42878 ("image.mk: clean up and parallelize mkfs calls")
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 46564
Diffstat (limited to 'target/linux/lantiq')
-rw-r--r-- | target/linux/lantiq/image/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/target/linux/lantiq/image/Makefile b/target/linux/lantiq/image/Makefile index f89df52102..cbe334cb9c 100644 --- a/target/linux/lantiq/image/Makefile +++ b/target/linux/lantiq/image/Makefile @@ -8,10 +8,11 @@ # boards missing since devicetree update #EASY50712 ARV3527P +JFFS2_BLOCKSIZE = 64k 128k 256k + include $(TOPDIR)/rules.mk include $(INCLUDE_DIR)/image.mk -JFFS2_BLOCKSIZE = 64k 128k 256k KDIR_TMP:=$(KDIR)/tmp LOADER_MAKE := $(NO_TRACE_MAKE) -C lzma-loader KDIR=$(KDIR) |