Searched refs:kconf (Results 1 – 14 of 14) sorted by relevance
| /optee_os/scripts/kconfig/kconfiglib/ |
| H A D | allyesconfig.py | 20 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 D | allmodconfig.py | 20 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 D | allnoconfig.py | 23 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 D | genconfig.py | 112 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 D | setconfig.py | 62 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 D | alldefconfig.py | 21 kconf = kconfiglib.standard_kconfig(__doc__) 22 kconf.load_allconfig("alldef.config") 23 print(kconf.write_config())
|
| H A D | olddefconfig.py | 22 kconf = kconfiglib.standard_kconfig(__doc__) 23 print(kconf.load_config()) 24 print(kconf.write_config())
|
| H A D | listnewconfig.py | 41 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 D | defconfig.py | 37 kconf = kconfiglib.Kconfig(args.kconfig, suppress_traceback=True) 38 print(kconf.load_config(args.config)) 39 print(kconf.write_config())
|
| H A D | savedefconfig.py | 43 kconf = kconfiglib.Kconfig(args.kconfig, suppress_traceback=True) 44 print(kconf.load_config()) 45 print(kconf.write_min_config(args.out))
|
| H A D | oldconfig.py | 47 kconf = standard_kconfig(__doc__) 48 print(kconf.load_config()) 53 for node in kconf.node_iter(): 59 print(kconf.write_config())
|
| H A D | kconfiglib.py | 6236 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 D | menuconfig.py | 666 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 D | guiconfig.py | 157 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):
|