summaryrefslogtreecommitdiffstats
path: root/target/linux
diff options
context:
space:
mode:
authornico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-08-13 07:33:34 +0000
committernico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-08-13 07:33:34 +0000
commit11e5eaa1d553b3ea33e87f9cc5aab044acdbfa2a (patch)
tree53ea4d5c756f99da4b593cc32c3f989f5420182e /target/linux
parent2cbdc21c76a2c08690b7c3463231c6319827713c (diff)
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
Diffstat (limited to 'target/linux')
-rw-r--r--target/linux/image/soekris/Makefile27
1 files changed, 25 insertions, 2 deletions
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
+