forked from kernelci/kernelci-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kernelci.toml.sample
61 lines (46 loc) · 1.5 KB
/
kernelci.toml.sample
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
# Sample kernelci.toml settings file with arbitrary values.
#
# These value are only for illustration purposes, they should be manually set
# by any user to match a particular installation. The options mentioned here
# are typical ones that shouldn't change in every command line call when used
# manually for local development purposes. Any command line argument can have
# a default value stored in this file. Components such as databases and labs
# have their own section too, with a naming convention of the form [db.db-name]
# or [lab.lab-name]. Make sure to surround sub-section name with "" (double-quotes)
# if it contains "." (dot) in the name e.g [db."staging.kernelci.org"].
[DEFAULT]
# -- Sample global defaults ---
#
# storage = "http://localhost:5002"
# db_config = "localhost"
# -- Sample test lab --
#
# [lab.my-lava-lab]
#
# user = "user-name"
# lab_token = "1234-5678"
# -- Sample database --
#
[db.localhost]
#
# db_token = "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX"
# api = "http://192.168.122.1:5001"
# callback_id = "kernelci-callback-local"
# callback_url = "http://localhost:5001"
# [db."staging.kernelci.org"]
# db_token = "XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX"
# -- Sample command line defaults --
[kci_build]
# mirror = "linux-mirror.git"
# kdir = "linux"
# build_env = "gcc-10"
# j = 3
[kci_test]
# runtime_config = "localhost"
# bmeta_json = "linux/_install_/bmeta.json"
# dtbs_json = "linux/_install_/dtbs.json"
[kci_data]
# db_config = "localhost"
# verbose = true
[kci_rootfs]
# arc = "arm64"