From 11e5eaa1d553b3ea33e87f9cc5aab044acdbfa2a Mon Sep 17 00:00:00 2001 From: nico Date: Sat, 13 Aug 2005 07:33:34 +0000 Subject: build jffs2 image too since it works with CF and MTD block emulation git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1618 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- target/linux/image/soekris/Makefile | 27 +++++++++++++++++++++++++-- 1 file changed, 25 insertions(+), 2 deletions(-) (limited to 'target/linux') diff --git a/target/linux/image/soekris/Makefile b/target/linux/image/soekris/Makefile index bfb2770ef..0b4fba9d8 100644 --- a/target/linux/image/soekris/Makefile +++ b/target/linux/image/soekris/Makefile @@ -2,9 +2,32 @@ include $(TOPDIR)/rules.mk KDIR:=$(BUILD_DIR)/linux-$(KERNEL)-$(BOARD) -$(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-rootfs.tar.gz: $(KDIR)/rootfs.tar.gz + +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)/bzImage + cp $^ $@ + + prepare: compile: -install: $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-rootfs.tar.gz +install: $(BIN_DIR)/openwrt-$(BOARD)-$(KERNEL)-vmlinuz + -- cgit v1.2.3