summaryrefslogtreecommitdiffstats
path: root/target/linux/image/image.mk
blob: 92143d64e8d512b5ce5f062130f2f868ec728de0 (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
52
53
54
55
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