Home
last modified time | relevance | path

Searched refs:kconf (Results 1 – 14 of 14) sorted by relevance

/optee_os/scripts/kconfig/kconfiglib/
H A Dallyesconfig.py20 kconf = kconfiglib.standard_kconfig(__doc__)
23 kconf.warn = False
30 for sym in kconf.unique_defined_syms:
45 for choice in kconf.unique_choices:
48 kconf.warn = True
50 kconf.load_allconfig("allyes.config")
52 print(kconf.write_config())
H A Dallmodconfig.py20 kconf = kconfiglib.standard_kconfig(__doc__)
23 kconf.warn = False
25 for sym in kconf.unique_defined_syms:
35 for choice in kconf.unique_choices:
38 kconf.warn = True
40 kconf.load_allconfig("allmod.config")
42 print(kconf.write_config())
H A Dallnoconfig.py23 kconf = kconfiglib.standard_kconfig(__doc__)
34 kconf.warn = False
35 for sym in kconf.unique_defined_syms:
37 kconf.warn = True
39 kconf.load_allconfig("allno.config")
41 print(kconf.write_config())
H A Dgenconfig.py112 kconf = kconfiglib.Kconfig(args.kconfig, suppress_traceback=True)
113 kconf.load_config()
117 kconf.write_autoconf()
123 kconf.write_autoconf("config.h")
125 kconf.write_autoconf(args.header_path)
128 kconf.write_config(args.config_out, save_old=False)
131 kconf.sync_deps(args.sync_deps)
135 for path in kconf.kconfig_filenames:
140 for env_var in kconf.env_vars:
H A Dsetconfig.py62 kconf = kconfiglib.Kconfig(args.kconfig, suppress_traceback=True)
63 print(kconf.load_config())
70 if name not in kconf.syms:
75 sym = kconf.syms[name]
88 print(kconf.write_config())
H A Dalldefconfig.py21 kconf = kconfiglib.standard_kconfig(__doc__)
22 kconf.load_allconfig("alldef.config")
23 print(kconf.write_config())
H A Dolddefconfig.py22 kconf = kconfiglib.standard_kconfig(__doc__)
23 print(kconf.load_config())
24 print(kconf.write_config())
H A Dlistnewconfig.py41 kconf = Kconfig(args.kconfig, suppress_traceback=True)
43 print(kconf.load_config(), file=sys.stderr)
45 for sym in kconf.unique_defined_syms:
59 s = "{}{}={}\n".format(kconf.config_prefix, sym.name,
H A Ddefconfig.py37 kconf = kconfiglib.Kconfig(args.kconfig, suppress_traceback=True)
38 print(kconf.load_config(args.config))
39 print(kconf.write_config())
H A Dsavedefconfig.py43 kconf = kconfiglib.Kconfig(args.kconfig, suppress_traceback=True)
44 print(kconf.load_config())
45 print(kconf.write_min_config(args.out))
H A Doldconfig.py47 kconf = standard_kconfig(__doc__)
48 print(kconf.load_config())
53 for node in kconf.node_iter():
59 print(kconf.write_config())
H A Dkconfiglib.py6236 def load_allconfig(kconf, filename): argument
6255 old_warn_assign_override = kconf.warn_assign_override
6256 old_warn_assign_redun = kconf.warn_assign_redun
6257 kconf.warn_assign_override = kconf.warn_assign_redun = False
6261 print(kconf.load_config(filename, False))
6264 print(kconf.load_config("all.config", False))
6271 print(kconf.load_config(allconfig, False))
6277 kconf.warn_assign_override = old_warn_assign_override
6278 kconf.warn_assign_redun = old_warn_assign_redun
6752 def _filename_fn(kconf, _): argument
[all …]
H A Dmenuconfig.py666 def menuconfig(kconf): argument
679 _kconf = kconf
692 if not _shown_nodes(kconf.top_node):
695 if not _shown_nodes(kconf.top_node):
704 kconf.warn = False
H A Dguiconfig.py157 def menuconfig(kconf): argument
170 _kconf = kconf
191 if not _shown_menu_nodes(kconf.top_node):
194 if not _shown_menu_nodes(kconf.top_node):