summaryrefslogtreecommitdiff
path: root/openwrt/target/linux/image/image.mk
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2006-06-21 02:16:37 +0000
committerFelix Fietkau <nbd@openwrt.org>2006-06-21 02:16:37 +0000
commit4e24e35fa9083cfe57d7b1fe7b51c5f2f6515f18 (patch)
tree379281bd9ec7a759ee793459a5b441d36ccbb5be /openwrt/target/linux/image/image.mk
parent99bc02a12be0b7725b2917e2b25c25e446f67717 (diff)
downloadmtk-20170518-4e24e35fa9083cfe57d7b1fe7b51c5f2f6515f18.zip
mtk-20170518-4e24e35fa9083cfe57d7b1fe7b51c5f2f6515f18.tar.gz
mtk-20170518-4e24e35fa9083cfe57d7b1fe7b51c5f2f6515f18.tar.bz2
build system cleanup. move shared include files into $(TOPDIR)/include, move lzma, mkfs.* into toolchain/
SVN-Revision: 4032
Diffstat (limited to 'openwrt/target/linux/image/image.mk')
-rw-r--r--openwrt/target/linux/image/image.mk55
1 files changed, 0 insertions, 55 deletions
diff --git a/openwrt/target/linux/image/image.mk b/openwrt/target/linux/image/image.mk
deleted file mode 100644
index 92143d6..0000000
--- a/openwrt/target/linux/image/image.mk
+++ /dev/null
@@ -1,55 +0,0 @@
-include $(TOPDIR)/rules.mk
-
-KDIR:=$(BUILD_DIR)/linux-$(KERNEL)-$(BOARD)
-
-ifneq ($(CONFIG_TARGET_ROOTFS_INITRAMFS),y)
-ifeq ($(CONFIG_TARGET_ROOTFS_JFFS2),y)
-include $(TOPDIR)/target/linux/image/jffs2.mk
-endif
-
-ifeq ($(CONFIG_TARGET_ROOTFS_SQUASHFS_LZMA),y)
-include $(TOPDIR)/target/linux/image/squashfs.mk
-endif
-
-ifeq ($(CONFIG_TARGET_ROOTFS_TGZ),y)
-include $(TOPDIR)/target/linux/image/tgz.mk
-endif
-endif
-
-define Image/mkfs/prepare/default
- find $(BUILD_DIR)/root -type f -not -perm +0100 | xargs chmod 0644
- find $(BUILD_DIR)/root -type f -perm +0100 | xargs chmod 0755
- find $(BUILD_DIR)/root -type d | xargs chmod 0755
- mkdir -p $(BUILD_DIR)/root/tmp
- chmod 0777 $(BUILD_DIR)/root/tmp
-endef
-
-define Image/mkfs/prepare
- $(call Image/mkfs/prepare/default)
-endef
-
-define BuildImage
-compile:
- $(call Build/Compile)
-
-install:
- $(call Image/Prepare)
- $(call Image/mkfs/prepare)
- $(call Image/BuildKernel)
- $(call Image/mkfs/jffs2)
- $(call Image/mkfs/squashfs)
- $(call Image/mkfs/tgz)
-
-clean:
- $(call Build/Clean)
-endef
-
-compile-targets:
-install-targets:
-clean-targets:
-
-source:
-prepare:
-compile: compile-targets
-install: compile install-targets
-clean: clean-targets