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
pull/11216/head
Yan-Fa Li 3 years ago
committed by GitHub
parent
commit
e6217b6aa6
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 3 deletions
  1. +10
    -3
      users/yanfali/rules.mk

+ 10
- 3
users/yanfali/rules.mk View File

@ -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

Loading…
Cancel
Save