X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/a80d25042b8914774c614f8b2ff26e02bcbe0461..dc472b5e32a361553945b7460a72881a3360f570:/openwrt/target/linux/image/brcm/Makefile diff --git a/openwrt/target/linux/image/brcm/Makefile b/openwrt/target/linux/image/brcm/Makefile index 2cff6af87..339904743 100644 --- a/openwrt/target/linux/image/brcm/Makefile +++ b/openwrt/target/linux/image/brcm/Makefile @@ -14,8 +14,15 @@ lzma-loader-compile: lzma-loader-prepare $(KDIR)/vmlinux.lzma: $(KDIR)/vmlinux cat $^ | $(STAGING_DIR)/bin/lzma e -si -so -eos -lc1 -lp2 -pb2 > $@ || (rm -f $@ && false) +ifeq ($(FS),jffs2-8MB) +TRXALIGN:=-a 0x20000 +endif +ifeq ($(FS),jffs2-4MB) +TRXALIGN:=-a 0x10000 +endif $(BIN_DIR)/openwrt-brcm-$(KERNEL)-$(FS).trx: $(KDIR)/vmlinux.lzma - $(STAGING_DIR)/bin/trx -o $@ $(BUILD_DIR)/loader.gz $(KDIR)/vmlinux.lzma $(KDIR)/root.$(FS) + $(STAGING_DIR)/bin/trx -o $@ $(BUILD_DIR)/loader.gz $(KDIR)/vmlinux.lzma $(TRXALIGN) $(KDIR)/root.$(FS) + ifeq ($(KERNEL),2.4) FSNAME:=$(patsubst jffs2-%,jffs2,$(FS)) @@ -43,5 +50,5 @@ endif clean: lzma-loader-clean prepare: lzma-loader-prepare compile: lzma-loader-compile -install: $(BIN_DIR)/openwrt-brcm-$(KERNEL)-$(FS).trx +install: compile $(BIN_DIR)/openwrt-brcm-$(KERNEL)-$(FS).trx