diff options
| author | Felix Fietkau <nbd@openwrt.org> | 2006-06-04 21:57:59 +0000 |
|---|---|---|
| committer | Felix Fietkau <nbd@openwrt.org> | 2006-06-04 21:57:59 +0000 |
| commit | 648e7db52d515812a748d16086152e53ec89ad35 (patch) | |
| tree | 8631ebb89b6ba6ca58bab972aeb07cfaae6b88c8 /openwrt/target/linux/image/xscale | |
| parent | 2b7eb78d8088f6fae439bb3f060b5183fba043da (diff) | |
| download | mtk-20170518-648e7db52d515812a748d16086152e53ec89ad35.zip mtk-20170518-648e7db52d515812a748d16086152e53ec89ad35.tar.gz mtk-20170518-648e7db52d515812a748d16086152e53ec89ad35.tar.bz2 | |
target/linux/image rewrite
SVN-Revision: 3905
Diffstat (limited to 'openwrt/target/linux/image/xscale')
| -rw-r--r-- | openwrt/target/linux/image/xscale/Makefile | 34 |
1 files changed, 7 insertions, 27 deletions
diff --git a/openwrt/target/linux/image/xscale/Makefile b/openwrt/target/linux/image/xscale/Makefile index cc47c25..09616d4 100644 --- a/openwrt/target/linux/image/xscale/Makefile +++ b/openwrt/target/linux/image/xscale/Makefile @@ -1,30 +1,10 @@ -include $(TOPDIR)/rules.mk +include ../image.mk -KDIR:=$(BUILD_DIR)/linux-$(KERNEL)-$(BOARD) - -ifeq ($(FS),jffs2-8MB) -$(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(FS).img: $(KDIR)/root.$(FS) - $(CP) $^ $@ - -install: $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(FS).img -endif - - -ifeq ($(FS),tgz) -$(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-rootfs.tar.gz: $(KDIR)/root.tar.gz - $(CP) $^ $@ - -install: $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-rootfs.tar.gz +define Image/Build +ifneq ($(FS),jffs2-64k) + cp $(KDIR)/root.$(1) $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-$(1).img + cp $(KDIR)/vmlinux $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-vmlinuz endif +endef - -$(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-vmlinuz: $(KDIR)/vmlinux - $(CP) $^ $@ - -clean: -prepare: -compile: -install: $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-vmlinuz -install-ib: FORCE - mkdir -p $(IB_DIR)/build_$(ARCH)/linux-$(KERNEL)-$(BOARD) - $(CP) $(KDIR)/bzImage $(IB_DIR)/build_$(ARCH)/linux-$(KERNEL)-$(BOARD)/ +$(eval $(call BuildImage)) |
