Skip to content

Commit cb26820

Browse files
kartbenfabiobaltieri
authored andcommitted
hwmv2: scripts: handle Kconfig sources in a Windows compatible way
Move away from os.join.path and only rely on pathlib magic, and serialize all paths using POSIX path separators. This fixes documentation build and compliance check script on Windows. Signed-off-by: Benjamin Cabé <[email protected]>
1 parent a5c2781 commit cb26820

File tree

2 files changed

+16
-12
lines changed

2 files changed

+16
-12
lines changed

doc/_extensions/zephyr/kconfig/__init__.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -97,18 +97,18 @@ def kconfig_load(app: Sphinx) -> Tuple[kconfiglib.Kconfig, Dict[str, str]]:
9797

9898
with open(Path(td) / "soc" / "Kconfig.soc", "w") as f:
9999
for folder in soc_folders:
100-
f.write('source "' + os.path.join(folder, 'Kconfig.soc') + '"\n')
100+
f.write('source "' + (Path(folder) / 'Kconfig.soc').as_posix() + '"\n')
101101

102102
with open(Path(td) / "soc" / "Kconfig", "w") as f:
103103
for folder in soc_folders:
104-
f.write('osource "' + os.path.join(folder, 'Kconfig') + '"\n')
104+
f.write('osource "' + (Path(folder) / 'Kconfig').as_posix() + '"\n')
105105

106106
(Path(td) / 'arch').mkdir(exist_ok=True)
107107
root_args = argparse.Namespace(**{'arch_roots': [Path(ZEPHYR_BASE)], 'arch': None})
108108
v2_archs = list_hardware.find_v2_archs(root_args)
109109
kconfig = ""
110110
for arch in v2_archs['archs']:
111-
kconfig += 'source "' + str(Path(arch['path']) / 'Kconfig') + '"\n'
111+
kconfig += 'source "' + (Path(arch['path']) / 'Kconfig').as_posix() + '"\n'
112112
with open(Path(td) / "arch" / "Kconfig", "w") as f:
113113
f.write(kconfig)
114114

@@ -126,7 +126,7 @@ def kconfig_load(app: Sphinx) -> Tuple[kconfiglib.Kconfig, Dict[str, str]]:
126126
board_str = 'BOARD_' + re.sub(r"[^a-zA-Z0-9_]", "_", identifier).upper()
127127
f.write('config ' + board_str + '\n')
128128
f.write('\t bool\n')
129-
f.write('source "' + os.path.join(board.dir, 'Kconfig.') + board.name + '"\n\n')
129+
f.write('source "' + (board.dir / ('Kconfig.' + board.name)).as_posix() + '"\n\n')
130130

131131
# base environment
132132
os.environ["ZEPHYR_BASE"] = str(ZEPHYR_BASE)

scripts/ci/check_compliance.py

+12-8
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ def get_v2_model(self, kconfig_dir):
441441

442442
with open(kconfig_defconfig_file, 'w') as fp:
443443
for board in v2_boards:
444-
fp.write('osource "' + os.path.join(board.dir, 'Kconfig.defconfig') + '"\n')
444+
fp.write('osource "' + (Path(board.dir) / 'Kconfig.defconfig').as_posix() + '"\n')
445445

446446
with open(kconfig_boards_file, 'w') as fp:
447447
for board in v2_boards:
@@ -452,12 +452,16 @@ def get_v2_model(self, kconfig_dir):
452452
board_str = 'BOARD_' + re.sub(r"[^a-zA-Z0-9_]", "_", identifier).upper()
453453
fp.write('config ' + board_str + '\n')
454454
fp.write('\t bool\n')
455-
fp.write('source "' + os.path.join(board.dir, 'Kconfig.') + board.name + '"\n\n')
455+
fp.write(
456+
'source "' + (Path(board.dir) / ('Kconfig.' + board.name)).as_posix() + '"\n\n'
457+
)
456458

457459
with open(kconfig_file, 'w') as fp:
458-
fp.write('osource "' + os.path.join(kconfig_dir, 'boards', 'Kconfig.syms.v1') + '"\n')
460+
fp.write(
461+
'osource "' + (Path(kconfig_dir) / 'boards' / 'Kconfig.syms.v1').as_posix() + '"\n'
462+
)
459463
for board in v2_boards:
460-
fp.write('osource "' + os.path.join(board.dir, 'Kconfig') + '"\n')
464+
fp.write('osource "' + (Path(board.dir) / 'Kconfig').as_posix() + '"\n')
461465

462466
kconfig_defconfig_file = os.path.join(kconfig_dir, 'soc', 'Kconfig.defconfig')
463467
kconfig_soc_file = os.path.join(kconfig_dir, 'soc', 'Kconfig.soc')
@@ -469,15 +473,15 @@ def get_v2_model(self, kconfig_dir):
469473
soc_folders = {soc.folder for soc in v2_systems.get_socs()}
470474
with open(kconfig_defconfig_file, 'w') as fp:
471475
for folder in soc_folders:
472-
fp.write('osource "' + os.path.join(folder, 'Kconfig.defconfig') + '"\n')
476+
fp.write('osource "' + (Path(folder) / 'Kconfig.defconfig').as_posix() + '"\n')
473477

474478
with open(kconfig_soc_file, 'w') as fp:
475479
for folder in soc_folders:
476-
fp.write('source "' + os.path.join(folder, 'Kconfig.soc') + '"\n')
480+
fp.write('source "' + (Path(folder) / 'Kconfig.soc').as_posix() + '"\n')
477481

478482
with open(kconfig_file, 'w') as fp:
479483
for folder in soc_folders:
480-
fp.write('source "' + os.path.join(folder, 'Kconfig') + '"\n')
484+
fp.write('source "' + (Path(folder) / 'Kconfig').as_posix() + '"\n')
481485

482486
kconfig_file = os.path.join(kconfig_dir, 'arch', 'Kconfig')
483487

@@ -486,7 +490,7 @@ def get_v2_model(self, kconfig_dir):
486490

487491
with open(kconfig_file, 'w') as fp:
488492
for arch in v2_archs['archs']:
489-
fp.write('source "' + os.path.join(arch['path'], 'Kconfig') + '"\n')
493+
fp.write('source "' + (Path(arch['path']) / 'Kconfig').as_posix() + '"\n')
490494

491495
def parse_kconfig(self, filename="Kconfig", hwm=None):
492496
"""

0 commit comments

Comments
 (0)