1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-02 20:31:07 +03:00

extend squashfs padding for 256k flash sectors

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27404 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
blogic 2011-07-03 17:37:46 +00:00
parent 913081d31b
commit 2672601b6f

View File

@ -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