X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/0781686bc6c2e3d0b1c8645a1719c76bbfe60272..06265758beb1721526360aa01176dd70d8a9e1d4:/target/linux/image/Makefile diff --git a/target/linux/image/Makefile b/target/linux/image/Makefile index e44a46acd..a5141cb54 100644 --- a/target/linux/image/Makefile +++ b/target/linux/image/Makefile @@ -2,46 +2,41 @@ include $(TOPDIR)/rules.mk KDIR:=$(BUILD_DIR)/linux-$(KERNEL)-$(BOARD) -ifeq ($(BR2_TARGET_ROOTFS_JFFS2),y) +ifeq ($(CONFIG_TARGET_ROOTFS_JFFS2),y) include ./jffs2.mk endif -ifeq ($(BR2_TARGET_ROOTFS_SQUASHFS_LZMA),y) +ifeq ($(CONFIG_TARGET_ROOTFS_SQUASHFS_LZMA),y) include ./squashfs.mk endif -ifeq ($(BR2_TARGET_ROOTFS_TGZ),y) +ifeq ($(CONFIG_TARGET_ROOTFS_TGZ),y) include ./tgz.mk endif -prepare: - $(MAKE) prepare-targets $(MAKE_TRACE) -compile: - $(MAKE) compile-targets $(MAKE_TRACE) -install: - $(MAKE) install-targets $(MAKE_TRACE) +prepare: FORCE + $(MAKE) prepare-targets +compile: FORCE + $(MAKE) compile-targets +install: FORCE + $(MAKE) install-targets -.PHONY: prepare compile install - -$(BOARD)-compile: - @$(TRACE) target/linux/image/$(BOARD)/prepare +$(BOARD)-compile: FORCE $(MAKE) -C $(BOARD) prepare - @$(TRACE) target/linux/image/$(BOARD)/compile $(MAKE) -C $(BOARD) compile -install-ib: - @$(TRACE) target/linux/image/$(BOARD)/install-ib +install-ib: FORCE -$(MAKE) -C $(BOARD) IB_DIR="$(IB_DIR)" install-ib mkdir -p $(IB_DIR)/build_$(ARCH)/linux-$(KERNEL)-$(BOARD) - cp $(BUILD_DIR)/linux-$(KERNEL)-$(BOARD)/kernel[-_]*.ipk $(IB_DIR)/build_$(ARCH)/linux-$(KERNEL)-$(BOARD)/ + $(CP) $(BUILD_DIR)/linux-$(KERNEL)-$(BOARD)/kernel[-_]*.ipk $(IB_DIR)/build_$(ARCH)/linux-$(KERNEL)-$(BOARD)/ -install-prepare: - find $(KDIR)/root -type f -not -perm +0100 | xargs chmod 0644 - find $(KDIR)/root -type f -perm +0100 | xargs chmod 0755 - find $(KDIR)/root -type d | xargs chmod 0755 - chmod 0777 $(KDIR)/root/tmp +install-prepare: FORCE + 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 rebuild: clean prepare compile install -clean: - $(MAKE) clean-targets $(MAKE_TRACE) - +clean: FORCE + $(MAKE) clean-targets