# Common code for generating core reference images # # Copyright (C) 2007-2011 Linux Foundation LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \ file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" # IMAGE_FEATURES control content of the core reference images # # By default we install task-core-boot and task-base packages - this gives us # working (console only) rootfs. # # Available IMAGE_FEATURES: # # - apps-console-core # - x11-base - X11 server + minimal desktop # - x11-sato - OpenedHand Sato environment # - x11-netbook - Metacity based environment for netbooks # - apps-x11-core - X Terminal, file manager, file editor # - apps-x11-games # - apps-x11-pimlico - OpenedHand Pimlico apps # - tools-sdk - SDK # - tools-debug - debugging tools # - tools-profile - profiling tools # - tools-testapps - tools usable to make some device tests # - nfs-server - NFS server (exports / over NFS to everybody) # - ssh-server-dropbear - SSH server (dropbear) # - ssh-server-openssh - SSH server (openssh) # - debug-tweaks - makes an image suitable for development # PACKAGE_GROUP_apps-console-core = "task-core-apps-console" PACKAGE_GROUP_x11-base = "task-core-x11-base" PACKAGE_GROUP_x11-sato = "task-core-x11-sato" PACKAGE_GROUP_x11-netbook = "task-core-x11-netbook" PACKAGE_GROUP_apps-x11-core = "task-core-apps-x11-core" PACKAGE_GROUP_apps-x11-games = "task-core-apps-x11-games" PACKAGE_GROUP_apps-x11-pimlico = "task-core-apps-x11-pimlico" PACKAGE_GROUP_tools-debug = "task-core-tools-debug" PACKAGE_GROUP_tools-profile = "task-core-tools-profile" PACKAGE_GROUP_tools-testapps = "task-core-tools-testapps" PACKAGE_GROUP_tools-sdk = "task-core-sdk task-core-standalone-sdk-target" PACKAGE_GROUP_nfs-server = "task-core-nfs-server" PACKAGE_GROUP_ssh-server-dropbear = "task-core-ssh-dropbear" PACKAGE_GROUP_ssh-server-openssh = "task-core-ssh-openssh" PACKAGE_GROUP_package-management = "${ROOTFS_PKGMANAGE}" PACKAGE_GROUP_qt4-pkgs = "task-core-qt-demos" POKY_BASE_INSTALL = '\ task-core-boot \ task-base-extended \ \ ${@base_contains("IMAGE_FEATURES", "package-management", "", "${ROOTFS_PKGMANAGE_BOOTSTRAP}",d)} \ \ ${POKY_EXTRA_INSTALL} \ ' POKY_EXTRA_INSTALL ?= "" IMAGE_INSTALL ?= "${POKY_BASE_INSTALL}" X11_IMAGE_FEATURES = "x11-base apps-x11-core package-management" ENHANCED_IMAGE_FEATURES = "${X11_IMAGE_FEATURES} apps-x11-games apps-x11-pimlico package-management" SATO_IMAGE_FEATURES = "${ENHANCED_IMAGE_FEATURES} x11-sato ssh-server-dropbear" inherit image # Create /etc/timestamp during image construction to give a reasonably sane default time setting ROOTFS_POSTPROCESS_COMMAND += "rootfs_update_timestamp ; " # Zap the root password if debug-tweaks feature is not enabled ROOTFS_POSTPROCESS_COMMAND += '${@base_contains("IMAGE_FEATURES", "debug-tweaks", "", "zap_root_password ; ",d)}' lper?id=23402315ce01071f30d7ec0c5ca7563ce41f1cc6'>helper/membuf.c
blob: 766364a88e7066dbdba5281927012c1f1c9fbe49 (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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240