X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/636f4cc8ac224f27632009f6314287961d1ccc31..162d022cff3c507cdf3c6d21e5ce5eedaeb46236:/target/linux/rdc-2.6/image/Makefile diff --git a/target/linux/rdc-2.6/image/Makefile b/target/linux/rdc-2.6/image/Makefile index f8398baad..e73d27b04 100644 --- a/target/linux/rdc-2.6/image/Makefile +++ b/target/linux/rdc-2.6/image/Makefile @@ -11,9 +11,27 @@ define Image/Prepare $(CP) $(LINUX_DIR)/arch/i386/boot/bzImage $(KDIR)/bzImage endef +define trxalign/jffs2-128k +bs=128k +endef +define trxalign/jffs2-64k +bs=64k +endef +define trxalign/squashfs +bs=1024 +endef + +define Image/Build/Airlink + touch $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(1)-$(2).img + mv $(KDIR)/root.$(1) $(KDIR)/root.tmp + dd of=$(KDIR)/root.$(1) if=$(KDIR)/root.tmp $(call trxalign/$(1)) conv=sync + rm -f $(KDIR)/root.tmp + $(STAGING_DIR)/bin/airlink -b 1 -j $(shell bash -c 'echo $$[$(3)]') $(KDIR)/bzImage $(KDIR)/root.$(1) $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(1)-$(2).img +endef + define Image/Build - touch $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(1).img - $(STAGING_DIR)/bin/airlink -b 0 -j $(KDIR)/bzImage $(KDIR)/root.$(1) $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(1).img + $(CP) $(KDIR)/bzImage $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL).bzImage + $(call Image/Build/Airlink,$(1),ar525w,$(patsubst jffs2-%k,%,$(1))) endef $(eval $(call BuildImage))