-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathallmodconfig.py
More file actions
executable file
·49 lines (33 loc) · 1.23 KB
/
allmodconfig.py
File metadata and controls
executable file
·49 lines (33 loc) · 1.23 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
#!/usr/bin/env python3
# Copyright (c) 2018-2019 Ulf Magnusson
# SPDX-License-Identifier: ISC
"""
Writes a configuration file where as many symbols as possible are set to 'm'.
The default output filename is '.config'. A different filename can be passed
in the KCONFIG_CONFIG environment variable.
Usage for the Linux kernel:
$ make [ARCH=<arch>] scriptconfig SCRIPT=Kconfiglib/allmodconfig.py
"""
import kconfiglib
def main():
kconf = kconfiglib.standard_kconfig(__doc__)
# See allnoconfig.py
kconf.warn = False
for sym in kconf.unique_defined_syms:
# Skip choice member symbols -- conf_set_all_new_symbols() in
# scripts/kconfig/conf.c (Linux) never sets SYMBOL_DEF_USER on
# choice values, leaving the choice selection logic to pick the
# default.
if sym.choice:
continue
if sym.orig_type == kconfiglib.BOOL:
sym.set_value(2)
elif sym.orig_type == kconfiglib.TRISTATE:
sym.set_value(1)
for choice in kconf.unique_choices:
choice.set_value(2 if choice.orig_type == kconfiglib.BOOL else 1)
kconf.warn = True
kconf.load_allconfig("allmod.config")
print(kconf.write_config())
if __name__ == "__main__":
main()