From a9e05f35146e9ef4e817a4987d071ff88134a654 Mon Sep 17 00:00:00 2001 From: florian Date: Tue, 11 Apr 2006 12:39:33 +0000 Subject: Add an MTX-1 specific patch to avoid functions redefinition at compile-time. Build a full target git-svn-id: svn://svn.openwrt.org/openwrt/trunk@3616 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- openwrt/target/linux/image/au1000/Makefile | 36 ++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 openwrt/target/linux/image/au1000/Makefile (limited to 'openwrt/target/linux/image/au1000/Makefile') diff --git a/openwrt/target/linux/image/au1000/Makefile b/openwrt/target/linux/image/au1000/Makefile new file mode 100644 index 0000000000..04a89f9b19 --- /dev/null +++ b/openwrt/target/linux/image/au1000/Makefile @@ -0,0 +1,36 @@ +include $(TOPDIR)/rules.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 + +endif + + +$(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-vmlinuz: $(KDIR)/vmlinux + $(CP) $^ $@ + + +clean: +prepare: +compile: +install: $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-vmlinuz +install-ib: + mkdir -p $(IB_DIR)/build_$(ARCH)/linux-$(KERNEL)-$(BOARD) + $(CP) $(KDIR)/bzImage $(IB_DIR)/build_$(ARCH)/linux-$(KERNEL)-$(BOARD)/ -- cgit v1.2.3