diff options
Diffstat (limited to 'target/linux/image/aruba/Makefile')
-rw-r--r-- | target/linux/image/aruba/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/target/linux/image/aruba/Makefile b/target/linux/image/aruba/Makefile index d68084b26..c8dab056a 100644 --- a/target/linux/image/aruba/Makefile +++ b/target/linux/image/aruba/Makefile @@ -23,13 +23,15 @@ define Image/BuildKernel ./addVersion -n ArubaOS $(KDIR)/loader.elf $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL).ari version endef -ifeq ($(1),jffs2-64k) -define Image/Build +define Image/Build/jffs2-64k @dd if=$(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL).ari of=$(KDIR)/image.tmp bs=655360 conv=sync @cat $(KDIR)/root.$(1) >> $(KDIR)/image.tmp @dd if=$(KDIR)/image.tmp of=$(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(patsubst jffs2-%,jffs2,$(1)).bin bs=3604480 conv=sync @rm -f $(KDIR)/image.tmp endef -endif + +define Image/Build + $(call Image/Build/$(1),$(1)) +endef $(eval $(call BuildImage)) |