Home
last modified time | relevance | path

Searched refs:kconfig_file (Results 1 – 5 of 5) sorted by relevance

/Zephyr-latest/scripts/dts/
Dgen_driver_kconfig_dts.py82 with open(args.kconfig_out, "w", encoding="utf-8") as kconfig_file:
83 print(HEADER, file=kconfig_file)
89 print(out, file=kconfig_file)
/Zephyr-latest/scripts/
Dzephyr_module.py367 def kconfig_snippet(meta, path, kconfig_file=None, blobs=False, taint_blobs=False, sysbuild=False): argument
373 snippet += [f'osource "{kconfig_file.resolve().as_posix()}"' if kconfig_file
400 kconfig_file = os.path.join(module, kconfig_setting or 'zephyr/Kconfig')
401 if os.path.isfile(kconfig_file):
402 return kconfig_snippet(meta, module_path, Path(kconfig_file),
425 kconfig_file = os.path.join(module, kconfig_setting)
426 if os.path.isfile(kconfig_file):
427 return kconfig_snippet(meta, module_path, Path(kconfig_file))
/Zephyr-latest/cmake/modules/
Dhwm_v2.cmake29 set(kconfig_file ${KCONFIG_BINARY_DIR}/${bin_dir}/${file}) variable
30 file(WRITE ${kconfig_file} "${kconfig_header}")
34 file(APPEND ${kconfig_file} "osource \"${dir}/${file}\"\n")
/Zephyr-latest/scripts/kconfig/
Dkconfig.py45 print("Parsing " + args.kconfig_file)
46 kconf = Kconfig(args.kconfig_file, warn_to_stderr=False,
/Zephyr-latest/scripts/ci/
Dcheck_compliance.py504 kconfig_file = os.path.join(kconfig_dir, 'boards', 'Kconfig')
543 with open(kconfig_file, 'w') as fp:
551 kconfig_file = os.path.join(kconfig_dir, 'soc', 'Kconfig')
569 with open(kconfig_file, 'w') as fp:
573 kconfig_file = os.path.join(kconfig_dir, 'arch', 'Kconfig')
578 with open(kconfig_file, 'w') as fp: