-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.ini
More file actions
144 lines (129 loc) · 3.77 KB
/
config.ini
File metadata and controls
144 lines (129 loc) · 3.77 KB
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
;;;;;;;;;;;;;;;;;;;;;
;;; Configuration ;;;
;;;;;;;;;;;;;;;;;;;;;
;
; Email options
;
[email]
; Enable email feature when test fails. Default is 'yes'
enable = yes
; SMTP server
server = smtp.gmail.com
; SMTP Server port
port = 587
; Username
user = bluez.test.bot@gmail.com
; TLS option. Default is 'yes'
starttls = yes
; Default address to send
default-to = linux-bluetooth@vger.kernel.org
; List of maintainsers
maintainers = marcel@holtmann.org,
luiz.dentz@gmail.com,
johan.hedberg@gmail.com,
brian.gix@intel.com,
inga.stotland@intel.com,
tedd.an@intel.com
; If this is option is 'yes', email will be sent only to the maintainers and
; the address in default-to will not be used. Default is 'no'
only-maintainers = no
;
; Checkpatch options
;
[checkpatch]
; Enable checkpatch run. Default is 'yes' if it is not defined
enable = yes
; Absolute path of checkpatch.pl.
; Default is /usr/bin/checkpatch.pl if not defined
bin_path = /usr/bin/checkpatch.pl
; List of rules to ignore
ignore = UNKNOWN_COMMIT_ID
; Enable submitting the result to patchwork page. Default is 'no' if it is not
; defined
submit_pw = yes
;
; GitLint options
;
[gitlint]
; Enable gitlint run. Default is 'yes' if it is not defined
enable = yes
; Absolute path of .gitlint file
; Default is in /.gitlint if not defined.
config_path = /.gitlint
; Enable submitting the result to patchwork page. Default is 'no' if it is not
; defined
submit_pw = yes
;
; SubjectPrefix options
;
[subjectprefix]
; Enable test. Default is 'yes' if it is not defined
enable = yes
; Enable submitting the result to patchwork page. Default is 'no' if it is not
; defined
submit_pw = yes
;
; BuildKernel options
;
[buildkernel]
; Enable buildkernel run. Default is 'yes' if it is not defined
enable = yes
; Use simple build instead of full build
; Simple build is only build net/bluetooth/ and drivers/bluetooth
simple_build = yes
; Absolute path of configuration file to use
; It will be copied to src dir and rename to .config and run make olddefconfig
config_path = /bluetooth_build.config
; Enable submitting the result to patchwork page. Default is 'no' if it is not
; defined
submit_pw = yes
;
; BuildKernel32 options
;
[buildkernel32]
; Enable buildkernel32 run. Default is 'yes' if it is not defined
enable = yes
; Use simple build instead of full build
; Simple build is only build net/bluetooth/ and drivers/bluetooth
simple_build = yes
; Absolute path of configuration file to use
; It will be copied to src dir and rename to .config and run make olddefconfig
config_path = /bluetooth_build.config
; Enable submitting the result to patchwork page. Default is 'no' if it is not
; defined
submit_pw = yes
;
; Testrunnersetup options
;
[testrunnersetup]
; Setup for running test-runner. Default is 'yes' if it is not defined
enable = yes
; Enable submitting the result to patchwork page. Default is 'no' if it is not
; defined
submit_pw = yes
; List of test to run. If not defined, it runs all available tests.
; Specify the full name of the tester binary in tools folder
test_list = l2cap-tester,
iso-tester,
bnep-tester,
mgmt-tester,
rfcomm-tester,
sco-tester,
ioctl-tester,
smp-tester,
userchan-tester
;
; incremental_build
;
[incremental_build]
; Enable build_extell run. Default is 'yes' if it is not defined
enable = yes
; Use simple build instead of full build
; Simple build is only build net/bluetooth/ and drivers/bluetooth
simple_build = yes
; Absolute path of configuration file to use
; It will be copied to src dir and rename to .config and run make olddefconfig
config_path = /bluetooth_build.config
; Enable submitting the result to patchwork page. Default is 'no' if it is not
; defined
submit_pw = yes