From 61c6b8790db8dc5ff65ab4fb7a7f2aa154505132 Mon Sep 17 00:00:00 2001 From: Nicolas Thill Date: Sat, 13 Aug 2005 07:33:34 +0000 Subject: [PATCH] build jffs2 image too since it works with CF and MTD block emulation SVN-Revision: 1618 --- openwrt/target/linux/image/soekris/Makefile | 27 +++++++++++++++++++-- 1 file changed, 25 insertions(+), 2 deletions(-) diff --git a/openwrt/target/linux/image/soekris/Makefile b/openwrt/target/linux/image/soekris/Makefile index bfb2770ef3..0b4fba9d8e 100644 --- a/openwrt/target/linux/image/soekris/Makefile +++ b/openwrt/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 +