diff options
author | James Young <18669334+noroadsleft@users.noreply.github.com> | 2021-08-06 23:59:56 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-06 23:59:56 -0700 |
commit | a03aa301def77c867ae6c6c840f7fc82b26d91d6 (patch) | |
tree | a6bc1e2ce769edfd3ce3e25c86ece48d1ca14853 /users | |
parent | 0bc9090b1f98038b2bf4f648618d6143dcd93c82 (diff) | |
download | qmk_firmware-a03aa301def77c867ae6c6c840f7fc82b26d91d6.tar.gz qmk_firmware-a03aa301def77c867ae6c6c840f7fc82b26d91d6.zip |
Remove Full Bootmagic (#13846)
* disambiguate Bootmagic rules in keymaps
The files edited by this commit were added at a point in time where `BOOTMAGIC_ENABLE = yes` enabled full Bootmagic.
This commit edits the files to specify that full Bootmagic is intended.
* remove BOOTMAGIC_ENABLE=full setting
* unify commented BOOTMAGIC_ENABLE rules in keyboards
Explicitly sets `BOOTMAGIC_ENABLE = no` in keyboards where the rule was commented out.
Command:
```
find keyboards/ -type f -name 'rules.mk' -and -not -path '*/keymaps/*' -exec sed -i -e 's;#[ \t]*\(BOOTMAGIC_ENABLE\)[ \t=]\+\([a-zA-Z]\+\).*;\1 = no # Virtual DIP switch configuration;g' {} +
```
* remove commented Bootmagic rules from keymap/user level
Command:
```
find keyboards/ layouts/ users/ -type f -name 'rules.mk' -exec sed -i -e '/#.*\(BOOTMAGIC_ENABLE\)[ \t=]\+\([a-z]\+\).*/d' {} +
```
* update keyboard BOOTMAGIC_ENABLE rule formatting
Sets the formatting of BOOTMAGIC_ENABLE rules to `BOOTMAGIC_ENABLE = [value]`, without the inline comments (which will be replaced later).
Command:
```
find keyboards/ -type f -name 'rules.mk' -and -not -path '*/keymaps/*' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE\)[ \t=]\+\([a-z]\+\).*;\1 = \2;g' '{}' +
```
* update keyboards' BOOTMAGIC_ENABLE settings
Updates keyboard `rules.mk` files to use `BOOTMAGIC_ENABLE = lite` where `BOOTMAGIC_ENABLE = full` was being used.
Command:
```
find keyboards/ -type f -name 'rules.mk' -and -not -path '*/keymaps/*' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE = \)full;\1lite;g' '{}' +
```
* update keymap/user BOOTMAGIC_ENABLE settings
Updates keymap/user `rules.mk` files to use `BOOTMAGIC_ENABLE = lite` where `BOOTMAGIC_ENABLE = full` was being used.
Commands:
```
find keyboards/ -type f -name 'rules.mk' -and -path '*/keymaps/*' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE[ \t=]\+\)full;\1lite;g' '{}' +
find layouts/community/ users/ -type f -name 'rules.mk' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE[ \t=]\+\)full;\1lite;g' '{}' +
```
* remove and replace inline comments in keyboards and keymap/user files
Removes and replaces the inline comments, which have been updated to read `Enable Bootmagic Lite`.
Commands:
```
find keyboards/ -type f -name 'rules.mk' -and -path '*/keymaps/*' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE\)[ \t=]\+\([a-z]\+\).*;\1 = \2;g' '{}' +
find layouts/community/ users/ -type f -name 'rules.mk' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE\)[ \t=]\+\([a-z]\+\).*;\1 = \2;g' '{}' +
find keyboards/ layouts/community/ users/ -type f -name 'rules.mk' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE = lite\);\1 # Enable Bootmagic Lite;g' '{}' +
find keyboards/ layouts/community/ users/ -type f -name 'rules.mk' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE = yes\);\1 # Enable Bootmagic Lite;g' '{}' +
find keyboards/ layouts/community/ users/ -type f -name 'rules.mk' -exec sed -i -e 's;\(BOOTMAGIC_ENABLE = no\);\1 # Enable Bootmagic Lite;g' '{}' +
```
* rename improperly named makefiles
Some files intended to be used as makefiles had improper names causing them to not be used as intended when building.
This commit corrects the filenames of the affected files.
* update renamed file with new rule formatting
* update QMK's template files
Updates QMK's `rules.mk` templates to use the new inline comment.
* update QMK Docs
- remove documentation of full Bootmagic
- update links to Bootmagic Lite doc
- add doc for Magic Keycodes
* rules.mk patch for coarse/ixora and coarse/vinta
Diffstat (limited to 'users')
-rw-r--r-- | users/bbaserdem/rules.mk | 2 | ||||
-rw-r--r-- | users/bcat/rules.mk | 2 | ||||
-rw-r--r-- | users/cwebster2/rules.mk | 2 | ||||
-rw-r--r-- | users/d4mation/rules.mk | 2 | ||||
-rw-r--r-- | users/doogle999/rules.mk | 2 | ||||
-rw-r--r-- | users/draevin/rules.mk | 2 | ||||
-rwxr-xr-x | users/ericgebhart/rules.mk | 2 | ||||
-rw-r--r-- | users/gordon/rules.mk | 1 | ||||
-rw-r--r-- | users/issmirnov/rules.mk | 2 | ||||
-rw-r--r-- | users/jdelkins/rules.mk | 2 | ||||
-rw-r--r-- | users/losinggeneration/rules.mk | 1 | ||||
-rw-r--r-- | users/miles2go/keymaps/handwired/ms_sculpt_mobile/rules.mk | 2 | ||||
-rw-r--r-- | users/ninjonas/rules.mk | 2 | ||||
-rw-r--r-- | users/ridingqwerty/rules.mk | 2 | ||||
-rw-r--r-- | users/romus/rules.mk | 2 | ||||
-rw-r--r-- | users/spidey3/rules.mk | 2 | ||||
-rw-r--r-- | users/spotpuff/rules.mk | 2 | ||||
-rw-r--r-- | users/talljoe/rules.mk | 2 | ||||
-rw-r--r-- | users/tominabox1/rules.mk | 2 | ||||
-rw-r--r-- | users/yanfali/rules.mk | 2 |
20 files changed, 18 insertions, 20 deletions
diff --git a/users/bbaserdem/rules.mk b/users/bbaserdem/rules.mk index 8b9741cf9..9c7e78e2f 100644 --- a/users/bbaserdem/rules.mk +++ b/users/bbaserdem/rules.mk | |||
@@ -10,7 +10,7 @@ ifndef BLUETOOTH_ENABLE | |||
10 | BLUETOOTH_ENABLE = no # No bluetooth | 10 | BLUETOOTH_ENABLE = no # No bluetooth |
11 | endif | 11 | endif |
12 | COMMAND_ENABLE = no # Some bootmagic thing i dont use | 12 | COMMAND_ENABLE = no # Some bootmagic thing i dont use |
13 | BOOTMAGIC_ENABLE = no # Access to EEPROM settings, not needed | 13 | BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite |
14 | CONSOLE_ENABLE = no # Allows console output with a command | 14 | CONSOLE_ENABLE = no # Allows console output with a command |
15 | SLEEP_LED_ENABLE = no # Breathes LED's when computer is asleep. Untested. | 15 | SLEEP_LED_ENABLE = no # Breathes LED's when computer is asleep. Untested. |
16 | NKRO_ENABLE = no # Default is 6KRO which is plenty | 16 | NKRO_ENABLE = no # Default is 6KRO which is plenty |
diff --git a/users/bcat/rules.mk b/users/bcat/rules.mk index d49c04a40..6d748875a 100644 --- a/users/bcat/rules.mk +++ b/users/bcat/rules.mk | |||
@@ -1,7 +1,7 @@ | |||
1 | SRC += bcat.c | 1 | SRC += bcat.c |
2 | 2 | ||
3 | # Enable Bootmagic Lite to consistently reset to bootloader and clear EEPROM. | 3 | # Enable Bootmagic Lite to consistently reset to bootloader and clear EEPROM. |
4 | BOOTMAGIC_ENABLE = lite | 4 | BOOTMAGIC_ENABLE = lite # Enable Bootmagic Lite |
5 | 5 | ||
6 | # Enable media keys on all keyboards. | 6 | # Enable media keys on all keyboards. |
7 | EXTRAKEY_ENABLE = yes | 7 | EXTRAKEY_ENABLE = yes |
diff --git a/users/cwebster2/rules.mk b/users/cwebster2/rules.mk index f39d4ebc9..3aa4d68f3 100644 --- a/users/cwebster2/rules.mk +++ b/users/cwebster2/rules.mk | |||
@@ -2,7 +2,7 @@ AUTO_SHIFT_ENABLE = no # Enable autoshift | |||
2 | MOUSEKEY_ENABLE = yes | 2 | MOUSEKEY_ENABLE = yes |
3 | EXTRAKEY_ENABLE = yes | 3 | EXTRAKEY_ENABLE = yes |
4 | CONSOLE_ENABLE = no | 4 | CONSOLE_ENABLE = no |
5 | BOOTMAGIC_ENABLE = no | 5 | BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite |
6 | GRAVE_ESC_ENABLE = no | 6 | GRAVE_ESC_ENABLE = no |
7 | CONSOLE_ENABLE = no | 7 | CONSOLE_ENABLE = no |
8 | SPACE_CADET_ENABLE = no | 8 | SPACE_CADET_ENABLE = no |
diff --git a/users/d4mation/rules.mk b/users/d4mation/rules.mk index 3d65a2242..f677721b4 100644 --- a/users/d4mation/rules.mk +++ b/users/d4mation/rules.mk | |||
@@ -2,7 +2,7 @@ SRC += d4mation.c \ | |||
2 | tap-hold.c \ | 2 | tap-hold.c \ |
3 | macros.c | 3 | macros.c |
4 | 4 | ||
5 | BOOTMAGIC_ENABLE = no | 5 | BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite |
6 | LTO_ENABLE = yes | 6 | LTO_ENABLE = yes |
7 | MOUSEKEY_ENABLE = no | 7 | MOUSEKEY_ENABLE = no |
8 | 8 | ||
diff --git a/users/doogle999/rules.mk b/users/doogle999/rules.mk index 12698a27e..aab01b243 100644 --- a/users/doogle999/rules.mk +++ b/users/doogle999/rules.mk | |||
@@ -2,7 +2,7 @@ SRC += doogle999.c | |||
2 | 2 | ||
3 | CFLAGS += -fstrict-aliasing -ftree-vrp | 3 | CFLAGS += -fstrict-aliasing -ftree-vrp |
4 | 4 | ||
5 | BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000) | 5 | BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite |
6 | MOUSEKEY_ENABLE = no # Mouse keys(+4700) | 6 | MOUSEKEY_ENABLE = no # Mouse keys(+4700) |
7 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) | 7 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) |
8 | CONSOLE_ENABLE = no # Console for debug(+400) | 8 | CONSOLE_ENABLE = no # Console for debug(+400) |
diff --git a/users/draevin/rules.mk b/users/draevin/rules.mk index 7d6740493..1fc377e23 100644 --- a/users/draevin/rules.mk +++ b/users/draevin/rules.mk | |||
@@ -7,6 +7,6 @@ TAP_DANCE_ENABLE = yes | |||
7 | 7 | ||
8 | AUDIO_ENABLE = no | 8 | AUDIO_ENABLE = no |
9 | BACKLIGHT_ENABLE = no | 9 | BACKLIGHT_ENABLE = no |
10 | BOOTMAGIC_ENABLE = no | 10 | BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite |
11 | CONSOLE_ENABLE = no | 11 | CONSOLE_ENABLE = no |
12 | SLEEP_LED_ENABLE = no \ No newline at end of file | 12 | SLEEP_LED_ENABLE = no \ No newline at end of file |
diff --git a/users/ericgebhart/rules.mk b/users/ericgebhart/rules.mk index 360abed94..698f6131e 100755 --- a/users/ericgebhart/rules.mk +++ b/users/ericgebhart/rules.mk | |||
@@ -9,6 +9,6 @@ KEY_LOCK_ENABLE = yes # Enable the KC_LOCK key | |||
9 | TAP_DANCE_ENABLE = yes # Enable the tap dance feature. | 9 | TAP_DANCE_ENABLE = yes # Enable the tap dance feature. |
10 | CONSOLE_ENABLE = no # Console for debug | 10 | CONSOLE_ENABLE = no # Console for debug |
11 | 11 | ||
12 | BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration | 12 | BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite |
13 | UNICODE_ENABLE = no | 13 | UNICODE_ENABLE = no |
14 | SLEEP_LED_ENABLE = no | 14 | SLEEP_LED_ENABLE = no |
diff --git a/users/gordon/rules.mk b/users/gordon/rules.mk index 06e671a63..c282f0028 100644 --- a/users/gordon/rules.mk +++ b/users/gordon/rules.mk | |||
@@ -1,4 +1,3 @@ | |||
1 | TAP_DANCE_ENABLE = yes | 1 | TAP_DANCE_ENABLE = yes |
2 | SRC += gordon.c | 2 | SRC += gordon.c |
3 | 3 | ||
4 | # BOOTMAGIC_ENABLE = full | ||
diff --git a/users/issmirnov/rules.mk b/users/issmirnov/rules.mk index 93ec21b01..d96083f7d 100644 --- a/users/issmirnov/rules.mk +++ b/users/issmirnov/rules.mk | |||
@@ -19,7 +19,7 @@ NKRO_ENABLE = no # note: also needs FORCE_NKRO in config.h | |||
19 | # Disable unused features to save on space | 19 | # Disable unused features to save on space |
20 | # https://thomasbaart.nl/2018/12/01/reducing-firmware-size-in-qmk/ | 20 | # https://thomasbaart.nl/2018/12/01/reducing-firmware-size-in-qmk/ |
21 | MOUSEKEY_ENABLE = no # 2000 bytes | 21 | MOUSEKEY_ENABLE = no # 2000 bytes |
22 | BOOTMAGIC_ENABLE = no | 22 | BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite |
23 | COMMAND_ENABLE = no # https://beta.docs.qmk.fm/features/feature_command | 23 | COMMAND_ENABLE = no # https://beta.docs.qmk.fm/features/feature_command |
24 | UNICODE_ENABLE = no # Unicode | 24 | UNICODE_ENABLE = no # Unicode |
25 | SWAP_HANDS_ENABLE = no # Allow swapping hands of keyboard | 25 | SWAP_HANDS_ENABLE = no # Allow swapping hands of keyboard |
diff --git a/users/jdelkins/rules.mk b/users/jdelkins/rules.mk index b9d377b28..70769c881 100644 --- a/users/jdelkins/rules.mk +++ b/users/jdelkins/rules.mk | |||
@@ -7,4 +7,4 @@ endif | |||
7 | users/jdelkins/secrets.h: users/jdelkins/secrets.h.gpg | 7 | users/jdelkins/secrets.h: users/jdelkins/secrets.h.gpg |
8 | gpg -d $< >$@ | 8 | gpg -d $< >$@ |
9 | 9 | ||
10 | BOOTMAGIC_ENABLE = no | 10 | BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite |
diff --git a/users/losinggeneration/rules.mk b/users/losinggeneration/rules.mk index 295367fbc..41d6f9167 100644 --- a/users/losinggeneration/rules.mk +++ b/users/losinggeneration/rules.mk | |||
@@ -2,7 +2,6 @@ | |||
2 | # Only enable things here that are generic to all keyboards. A yes or no here | 2 | # Only enable things here that are generic to all keyboards. A yes or no here |
3 | # will override keyboard/keymap specific values | 3 | # will override keyboard/keymap specific values |
4 | # | 4 | # |
5 | #BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000) | ||
6 | #COMMAND_ENABLE = no # Commands for debug and configuration | 5 | #COMMAND_ENABLE = no # Commands for debug and configuration |
7 | #CONSOLE_ENABLE = no # Console for debug(+400) | 6 | #CONSOLE_ENABLE = no # Console for debug(+400) |
8 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) | 7 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) |
diff --git a/users/miles2go/keymaps/handwired/ms_sculpt_mobile/rules.mk b/users/miles2go/keymaps/handwired/ms_sculpt_mobile/rules.mk index 7eb39e108..41273a9a6 100644 --- a/users/miles2go/keymaps/handwired/ms_sculpt_mobile/rules.mk +++ b/users/miles2go/keymaps/handwired/ms_sculpt_mobile/rules.mk | |||
@@ -2,7 +2,7 @@ | |||
2 | # change to "no" to disable the options, or define them in the Makefile in | 2 | # change to "no" to disable the options, or define them in the Makefile in |
3 | # the appropriate keymap folder that will get included automatically | 3 | # the appropriate keymap folder that will get included automatically |
4 | # | 4 | # |
5 | BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration | 5 | BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite |
6 | MOUSEKEY_ENABLE = yes # Mouse keys | 6 | MOUSEKEY_ENABLE = yes # Mouse keys |
7 | EXTRAKEY_ENABLE = yes # Audio control and System control | 7 | EXTRAKEY_ENABLE = yes # Audio control and System control |
8 | CONSOLE_ENABLE = no # Console for debug | 8 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/users/ninjonas/rules.mk b/users/ninjonas/rules.mk index a5cd0fdd9..7ff8f24b9 100644 --- a/users/ninjonas/rules.mk +++ b/users/ninjonas/rules.mk | |||
@@ -1,4 +1,4 @@ | |||
1 | BOOTMAGIC_ENABLE = no # Disable Boot Magic (https://beta.docs.qmk.fm/features/feature_bootmagic) | 1 | BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite |
2 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) | 2 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) |
3 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) | 3 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) |
4 | TAP_DANCE_ENABLE = yes # Enable Tap Dance. | 4 | TAP_DANCE_ENABLE = yes # Enable Tap Dance. |
diff --git a/users/ridingqwerty/rules.mk b/users/ridingqwerty/rules.mk index 153e5ff90..93b88068e 100644 --- a/users/ridingqwerty/rules.mk +++ b/users/ridingqwerty/rules.mk | |||
@@ -1,7 +1,7 @@ | |||
1 | SRC += ridingqwerty.c \ | 1 | SRC += ridingqwerty.c \ |
2 | process_records.c | 2 | process_records.c |
3 | 3 | ||
4 | BOOTMAGIC_ENABLE = lite | 4 | BOOTMAGIC_ENABLE = lite # Enable Bootmagic Lite |
5 | CONSOLE_ENABLE = no | 5 | CONSOLE_ENABLE = no |
6 | COMMAND_ENABLE = no | 6 | COMMAND_ENABLE = no |
7 | UNICODE_ENABLE = no # "yes" in Atreus default keymap, blocking UNICODEMAP_ENABLE | 7 | UNICODE_ENABLE = no # "yes" in Atreus default keymap, blocking UNICODEMAP_ENABLE |
diff --git a/users/romus/rules.mk b/users/romus/rules.mk index 58f7ccf9c..32a5ab092 100644 --- a/users/romus/rules.mk +++ b/users/romus/rules.mk | |||
@@ -10,7 +10,7 @@ ifndef BLUETOOTH_ENABLE | |||
10 | BLUETOOTH_ENABLE = no # No bluetooth | 10 | BLUETOOTH_ENABLE = no # No bluetooth |
11 | endif | 11 | endif |
12 | COMMAND_ENABLE = no # Some bootmagic thing i dont use | 12 | COMMAND_ENABLE = no # Some bootmagic thing i dont use |
13 | BOOTMAGIC_ENABLE = no # Access to EEPROM settings, not needed | 13 | BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite |
14 | CONSOLE_ENABLE = no # Allows console output with a command | 14 | CONSOLE_ENABLE = no # Allows console output with a command |
15 | SLEEP_LED_ENABLE = no # Breathes LED's when computer is asleep. Untested. | 15 | SLEEP_LED_ENABLE = no # Breathes LED's when computer is asleep. Untested. |
16 | NKRO_ENABLE = no # Default is 6KRO which is plenty | 16 | NKRO_ENABLE = no # Default is 6KRO which is plenty |
diff --git a/users/spidey3/rules.mk b/users/spidey3/rules.mk index bd378f545..69327038b 100644 --- a/users/spidey3/rules.mk +++ b/users/spidey3/rules.mk | |||
@@ -1,4 +1,4 @@ | |||
1 | BOOTMAGIC_ENABLE = lite | 1 | BOOTMAGIC_ENABLE = lite # Enable Bootmagic Lite |
2 | CONSOLE_ENABLE = yes # Console for debug | 2 | CONSOLE_ENABLE = yes # Console for debug |
3 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 3 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
4 | LTO_ENABLE = yes | 4 | LTO_ENABLE = yes |
diff --git a/users/spotpuff/rules.mk b/users/spotpuff/rules.mk index 279054837..7b4abdbc1 100644 --- a/users/spotpuff/rules.mk +++ b/users/spotpuff/rules.mk | |||
@@ -1 +1 @@ | |||
BOOTMAGIC_ENABLE = no | BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite | ||
diff --git a/users/talljoe/rules.mk b/users/talljoe/rules.mk index 42ffb411a..632e725b7 100644 --- a/users/talljoe/rules.mk +++ b/users/talljoe/rules.mk | |||
@@ -13,4 +13,4 @@ TAP_DANCE_ENABLE=yes | |||
13 | CONSOLE_ENABLE=no | 13 | CONSOLE_ENABLE=no |
14 | COMMAND_ENABLE=no | 14 | COMMAND_ENABLE=no |
15 | DYNAMIC_KEYMAP_ENABLE=no | 15 | DYNAMIC_KEYMAP_ENABLE=no |
16 | BOOTMAGIC_ENABLE=full | 16 | BOOTMAGIC_ENABLE = lite # Enable Bootmagic Lite |
diff --git a/users/tominabox1/rules.mk b/users/tominabox1/rules.mk index 22b6a858f..a7759f802 100644 --- a/users/tominabox1/rules.mk +++ b/users/tominabox1/rules.mk | |||
@@ -5,7 +5,7 @@ | |||
5 | CONSOLE_ENABLE = no | 5 | CONSOLE_ENABLE = no |
6 | TAP_DANCE_ENABLE = yes | 6 | TAP_DANCE_ENABLE = yes |
7 | NKRO_ENABLE = yes | 7 | NKRO_ENABLE = yes |
8 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration | 8 | BOOTMAGIC_ENABLE = lite # Enable Bootmagic Lite |
9 | 9 | ||
10 | ifeq ($(strip $(KEYBOARD)), crkbd/rev1) | 10 | ifeq ($(strip $(KEYBOARD)), crkbd/rev1) |
11 | RGB_MATRIX_ENABLE = yes | 11 | RGB_MATRIX_ENABLE = yes |
diff --git a/users/yanfali/rules.mk b/users/yanfali/rules.mk index 467adceef..631dda4fb 100644 --- a/users/yanfali/rules.mk +++ b/users/yanfali/rules.mk | |||
@@ -1,4 +1,4 @@ | |||
1 | BOOTMAGIC_ENABLE = lite | 1 | BOOTMAGIC_ENABLE = lite # Enable Bootmagic Lite |
2 | DYNAMIC_KEYMAP_ENABLE = no | 2 | DYNAMIC_KEYMAP_ENABLE = no |
3 | LTO_ENABLE = yes | 3 | LTO_ENABLE = yes |
4 | AUDIO_ENABLE = no | 4 | AUDIO_ENABLE = no |