diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-08-29 21:23:51 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-08-29 21:23:51 +0000 |
commit | f213fdd6f2ec5d1d43bdc400fd9d7a3af4948943 (patch) | |
tree | a353dc338a69065d574164c5218c08b3bb363828 /target/linux | |
parent | 25d7a6da6c49822bb2f8e15056ba5dab7d9f9119 (diff) |
brcm47xx: fix padding of trx images, padjffs2 does not work properly on empty files by default
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28125 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux')
-rw-r--r-- | target/linux/brcm47xx/image/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/brcm47xx/image/Makefile b/target/linux/brcm47xx/image/Makefile index bc2ff3a8f..f7cce1699 100644 --- a/target/linux/brcm47xx/image/Makefile +++ b/target/linux/brcm47xx/image/Makefile @@ -20,7 +20,7 @@ define Image/Prepare clean install echo -ne "\\x00" >> $(KDIR)/loader.gz rm -f $(KDIR)/fs_mark - touch $(KDIR)/fs_mark + echo -ne '\xde\xad\xc0\xde' > $(KDIR)/fs_mark $(call prepare_generic_squashfs,$(KDIR)/fs_mark) endef |