CLI: Fix json flashing (#11765)
This commit is contained in:
parent
d712670922
commit
7db826dce8
2 changed files with 6 additions and 3 deletions
|
@ -98,7 +98,7 @@ def write_version_h(git_version, build_date, chibios_version, chibios_contrib_ve
|
|||
version_h_file.write_text('\n'.join(version_h))
|
||||
|
||||
|
||||
def compile_configurator_json(user_keymap, parallel=1, **env_vars):
|
||||
def compile_configurator_json(user_keymap, bootloader=None, parallel=1, **env_vars):
|
||||
"""Convert a configurator export JSON file into a C file and then compile it.
|
||||
|
||||
Args:
|
||||
|
@ -153,6 +153,9 @@ def compile_configurator_json(user_keymap, parallel=1, **env_vars):
|
|||
'build_keyboard.mk',
|
||||
])
|
||||
|
||||
if bootloader:
|
||||
make_command.append(bootloader)
|
||||
|
||||
for key, value in env_vars.items():
|
||||
make_command.append(f'{key}={value}')
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue