forked from kernelci/kernelci-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kci_build
executable file
·428 lines (335 loc) · 13.6 KB
/
kci_build
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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
#!/usr/bin/env python3
#
# Copyright (C) 2018, 2019, 2020, 2021 Collabora Limited
# Author: Guillaume Tucker <guillaume.tucker@collabora.com>
#
# This module is free software; you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free
# Software Foundation; either version 2.1 of the License, or (at your option)
# any later version.
#
# This library is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
# details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this library; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
import sys
from kernelci.cli import Args, Command, parse_opts
import kernelci
import kernelci.build
import kernelci.config
import kernelci.storage
class cmd_validate(Command):
help = "Validate the YAML configuration"
opt_args = [Args.verbose]
def __call__(self, configs, args):
# ToDo: Use jsonschema
entries = [
'trees', 'fragments', 'build_configs',
]
err = kernelci.config.validate_yaml(opts.yaml_config, entries)
if err:
print(err)
return False
return True
class cmd_list_configs(Command):
help = "List the build configurations"
def __call__(self, configs, args):
for conf_name in list(configs['build_configs'].keys()):
print(conf_name)
return True
class cmd_check_new_commit(Command):
help = "Check if a new commit is available on a branch"
args = [Args.build_config, Args.storage]
def __call__(self, configs, args):
conf = configs['build_configs'][args.build_config]
update = kernelci.build.check_new_commit(conf, args.storage)
if update is False or update is True:
return update
print(update)
return True
class cmd_update_last_commit(Command):
help = "Update the last commit file on the remote storage server"
args = [Args.build_config, Args.api, Args.db_token, Args.commit]
def __call__(self, configs, args):
conf = configs['build_configs'][args.build_config]
kernelci.build.set_last_commit(
conf, args.api, args.db_token, args.commit)
return True
class cmd_tree_branch(Command):
help = "Print the name of the tree and branch for a given build config"
args = [Args.build_config]
def __call__(self, configs, args):
conf = configs['build_configs'][args.build_config]
print(conf.tree.name)
print(conf.tree.url)
print(conf.branch)
return True
class cmd_update_mirror(Command):
help = "Update the local kernel git mirror"
args = [Args.build_config, Args.mirror]
def __call__(self, configs, args):
conf = configs['build_configs'][args.build_config]
kernelci.build.update_mirror(conf, args.mirror)
return True
class cmd_update_repo(Command):
help = "Update the local kernel repository checkout"
args = [Args.build_config, Args.kdir]
opt_args = [Args.mirror]
def __call__(self, configs, args):
conf = configs['build_configs'][args.build_config]
kernelci.build.update_repo(conf, args.kdir, args.mirror)
return True
class cmd_describe(Command):
help = "Print the git commit, describe and verbose describe from kdir"
args = [Args.build_config, Args.kdir]
def __call__(self, configs, args):
conf = configs['build_configs'][args.build_config]
commit = kernelci.build.head_commit(args.kdir)
describe = kernelci.build.git_describe(conf.tree.name, args.kdir)
verbose = kernelci.build.git_describe_verbose(args.kdir)
print(commit)
print(describe)
print(verbose or describe)
return True
class cmd_generate_fragments(Command):
help = "Generate the config fragment files in kdir"
args = [Args.build_config, Args.kdir]
def __call__(self, configs, args):
conf = configs['build_configs'][args.build_config]
kernelci.build.generate_fragments(conf, args.kdir)
return True
class cmd_generate_defconfig_fragments(Command):
help = "Generate the config fragment files for a given defconfig"
args = [Args.defconfig, Args.kdir]
def __call__(self, configs, args):
fragments = configs['fragments']
split = args.defconfig.split('+')
defconfig = split.pop(0)
for part in split:
frag = fragments.get(part)
if frag and frag.configs:
kernelci.build.generate_config_fragment(frag, args.kdir)
return True
class cmd_expand_fragments(Command):
help = "Expand a defconfig string with full fragment paths"
args = [Args.defconfig]
def __call__(self, configs, args):
frags = configs['fragments']
split = args.defconfig.split('+')
expanded = [split.pop(0)]
for part in split:
frag = frags.get(part)
if frag:
expanded.append(frag.path)
else:
expanded.append(part)
print('+'.join(expanded))
return True
class cmd_push_tarball(Command):
help = "Create and up a source tarball to the remote storage server"
args = [Args.build_config, Args.kdir, Args.storage,
Args.api, Args.db_token]
opt_args = [Args.db_config] # This should become mandatory
def __call__(self, configs, args):
conf = configs['build_configs'][args.build_config]
func_args = (conf, args.kdir, args.storage, args.api, args.db_token)
if not all(func_args):
print("Invalid arguments")
return False
tarball_url = kernelci.build.push_tarball(*func_args)
if not tarball_url:
return False
print(tarball_url)
return True
class cmd_list_variants(Command):
help = "Print the list of build variants for a given build configuration"
args = [Args.build_config]
def __call__(self, configs, args):
conf = configs['build_configs'][args.build_config]
for variant in conf.variants:
print(variant.name)
return True
class cmd_arch_list(Command):
help = "Print the list of CPU architecture names for a given build variant"
args = [Args.build_config, Args.variant]
def __call__(self, configs, args):
conf = configs['build_configs'][args.build_config]
variant = conf.get_variant(args.variant)
for arch in variant.arch_list:
print(arch)
return True
def _show_build_env(build_env, arch=None):
print(build_env.name)
print(build_env.cc)
print(build_env.cc_version)
if arch:
print(build_env.get_arch_name(arch) or '')
print(build_env.get_cross_compile(arch) or '')
print(build_env.get_cross_compile_compat(arch) or '')
class cmd_get_build_env(Command):
help = "Print the build environment parameters for a given build variant"
args = [Args.build_config, Args.variant]
opt_args = [Args.arch]
def __call__(self, configs, args):
conf = configs['build_configs'][args.build_config]
variant = conf.get_variant(args.variant)
_show_build_env(variant.build_environment, args.arch)
return True
class cmd_get_reference(Command):
help = "Print reference tree and branch for bisections"
args = [Args.tree_name, Args.branch]
def __call__(self, configs, args):
for conf in configs['build_configs'].values():
if conf.tree.name == args.tree_name and conf.branch == args.branch:
if conf.reference:
print(conf.reference.tree.url)
print(conf.reference.tree.name)
print(conf.reference.branch)
return True
return False
class cmd_show_build_env(Command):
help = "Show parameters of a given build environment"
args = [Args.build_env]
opt_args = [Args.arch]
def __call__(self, configs, args):
build_env = configs['build_environments'][args.build_env]
_show_build_env(build_env, args.arch)
return True
class cmd_list_kernel_configs(Command):
help = "List the kernel configs to build for a given build configuration"
args = [Args.build_config, Args.kdir]
opt_args = [Args.variant, Args.arch]
def __call__(self, configs, args):
conf = configs['build_configs'][args.build_config]
configs = kernelci.build.list_kernel_configs(
conf, args.kdir, args.variant, args.arch)
for item in configs:
print(' '.join(item))
return True
class cmd_init_bmeta(Command):
help = "Create initial bmeta.json"
args = [Args.kdir]
opt_args = [Args.output, Args.build_config, Args.install,
Args.tree_name, Args.tree_url, Args.branch,
Args.commit, Args.describe, Args.describe_verbose,
Args.build_env, Args.arch]
def __call__(self, configs, args):
if args.build_config:
conf = configs['build_configs'][args.build_config]
tree_name = conf.tree.name
tree_url = conf.tree.url
branch = conf.branch
else:
tree_name = args.tree_name
tree_url = args.tree_url
branch = args.branch
if not all((tree_name, tree_url, branch)):
print("""\
Invalid arguments, either of these 2 sets are possible:
--tree-name, --tree-url and --branch
or
--build-config (the tree and branch are read from the YAML config)\
""")
return False
step = kernelci.build.RevisionData(args.kdir, args.output, reset=True)
print("Initialising build meta-data in {}".format(step.output_path))
res = step.run(opts={
'tree': tree_name,
'url': tree_url,
'branch': branch,
'commit': args.commit,
'describe': args.describe,
'describe_verbose': args.describe_verbose
})
if args.install:
print("Install directory: {}".format(step.install_path))
step.install()
if res and (args.build_env or args.arch):
if not (args.build_env and args.arch):
print("""\
Invalid arguments, --build-env and --arch need to be used together.""")
return False
build_env = configs['build_environments'][args.build_env]
step = kernelci.build.EnvironmentData(args.kdir, args.output)
res = step.run(opts={'build_env': build_env, 'arch': args.arch})
if args.install:
step.install()
return res
class MakeCommand(Command):
args = [Args.kdir]
opt_args = [Args.verbose, Args.output, Args.j, Args.log, Args.install]
step_cls = None
def __call__(self, configs, args):
step = self._get_step(args)
if not step.is_enabled():
print("Not enabled, skipping.")
return True
opts = self._get_opts(args, configs)
res = step.run(args.j, args.verbose, opts)
if args.install:
install_res = self._install_step(step, args)
res = res and install_res
return res
def _get_step(self, args):
if self.step_cls is None:
raise ValueError("Step class not defined.")
return self.step_cls(args.kdir, args.output, args.log)
def _get_opts(self, args, configs):
return dict()
def _install_step(self, step, args):
return step.install(args.verbose)
class cmd_make_config(MakeCommand):
help = "Make kernel config"
args = MakeCommand.args + [Args.defconfig]
step_cls = kernelci.build.MakeConfig
def _get_opts(self, args, configs):
return {
'defconfig': args.defconfig,
'frags_config': configs['fragments'],
}
class cmd_make_kernel(MakeCommand):
help = "Make a kernel image"
step_cls = kernelci.build.MakeKernel
class cmd_make_modules(MakeCommand):
help = "Build kernel modules"
step_cls = kernelci.build.MakeModules
def _install_step(self, step, args):
return step.install(args.verbose, args.j)
class cmd_make_dtbs(MakeCommand):
help = "Build device trees"
step_cls = kernelci.build.MakeDeviceTrees
class cmd_make_kselftest(MakeCommand):
help = "Build kselftest"
step_cls = kernelci.build.MakeSelftests
class cmd_push_kernel(Command):
help = "Push the kernel build artifacts"
args = [Args.kdir, Args.api, Args.db_token]
opt_args = [Args.output, Args.db_config]
def __call__(self, configs, args):
install = kernelci.build.Step.get_install_path(args.kdir, args.output)
meta = kernelci.build.Metadata(install)
publish_path = meta.get('bmeta', 'kernel', 'publish_path')
artifacts = kernelci.storage.discover_files(install)
print("Upload path: {}".format(publish_path))
kernelci.storage.upload_files(
args.api, args.db_token, publish_path, artifacts
)
return True
class cmd_pull_tarball(Command):
help = "Downloads and untars kernel sources"
args = [Args.kdir, Args.url]
opt_args = [Args.kernel_tarball, Args.retries, Args.delete]
def __call__(self, configs, args):
retries = args.retries or 1
tarball = args.kernel_tarball or 'linux-src.tar.gz'
return kernelci.build.pull_tarball(
args.kdir, args.url, tarball, retries, args.delete)
if __name__ == '__main__':
opts = parse_opts("kci_build", globals())
configs = kernelci.config.load(opts.yaml_config)
status = opts.command(configs, opts)
sys.exit(0 if status is True else 1)