define Build/cros-gpt cp $@ $@.tmp 2>/dev/null || true ptgen -o $@.tmp -g \ -T cros_kernel -N kernel -p $(CONFIG_TARGET_KERNEL_PARTSIZE)m \ -N rootfs -p $(CONFIG_TARGET_ROOTFS_PARTSIZE)m cat $@.tmp >> $@ rm $@.tmp endef define Build/append-kernel-part dd if=$(IMAGE_KERNEL) bs=$(CONFIG_TARGET_KERNEL_PARTSIZE)M conv=sync >> $@ endef # NB: Chrome OS bootloaders replace the '%U' in command lines with the UUID of # the kernel partition it chooses to boot from. This gives a flexible way to # consistently build and sign kernels that always use the subsequent # (PARTNROFF=1) partition as their rootfs. define Build/cros-vboot $(STAGING_DIR_HOST)/bin/cros-vbutil \ -k $@ -c "root=PARTUUID=%U/PARTNROFF=1" -o $@.new @mv $@.new $@ endef define Device/google_wifi DEVICE_VENDOR := Google DEVICE_MODEL := WiFi (Gale) SOC := qcom-ipq4019 KERNEL_SUFFIX := -fit-zImage.itb.vboot KERNEL = kernel-bin | fit none $$(KDIR)/image-$$(DEVICE_DTS).dtb | cros-vboot KERNEL_NAME := zImage IMAGES += factory.bin IMAGE/factory.bin := cros-gpt | append-kernel-part | append-rootfs # Note: Chromium/Depthcharge-based bootloaders insert a reserved-memory # ramoops node into the Device Tree automatically, so we can use # kmod-ramoops. DEVICE_PACKAGES := partx-utils mkf2fs e2fsprogs \ kmod-fs-ext4 kmod-fs-f2fs kmod-google-firmware \ kmod-ramoops endef TARGET_DEVICES += google_wifi 8.06 upstream openwrtJames
aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/mvebu/image/Makefile
blob: 72b14e344b389357b97769cccd834aac564ab4e2 (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122