summaryrefslogtreecommitdiffstats
path: root/target/linux/image/Makefile
blob: 68b1bd39c7276cbbf63b3d7fa7f02fd2dd209154 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
include $(TOPDIR)/rules.mk

KDIR:=$(BUILD_DIR)/linux-$(KERNEL)-$(BOARD)

ifeq ($(BR2_TARGET_ROOTFS_JFFS2),y)
include ./jffs2.mk
endif

ifeq ($(BR2_TARGET_ROOTFS_SQUASHFS_LZMA),y)
include ./squashfs.mk
endif

ifeq ($(BR2_TARGET_ROOTFS_TGZ),y)
include ./tgz.mk
endif

prepare:
	@$(PKG_TRACE) Preparing...
	$(MAKE) prepare-targets $(MAKE_TRACE)
compile:
	@$(PKG_TRACE) Compiling...
	$(MAKE) compile-targets $(MAKE_TRACE)
install:
	@$(PKG_TRACE) Installing...
	$(MAKE) install-targets $(MAKE_TRACE)

.PHONY: prepare compile install

$(BOARD)-compile:
	@$(TRACE) target/linux/image/$(BOARD)/prepare
	$(MAKE) -C $(BOARD) prepare
	@$(TRACE) target/linux/image/$(BOARD)/compile
	$(MAKE) -C $(BOARD) compile

install-ib:
	@$(TRACE) target/linux/image/$(BOARD)/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
	chmod 0777 $(KDIR)/root/tmp

rebuild: clean prepare compile install
clean:
	@$(PKG_TRACE) Cleaning...
	$(MAKE) clean-targets $(MAKE_TRACE)