Browse Source

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
Yan-Fa Li 5 years ago
parent
commit
e6217b6aa6
1 changed files with 10 additions and 3 deletions
  1. 10 3
      users/yanfali/rules.mk

+ 10 - 3
users/yanfali/rules.mk

@@ -1,24 +1,29 @@
-BOOTMAGIC = lite
+BOOTMAGIC_ENABLE = lite
 DYNAMIC_KEYMAP_ENABLE = no
-CONSOLE_ENABLE = yes
-COMMAND_ENABLE = yes
 LTO_ENABLE = yes
 AUDIO_ENABLE = no
 
 # only enable audio on specific boards
 ifeq ($(strip $(KEYBOARD)), evyd13/plain60)
     AUDIO_ENABLE = yes
+    CONSOLE_ENABLE = yes
+    COMMAND_ENABLE = yes
 endif
 
 ifeq ($(strip $(KEYBOARD)), clueboard/60)
     AUDIO_ENABLE = yes
+    CONSOLE_ENABLE = yes
+    COMMAND_ENABLE = yes
 endif
 
 ifeq ($(strip $(KEYBOARD)), hadron/ver3)
     AUDIO_ENABLE = yes
+    CONSOLE_ENABLE = yes
+    COMMAND_ENABLE = yes
 endif
 
 ifeq ($(strip $(KEYBOARD)), fruity60)
+    CONSOLE_ENABLE = yes
     COMMAND_ENABLE = no
 endif
 
@@ -28,4 +33,6 @@ endif
 
 ifeq ($(strip $(KEYBOARD)), ai03/polaris)
     RGBLIGHT_ENABLE = no
+    CONSOLE_ENABLE = yes
+    COMMAND_ENABLE = yes
 endif