remove old trace/verbose junk
[openwrt.git] / target / linux / image / Makefile
index b6a6c56..af7cd0e 100644 (file)
@@ -15,10 +15,30 @@ include ./tgz.mk
 endif
 
 prepare:
+       $(MAKE) prepare-targets
 compile:
+       $(MAKE) compile-targets
 install:
+       $(MAKE) install-targets
+
+.PHONY: prepare compile install
+
+$(BOARD)-compile:
        $(MAKE) -C $(BOARD) prepare
        $(MAKE) -C $(BOARD) compile
+
+install-ib:
+       -$(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)/   
+
+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
+       mkdir -p $(KDIR)/root/tmp
+       chmod 0777 $(KDIR)/root/tmp
+
 rebuild: clean prepare compile install
 clean:
-
+       $(MAKE) clean-targets
This page took 0.019357 seconds and 4 git commands to generate.