diff options
Diffstat (limited to 'lib/python/qmk/cli/generate/rules_mk.py')
-rwxr-xr-x | lib/python/qmk/cli/generate/rules_mk.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/python/qmk/cli/generate/rules_mk.py b/lib/python/qmk/cli/generate/rules_mk.py index 15917987b..91759d26c 100755 --- a/lib/python/qmk/cli/generate/rules_mk.py +++ b/lib/python/qmk/cli/generate/rules_mk.py | |||
@@ -6,7 +6,9 @@ from dotty_dict import dotty | |||
6 | from milc import cli | 6 | from milc import cli |
7 | 7 | ||
8 | from qmk.decorators import automagic_keyboard, automagic_keymap | 8 | from qmk.decorators import automagic_keyboard, automagic_keymap |
9 | from qmk.info import _json_load, info_json | 9 | from qmk.info import info_json |
10 | from qmk.json_schema import json_load | ||
11 | from qmk.keyboard import keyboard_folder | ||
10 | from qmk.path import is_keyboard, normpath | 12 | from qmk.path import is_keyboard, normpath |
11 | 13 | ||
12 | 14 | ||
@@ -37,7 +39,7 @@ def process_mapping_rule(kb_info_json, rules_key, info_dict): | |||
37 | @cli.argument('-o', '--output', arg_only=True, type=normpath, help='File to write to') | 39 | @cli.argument('-o', '--output', arg_only=True, type=normpath, help='File to write to') |
38 | @cli.argument('-q', '--quiet', arg_only=True, action='store_true', help="Quiet mode, only output error messages") | 40 | @cli.argument('-q', '--quiet', arg_only=True, action='store_true', help="Quiet mode, only output error messages") |
39 | @cli.argument('-e', '--escape', arg_only=True, action='store_true', help="Escape spaces in quiet mode") | 41 | @cli.argument('-e', '--escape', arg_only=True, action='store_true', help="Escape spaces in quiet mode") |
40 | @cli.argument('-kb', '--keyboard', help='Keyboard to generate config.h for.') | 42 | @cli.argument('-kb', '--keyboard', type=keyboard_folder, help='Keyboard to generate config.h for.') |
41 | @cli.subcommand('Used by the make system to generate info_config.h from info.json', hidden=True) | 43 | @cli.subcommand('Used by the make system to generate info_config.h from info.json', hidden=True) |
42 | @automagic_keyboard | 44 | @automagic_keyboard |
43 | @automagic_keymap | 45 | @automagic_keymap |
@@ -54,7 +56,7 @@ def generate_rules_mk(cli): | |||
54 | return False | 56 | return False |
55 | 57 | ||
56 | kb_info_json = dotty(info_json(cli.config.generate_rules_mk.keyboard)) | 58 | kb_info_json = dotty(info_json(cli.config.generate_rules_mk.keyboard)) |
57 | info_rules_map = _json_load(Path('data/mappings/info_rules.json')) | 59 | info_rules_map = json_load(Path('data/mappings/info_rules.json')) |
58 | rules_mk_lines = ['# This file was generated by `qmk generate-rules-mk`. Do not edit or copy.', ''] | 60 | rules_mk_lines = ['# This file was generated by `qmk generate-rules-mk`. Do not edit or copy.', ''] |
59 | 61 | ||
60 | # Iterate through the info_rules map to generate basic rules | 62 | # Iterate through the info_rules map to generate basic rules |