diff options
author | Yan-Fa Li <yanfali@gmail.com> | 2020-12-14 11:13:00 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-14 11:13:00 -0800 |
commit | e6217b6aa6d83c21275b60b441baf1395a20f72f (patch) | |
tree | 3fcf10475b7c3f5d4b29a6b0e3ea95cd307424cd /users | |
parent | 795e82074d3d410296a5d96e71057d2f0b9af7ec (diff) | |
download | qmk_firmware-e6217b6aa6d83c21275b60b441baf1395a20f72f.tar.gz qmk_firmware-e6217b6aa6d83c21275b60b441baf1395a20f72f.zip |
Selectively enable command and console for yanfali userspace (#11212)
* Remove command and console
- these options prevent community layouts from being built on other
keyboards. Selectively enable it on keyboards I own rather than on
everything.
* Update users/yanfali/rules.mk
Diffstat (limited to 'users')
-rw-r--r-- | users/yanfali/rules.mk | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/users/yanfali/rules.mk b/users/yanfali/rules.mk index bf88c0452..467adceef 100644 --- a/users/yanfali/rules.mk +++ b/users/yanfali/rules.mk | |||
@@ -1,24 +1,29 @@ | |||
1 | BOOTMAGIC = lite | 1 | BOOTMAGIC_ENABLE = lite |
2 | DYNAMIC_KEYMAP_ENABLE = no | 2 | DYNAMIC_KEYMAP_ENABLE = no |
3 | CONSOLE_ENABLE = yes | ||
4 | COMMAND_ENABLE = yes | ||
5 | LTO_ENABLE = yes | 3 | LTO_ENABLE = yes |
6 | AUDIO_ENABLE = no | 4 | AUDIO_ENABLE = no |
7 | 5 | ||
8 | # only enable audio on specific boards | 6 | # only enable audio on specific boards |
9 | ifeq ($(strip $(KEYBOARD)), evyd13/plain60) | 7 | ifeq ($(strip $(KEYBOARD)), evyd13/plain60) |
10 | AUDIO_ENABLE = yes | 8 | AUDIO_ENABLE = yes |
9 | CONSOLE_ENABLE = yes | ||
10 | COMMAND_ENABLE = yes | ||
11 | endif | 11 | endif |
12 | 12 | ||
13 | ifeq ($(strip $(KEYBOARD)), clueboard/60) | 13 | ifeq ($(strip $(KEYBOARD)), clueboard/60) |
14 | AUDIO_ENABLE = yes | 14 | AUDIO_ENABLE = yes |
15 | CONSOLE_ENABLE = yes | ||
16 | COMMAND_ENABLE = yes | ||
15 | endif | 17 | endif |
16 | 18 | ||
17 | ifeq ($(strip $(KEYBOARD)), hadron/ver3) | 19 | ifeq ($(strip $(KEYBOARD)), hadron/ver3) |
18 | AUDIO_ENABLE = yes | 20 | AUDIO_ENABLE = yes |
21 | CONSOLE_ENABLE = yes | ||
22 | COMMAND_ENABLE = yes | ||
19 | endif | 23 | endif |
20 | 24 | ||
21 | ifeq ($(strip $(KEYBOARD)), fruity60) | 25 | ifeq ($(strip $(KEYBOARD)), fruity60) |
26 | CONSOLE_ENABLE = yes | ||
22 | COMMAND_ENABLE = no | 27 | COMMAND_ENABLE = no |
23 | endif | 28 | endif |
24 | 29 | ||
@@ -28,4 +33,6 @@ endif | |||
28 | 33 | ||
29 | ifeq ($(strip $(KEYBOARD)), ai03/polaris) | 34 | ifeq ($(strip $(KEYBOARD)), ai03/polaris) |
30 | RGBLIGHT_ENABLE = no | 35 | RGBLIGHT_ENABLE = no |
36 | CONSOLE_ENABLE = yes | ||
37 | COMMAND_ENABLE = yes | ||
31 | endif | 38 | endif |