summaryrefslogtreecommitdiff
path: root/include/image.mk
diff options
context:
space:
mode:
authorJohn Crispin <john@openwrt.org>2011-07-03 17:37:46 +0000
committerJohn Crispin <john@openwrt.org>2011-07-03 17:37:46 +0000
commitd5205c3ed2dd6b14713ed855fff8bb75616f1d9e (patch)
tree2b99c2c0d9a0702b6f1bc96f984997e01a5ce3a9 /include/image.mk
parent4551f2bfcc97fb2a614b56e27e9b8ef7e814c194 (diff)
downloadmtk-20170518-d5205c3ed2dd6b14713ed855fff8bb75616f1d9e.zip
mtk-20170518-d5205c3ed2dd6b14713ed855fff8bb75616f1d9e.tar.gz
mtk-20170518-d5205c3ed2dd6b14713ed855fff8bb75616f1d9e.tar.bz2
extend squashfs padding for 256k flash sectors
SVN-Revision: 27404
Diffstat (limited to 'include/image.mk')
-rw-r--r--include/image.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/image.mk b/include/image.mk
index ef78a98..c17a2cd 100644
--- a/include/image.mk
+++ b/include/image.mk
@@ -56,9 +56,9 @@ define add_jffs2_mark
echo -ne '\xde\xad\xc0\xde' >> $(1)
endef
-# pad to 4k, 8k, 64k, 128k and add jffs2 end-of-filesystem mark
+# pad to 4k, 8k, 64k, 128k 256k and add jffs2 end-of-filesystem mark
define prepare_generic_squashfs
- $(STAGING_DIR_HOST)/bin/padjffs2 $(1) 4 8 64 128
+ $(STAGING_DIR_HOST)/bin/padjffs2 $(1) 4 8 64 128 256
endef