diff options
author | Joel Challis <git@zvecr.com> | 2021-10-18 12:55:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-18 12:55:44 +0100 |
commit | 01b702bece4de0aa17c1df39a3305a1b643fd762 (patch) | |
tree | 73c898da1a4d9408b95c7441fc7a01f9aac728c9 /lib/python/qmk/info.py | |
parent | e50867d52d9c255570630a23514842749b45e4c1 (diff) | |
download | qmk_firmware-01b702bece4de0aa17c1df39a3305a1b643fd762.tar.gz qmk_firmware-01b702bece4de0aa17c1df39a3305a1b643fd762.zip |
Split out HAPTIC_ENABLE to have separate DRIVER option (#14854)
* DRIVER -> ENABLE
* Update generic_features.mk
Co-authored-by: Ryan <fauxpark@gmail.com>
* Update common_features.mk
Co-authored-by: Ryan <fauxpark@gmail.com>
Diffstat (limited to 'lib/python/qmk/info.py')
-rw-r--r-- | lib/python/qmk/info.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/python/qmk/info.py b/lib/python/qmk/info.py index 5eb10e3ce..c3bbcf3eb 100644 --- a/lib/python/qmk/info.py +++ b/lib/python/qmk/info.py | |||
@@ -112,11 +112,6 @@ def _extract_features(info_data, rules): | |||
112 | if rules.get('BOOTMAGIC_ENABLE') == 'full': | 112 | if rules.get('BOOTMAGIC_ENABLE') == 'full': |
113 | rules['BOOTMAGIC_ENABLE'] = 'on' | 113 | rules['BOOTMAGIC_ENABLE'] = 'on' |
114 | 114 | ||
115 | # Skip non-boolean features we haven't implemented special handling for | ||
116 | for feature in ('HAPTIC_ENABLE',): | ||
117 | if rules.get(feature): | ||
118 | del rules[feature] | ||
119 | |||
120 | # Process the rest of the rules as booleans | 115 | # Process the rest of the rules as booleans |
121 | for key, value in rules.items(): | 116 | for key, value in rules.items(): |
122 | if key.endswith('_ENABLE'): | 117 | if key.endswith('_ENABLE'): |