diff options
Diffstat (limited to 'lib/python/qmk/commands.py')
| -rw-r--r-- | lib/python/qmk/commands.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/python/qmk/commands.py b/lib/python/qmk/commands.py index f58062004..3c6f0d001 100644 --- a/lib/python/qmk/commands.py +++ b/lib/python/qmk/commands.py | |||
| @@ -98,7 +98,7 @@ def write_version_h(git_version, build_date, chibios_version, chibios_contrib_ve | |||
| 98 | version_h_file.write_text('\n'.join(version_h)) | 98 | version_h_file.write_text('\n'.join(version_h)) |
| 99 | 99 | ||
| 100 | 100 | ||
| 101 | def compile_configurator_json(user_keymap, parallel=1, **env_vars): | 101 | def compile_configurator_json(user_keymap, bootloader=None, parallel=1, **env_vars): |
| 102 | """Convert a configurator export JSON file into a C file and then compile it. | 102 | """Convert a configurator export JSON file into a C file and then compile it. |
| 103 | 103 | ||
| 104 | Args: | 104 | Args: |
| @@ -153,6 +153,9 @@ def compile_configurator_json(user_keymap, parallel=1, **env_vars): | |||
| 153 | 'build_keyboard.mk', | 153 | 'build_keyboard.mk', |
| 154 | ]) | 154 | ]) |
| 155 | 155 | ||
| 156 | if bootloader: | ||
| 157 | make_command.append(bootloader) | ||
| 158 | |||
| 156 | for key, value in env_vars.items(): | 159 | for key, value in env_vars.items(): |
| 157 | make_command.append(f'{key}={value}') | 160 | make_command.append(f'{key}={value}') |
| 158 | 161 | ||
