Skip to content

Commit 8b9bff0

Browse files
committed
zephyr: boards: make 5340_hci_ipc_* generic config
rename hci_ipc configuration for generic multicore usage. related change in tester: zephyrproject-rtos/zephyr#81755 Signed-off-by: Aytürk Düzen <[email protected]>
1 parent d024c50 commit 8b9bff0

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

autopts/ptsprojects/boards/nrf53.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def build_and_flash(zephyr_wd, board, debugger_snr, conf_file=None, *args):
3535
check_call('rm -rf build/'.split(), cwd=tester_dir)
3636
check_call('rm -rf build/'.split(), cwd=controller_dir)
3737

38-
bttester_overlay = 'nrf5340_hci_ipc.conf'
38+
bttester_overlay = 'hci_ipc.conf'
3939

4040
if conf_file and conf_file != 'default' and conf_file != 'prj.conf':
4141
bttester_overlay += f';{conf_file}'
@@ -46,6 +46,6 @@ def build_and_flash(zephyr_wd, board, debugger_snr, conf_file=None, *args):
4646

4747
cmd = ['west', 'build', '--no-sysbuild', '-b', 'nrf5340dk/nrf5340/cpunet', '--',
4848
f'-DEXTRA_CONF_FILE=\'nrf5340_cpunet_iso-bt_ll_sw_split.conf;'
49-
f'../../../tests/bluetooth/tester/nrf5340_hci_ipc_cpunet.conf\'']
49+
f'../../../tests/bluetooth/tester/hci_ipc_cpunet.conf\'']
5050
check_call(cmd, cwd=controller_dir)
5151
check_call(['west', 'flash', '--skip-rebuild', '-i', debugger_snr], cwd=controller_dir)

autopts/ptsprojects/boards/nrf53_appcore.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def build_and_flash(zephyr_wd, board, debugger_snr, conf_file=None, *args):
3333

3434
check_call('rm -rf build/'.split(), cwd=tester_dir)
3535

36-
bttester_overlay = 'nrf5340_hci_ipc.conf'
36+
bttester_overlay = 'hci_ipc.conf'
3737

3838
if conf_file and conf_file != 'default' and conf_file != 'prj.conf':
3939
bttester_overlay += f';{conf_file}'

autopts/ptsprojects/boards/nrf53_audio.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def build_and_flash(zephyr_wd, board, debugger_snr, conf_file=None, *args):
6969
config_dir_net = os.getenv("AUTOPTS_SOURCE_DIR_NET")
7070
if config_dir_net is None:
7171
net_core_configs = [f'EXTRA_CONF_FILE=\'nrf5340_cpunet_iso-bt_ll_sw_split.conf;'
72-
f'../../../tests/bluetooth/tester/nrf5340_hci_ipc_cpunet.conf\'']
72+
f'../../../tests/bluetooth/tester/hci_ipc_cpunet.conf\'']
7373
else:
7474
conf_path = os.path.join(zephyr_wd, config_dir_net, 'hci_ipc.conf')
7575
net_core_configs = [f'EXTRA_CONF_FILE=\'{conf_path}\'']

0 commit comments

Comments
 (0)