diff options
Diffstat (limited to 'target/linux')
-rw-r--r-- | target/linux/rdc/image/Makefile | 11 | ||||
-rw-r--r-- | target/linux/rdc/profiles/DIR-450.mk | 1 |
2 files changed, 9 insertions, 3 deletions
diff --git a/target/linux/rdc/image/Makefile b/target/linux/rdc/image/Makefile index 52a461c..3382a1d 100644 --- a/target/linux/rdc/image/Makefile +++ b/target/linux/rdc/image/Makefile @@ -41,10 +41,17 @@ define Image/Build/wl153 $(RM) $(KDIR)/bzSize.tmp $(KDIR)/bzSize $(KDIR)/rdSize endef +define Image/Build/dir450 + 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) $(KDIR)/root.tmp + cp $(KDIR)/root.$(1) $(BIN_DIR)/onlyrootfs-$(BOARD)-$(1)-$(2).img +endef + define Image/Build $(CP) $(KDIR)/bzImage $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL).bzImage - $(call Image/Build/ar525w,$(1),ar525w,$(patsubst jffs2-%k,%,$(1))) - $(call Image/Build/wl153,$(1),wl153,$(patsubst jffs2-%k,%,$(1))) + $(call Image/Build/$(PROFILE),$(1),$(PROFILE),$(patsubst jffs2-%k,%,$(1))) endef $(eval $(call BuildImage)) diff --git a/target/linux/rdc/profiles/DIR-450.mk b/target/linux/rdc/profiles/DIR-450.mk index 9b9a68d..0015928 100644 --- a/target/linux/rdc/profiles/DIR-450.mk +++ b/target/linux/rdc/profiles/DIR-450.mk @@ -15,4 +15,3 @@ define Profile/dir450/description endef $(eval $(call Profile,dir450)) - |