hopefully the last fix for the aruba image stuff
[openwrt.git] / target / linux / image / aruba / Makefile
index 4888dad..c8dab05 100644 (file)
@@ -19,16 +19,19 @@ define Image/Prepare
        $(MAKE) -C ../generic/lzma-loader $(LOADER_MAKEOPTS) clean compile
 endef
 
-define Image/Build
+define Image/BuildKernel
        ./addVersion -n ArubaOS $(KDIR)/loader.elf $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL).ari version
-ifneq ($(CONFIG_ARUBA_RAMDISK),y)
-ifeq ($(1),jffs2-64k)
-endif
+endef
+
+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
-endif
+endef
+
+define Image/Build
+       $(call Image/Build/$(1),$(1))
 endef
 
 $(eval $(call BuildImage))
This page took 0.024197 seconds and 4 git commands to generate.