diff options
214 files changed, 227 insertions, 214 deletions
diff --git a/common_features.mk b/common_features.mk index eb2ea2811..5a1231de4 100644 --- a/common_features.mk +++ b/common_features.mk | |||
@@ -464,7 +464,7 @@ ifneq ($(strip $(BOOTMAGIC_ENABLE)), no) | |||
464 | ifeq ($(filter $(BOOTMAGIC_ENABLE),$(VALID_MAGIC_TYPES)),) | 464 | ifeq ($(filter $(BOOTMAGIC_ENABLE),$(VALID_MAGIC_TYPES)),) |
465 | $(error BOOTMAGIC_ENABLE="$(BOOTMAGIC_ENABLE)" is not a valid type of magic) | 465 | $(error BOOTMAGIC_ENABLE="$(BOOTMAGIC_ENABLE)" is not a valid type of magic) |
466 | endif | 466 | endif |
467 | ifeq ($(strip $(BOOTMAGIC_ENABLE)), lite) | 467 | ifneq ($(strip $(BOOTMAGIC_ENABLE)), full) |
468 | OPT_DEFS += -DBOOTMAGIC_LITE | 468 | OPT_DEFS += -DBOOTMAGIC_LITE |
469 | QUANTUM_SRC += $(QUANTUM_DIR)/bootmagic/bootmagic_lite.c | 469 | QUANTUM_SRC += $(QUANTUM_DIR)/bootmagic/bootmagic_lite.c |
470 | else | 470 | else |
@@ -689,4 +689,4 @@ ifeq ($(strip $(USBPD_ENABLE)), yes) | |||
689 | # Board designers can add their own driver to $(SRC) | 689 | # Board designers can add their own driver to $(SRC) |
690 | endif | 690 | endif |
691 | endif | 691 | endif |
692 | endif \ No newline at end of file | 692 | endif |
diff --git a/docs/ChangeLog/20210529/PR12172.md b/docs/ChangeLog/20210529/PR12172.md new file mode 100644 index 000000000..0c355c151 --- /dev/null +++ b/docs/ChangeLog/20210529/PR12172.md | |||
@@ -0,0 +1,13 @@ | |||
1 | ## Bootmagic Deprecation and Refactor ([#12172](https://github.com/qmk/qmk_firmware/pull/12172)) | ||
2 | |||
3 | QMK has decided to deprecate the full Bootmagic feature and leave Bootmagic Lite as the only remaining option. | ||
4 | |||
5 | This pull request changes the behavior of `BOOTMAGIC_ENABLE` such that specifying `BOOTMAGIC_ENABLE = yes` enables Bootmagic Lite instead of full Bootmagic. | ||
6 | |||
7 | ### Tentative Deprecation Schedule | ||
8 | |||
9 | This is the current planned roadmap for the behavior of `BOOTMAGIC_ENABLE`: | ||
10 | |||
11 | - From 2021-05-29, setting `BOOTMAGIC_ENABLE = yes` will enable Bootmagic Lite instead of full Bootmagic. | ||
12 | - From 2021-08-28, `BOOTMAGIC_ENABLE` must be either `yes`, `lite`, or `no` – setting `BOOTMAGIC_ENABLE = full` will cause compilation to fail. | ||
13 | - From 2021-11-27, `BOOTMAGIC_ENABLE` must be either `yes` or `no` – setting `BOOTMAGIC_ENABLE = lite` will cause compilation to fail. | ||
diff --git a/keyboards/1upkeyboards/sweet16/rules.mk b/keyboards/1upkeyboards/sweet16/rules.mk index d7e57eb33..22f9c36e6 100644 --- a/keyboards/1upkeyboards/sweet16/rules.mk +++ b/keyboards/1upkeyboards/sweet16/rules.mk | |||
@@ -1,7 +1,7 @@ | |||
1 | # Build Options | 1 | # Build Options |
2 | # | 2 | # |
3 | DEFAULT_FOLDER = 1upkeyboards/sweet16/v1 | 3 | DEFAULT_FOLDER = 1upkeyboards/sweet16/v1 |
4 | #BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 4 | #BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
5 | MOUSEKEY_ENABLE = yes # Mouse keys | 5 | MOUSEKEY_ENABLE = yes # Mouse keys |
6 | EXTRAKEY_ENABLE = yes # Audio control and System control | 6 | EXTRAKEY_ENABLE = yes # Audio control and System control |
7 | CONSOLE_ENABLE = no # Console for debug | 7 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/40percentclub/gherkin/rules.mk b/keyboards/40percentclub/gherkin/rules.mk index db971e00e..18a35b275 100644 --- a/keyboards/40percentclub/gherkin/rules.mk +++ b/keyboards/40percentclub/gherkin/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = caterina | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/40percentclub/luddite/rules.mk b/keyboards/40percentclub/luddite/rules.mk index 6da5cd05a..3e42dddd6 100644 --- a/keyboards/40percentclub/luddite/rules.mk +++ b/keyboards/40percentclub/luddite/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = caterina | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/40percentclub/tomato/rules.mk b/keyboards/40percentclub/tomato/rules.mk index 312134b7c..80b40c719 100644 --- a/keyboards/40percentclub/tomato/rules.mk +++ b/keyboards/40percentclub/tomato/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = caterina | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/40percentclub/ut47/rules.mk b/keyboards/40percentclub/ut47/rules.mk index 50868429a..3c8a8f68f 100644 --- a/keyboards/40percentclub/ut47/rules.mk +++ b/keyboards/40percentclub/ut47/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = caterina | |||
14 | # Build Options | 14 | # Build Options |
15 | # change yes to no to disable | 15 | # change yes to no to disable |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/acheron/arctic/rules.mk b/keyboards/acheron/arctic/rules.mk index 5edab2afe..4a6aa0a4a 100644 --- a/keyboards/acheron/arctic/rules.mk +++ b/keyboards/acheron/arctic/rules.mk | |||
@@ -4,7 +4,7 @@ MCU = STM32F072 | |||
4 | # Build Options | 4 | # Build Options |
5 | # change yes to no to disable | 5 | # change yes to no to disable |
6 | # | 6 | # |
7 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 7 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
8 | MOUSEKEY_ENABLE = yes # Mouse keys | 8 | MOUSEKEY_ENABLE = yes # Mouse keys |
9 | EXTRAKEY_ENABLE = yes # Audio control and System control | 9 | EXTRAKEY_ENABLE = yes # Audio control and System control |
10 | CONSOLE_ENABLE = yes # Console for debug | 10 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/acheron/austin/rules.mk b/keyboards/acheron/austin/rules.mk index 6796ab140..b73c2cf7c 100644 --- a/keyboards/acheron/austin/rules.mk +++ b/keyboards/acheron/austin/rules.mk | |||
@@ -4,7 +4,7 @@ MCU = STM32F072 | |||
4 | # Build Options | 4 | # Build Options |
5 | # change yes to no to disable | 5 | # change yes to no to disable |
6 | # | 6 | # |
7 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 7 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
8 | MOUSEKEY_ENABLE = yes # Mouse keys | 8 | MOUSEKEY_ENABLE = yes # Mouse keys |
9 | EXTRAKEY_ENABLE = yes # Audio control and System control | 9 | EXTRAKEY_ENABLE = yes # Audio control and System control |
10 | CONSOLE_ENABLE = yes # Console for debug | 10 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/acheron/keebspcb/rules.mk b/keyboards/acheron/keebspcb/rules.mk index b08ad400c..849a137cd 100644 --- a/keyboards/acheron/keebspcb/rules.mk +++ b/keyboards/acheron/keebspcb/rules.mk | |||
@@ -4,7 +4,7 @@ MCU = STM32F072 | |||
4 | # Build Options | 4 | # Build Options |
5 | # change yes to no to disable | 5 | # change yes to no to disable |
6 | # | 6 | # |
7 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 7 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
8 | MOUSEKEY_ENABLE = yes # Mouse keys | 8 | MOUSEKEY_ENABLE = yes # Mouse keys |
9 | EXTRAKEY_ENABLE = yes # Audio control and System control | 9 | EXTRAKEY_ENABLE = yes # Audio control and System control |
10 | CONSOLE_ENABLE = yes # Console for debug | 10 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/acheron/lasgweloth/rules.mk b/keyboards/acheron/lasgweloth/rules.mk index 6bfb44ee9..56b91b692 100644 --- a/keyboards/acheron/lasgweloth/rules.mk +++ b/keyboards/acheron/lasgweloth/rules.mk | |||
@@ -4,7 +4,7 @@ MCU = STM32F072 | |||
4 | # Build Options | 4 | # Build Options |
5 | # change yes to no to disable | 5 | # change yes to no to disable |
6 | # | 6 | # |
7 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 7 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
8 | MOUSEKEY_ENABLE = yes # Mouse keys | 8 | MOUSEKEY_ENABLE = yes # Mouse keys |
9 | EXTRAKEY_ENABLE = yes # Audio control and System control | 9 | EXTRAKEY_ENABLE = yes # Audio control and System control |
10 | CONSOLE_ENABLE = yes # Console for debug | 10 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/acheron/shark/rules.mk b/keyboards/acheron/shark/rules.mk index 04f2a7b94..94accbd8f 100644 --- a/keyboards/acheron/shark/rules.mk +++ b/keyboards/acheron/shark/rules.mk | |||
@@ -5,7 +5,7 @@ BOARD = QMK_PROTON_C | |||
5 | # Build Options | 5 | # Build Options |
6 | # change yes to no to disable | 6 | # change yes to no to disable |
7 | # | 7 | # |
8 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 8 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
9 | MOUSEKEY_ENABLE = yes # Mouse keys | 9 | MOUSEKEY_ENABLE = yes # Mouse keys |
10 | EXTRAKEY_ENABLE = yes # Audio control and System control | 10 | EXTRAKEY_ENABLE = yes # Audio control and System control |
11 | CONSOLE_ENABLE = yes # Console for debug | 11 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/acr60/rules.mk b/keyboards/acr60/rules.mk index c1f1f22ba..22fd09140 100644 --- a/keyboards/acr60/rules.mk +++ b/keyboards/acr60/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = atmel-dfu | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/alf/x2/rules.mk b/keyboards/alf/x2/rules.mk index c1f1f22ba..22fd09140 100644 --- a/keyboards/alf/x2/rules.mk +++ b/keyboards/alf/x2/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = atmel-dfu | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/alpha/rules.mk b/keyboards/alpha/rules.mk index 773655f2f..dceb6e307 100755 --- a/keyboards/alpha/rules.mk +++ b/keyboards/alpha/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = caterina | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/alpine65/rules.mk b/keyboards/alpine65/rules.mk index 56ee0e25b..4f9422096 100644 --- a/keyboards/alpine65/rules.mk +++ b/keyboards/alpine65/rules.mk | |||
@@ -4,7 +4,7 @@ MCU = STM32F072 | |||
4 | # Build Options | 4 | # Build Options |
5 | # change yes to no to disable | 5 | # change yes to no to disable |
6 | # | 6 | # |
7 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 7 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
8 | MOUSEKEY_ENABLE = yes # Mouse keys | 8 | MOUSEKEY_ENABLE = yes # Mouse keys |
9 | EXTRAKEY_ENABLE = yes # Audio control and System control | 9 | EXTRAKEY_ENABLE = yes # Audio control and System control |
10 | CONSOLE_ENABLE = yes # Console for debug | 10 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/alu84/rules.mk b/keyboards/alu84/rules.mk index 81dbad070..8d1652171 100755 --- a/keyboards/alu84/rules.mk +++ b/keyboards/alu84/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = atmel-dfu | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = no # Mouse keys | 18 | MOUSEKEY_ENABLE = no # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/at101_bh/rules.mk b/keyboards/at101_bh/rules.mk index 1930d9f27..af0606f6d 100644 --- a/keyboards/at101_bh/rules.mk +++ b/keyboards/at101_bh/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = halfkay | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/at_at/660m/rules.mk b/keyboards/at_at/660m/rules.mk index a94604fb0..a272f6d34 100644 --- a/keyboards/at_at/660m/rules.mk +++ b/keyboards/at_at/660m/rules.mk | |||
@@ -6,7 +6,7 @@ BOARD = GENERIC_STM32_F072XB | |||
6 | # comment out to disable the options. | 6 | # comment out to disable the options. |
7 | # | 7 | # |
8 | 8 | ||
9 | #BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 9 | #BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
10 | MOUSEKEY_ENABLE = yes # Mouse keys | 10 | MOUSEKEY_ENABLE = yes # Mouse keys |
11 | EXTRAKEY_ENABLE = yes # Audio control and System control | 11 | EXTRAKEY_ENABLE = yes # Audio control and System control |
12 | CONSOLE_ENABLE = yes # Console for debug | 12 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/bantam44/rules.mk b/keyboards/bantam44/rules.mk index d90f8155e..e0fbf5a8c 100644 --- a/keyboards/bantam44/rules.mk +++ b/keyboards/bantam44/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = halfkay | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = yes # Console for debug | 20 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/beatervan/rules.mk b/keyboards/beatervan/rules.mk index 1ea4a84d5..fd23f3301 100644 --- a/keyboards/beatervan/rules.mk +++ b/keyboards/beatervan/rules.mk | |||
@@ -7,7 +7,7 @@ BOOTLOADER = caterina | |||
7 | # Build Options | 7 | # Build Options |
8 | # change yes to no to disable | 8 | # change yes to no to disable |
9 | # | 9 | # |
10 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 10 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
11 | MOUSEKEY_ENABLE = yes # Mouse keys | 11 | MOUSEKEY_ENABLE = yes # Mouse keys |
12 | EXTRAKEY_ENABLE = yes # Audio control and System control | 12 | EXTRAKEY_ENABLE = yes # Audio control and System control |
13 | CONSOLE_ENABLE = no # Console for debug | 13 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/bfake/rules.mk b/keyboards/bfake/rules.mk index 5846b173b..c25b22249 100644 --- a/keyboards/bfake/rules.mk +++ b/keyboards/bfake/rules.mk | |||
@@ -12,7 +12,7 @@ MCU = atmega32a | |||
12 | BOOTLOADER = bootloadHID | 12 | BOOTLOADER = bootloadHID |
13 | 13 | ||
14 | # build options | 14 | # build options |
15 | BOOTMAGIC_ENABLE = yes | 15 | BOOTMAGIC_ENABLE = full |
16 | MOUSEKEY_ENABLE = yes | 16 | MOUSEKEY_ENABLE = yes |
17 | EXTRAKEY_ENABLE = yes | 17 | EXTRAKEY_ENABLE = yes |
18 | CONSOLE_ENABLE = no | 18 | CONSOLE_ENABLE = no |
diff --git a/keyboards/blackplum/rules.mk b/keyboards/blackplum/rules.mk index 6465dec7f..76aeee6ec 100644 --- a/keyboards/blackplum/rules.mk +++ b/keyboards/blackplum/rules.mk | |||
@@ -13,7 +13,7 @@ BOOTLOADER = qmk-dfu | |||
13 | # Build Options | 13 | # Build Options |
14 | # comment out to disable the options. | 14 | # comment out to disable the options. |
15 | # | 15 | # |
16 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 16 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
17 | MOUSEKEY_ENABLE = yes # Mouse keys | 17 | MOUSEKEY_ENABLE = yes # Mouse keys |
18 | EXTRAKEY_ENABLE = yes # Audio control and System control | 18 | EXTRAKEY_ENABLE = yes # Audio control and System control |
19 | CONSOLE_ENABLE = no # Console for debug | 19 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/boston/rules.mk b/keyboards/boston/rules.mk index 47dc20576..e7bc2db59 100644 --- a/keyboards/boston/rules.mk +++ b/keyboards/boston/rules.mk | |||
@@ -4,7 +4,7 @@ MCU = STM32F072 | |||
4 | # Build Options | 4 | # Build Options |
5 | # change yes to no to disable | 5 | # change yes to no to disable |
6 | # | 6 | # |
7 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 7 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
8 | MOUSEKEY_ENABLE = no # Mouse keys | 8 | MOUSEKEY_ENABLE = no # Mouse keys |
9 | EXTRAKEY_ENABLE = yes # Audio control and System control | 9 | EXTRAKEY_ENABLE = yes # Audio control and System control |
10 | CONSOLE_ENABLE = no # Console for debug | 10 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/box75/rules.mk b/keyboards/box75/rules.mk index 2d2f71e19..a202eca61 100644 --- a/keyboards/box75/rules.mk +++ b/keyboards/box75/rules.mk | |||
@@ -4,7 +4,7 @@ MCU = STM32F072 | |||
4 | # Build Options | 4 | # Build Options |
5 | # change yes to no to disable | 5 | # change yes to no to disable |
6 | # | 6 | # |
7 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 7 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
8 | MOUSEKEY_ENABLE = yes # Mouse keys | 8 | MOUSEKEY_ENABLE = yes # Mouse keys |
9 | EXTRAKEY_ENABLE = yes # Audio control and System control | 9 | EXTRAKEY_ENABLE = yes # Audio control and System control |
10 | CONSOLE_ENABLE = yes # Console for debug | 10 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/bpiphany/pegasushoof/keymaps/blowrak/rules.mk b/keyboards/bpiphany/pegasushoof/keymaps/blowrak/rules.mk index 8254a8389..a605a865e 100644 --- a/keyboards/bpiphany/pegasushoof/keymaps/blowrak/rules.mk +++ b/keyboards/bpiphany/pegasushoof/keymaps/blowrak/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 = yes # Virtual DIP switch configuration(+1000) | 5 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration(+1000) |
6 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) | 6 | MOUSEKEY_ENABLE = yes # 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 = yes # Console for debug(+400) | 8 | CONSOLE_ENABLE = yes # Console for debug(+400) |
diff --git a/keyboards/bpiphany/pegasushoof/keymaps/default/rules.mk b/keyboards/bpiphany/pegasushoof/keymaps/default/rules.mk index d6ebcd5d7..972b7fc71 100644 --- a/keyboards/bpiphany/pegasushoof/keymaps/default/rules.mk +++ b/keyboards/bpiphany/pegasushoof/keymaps/default/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 = yes # Virtual DIP switch configuration | 5 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
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 = yes # Console for debug | 8 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/bpiphany/pegasushoof/keymaps/default_jis/rules.mk b/keyboards/bpiphany/pegasushoof/keymaps/default_jis/rules.mk index 8254a8389..a605a865e 100644 --- a/keyboards/bpiphany/pegasushoof/keymaps/default_jis/rules.mk +++ b/keyboards/bpiphany/pegasushoof/keymaps/default_jis/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 = yes # Virtual DIP switch configuration(+1000) | 5 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration(+1000) |
6 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) | 6 | MOUSEKEY_ENABLE = yes # 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 = yes # Console for debug(+400) | 8 | CONSOLE_ENABLE = yes # Console for debug(+400) |
diff --git a/keyboards/bpiphany/pegasushoof/rules.mk b/keyboards/bpiphany/pegasushoof/rules.mk index ffb642a9c..ffc4fc0e8 100644 --- a/keyboards/bpiphany/pegasushoof/rules.mk +++ b/keyboards/bpiphany/pegasushoof/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = atmel-dfu | |||
14 | # Build Options | 14 | # Build Options |
15 | # change yes to no to disable | 15 | # change yes to no to disable |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = yes # Console for debug | 20 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/bpiphany/unloved_bastard/rules.mk b/keyboards/bpiphany/unloved_bastard/rules.mk index b211fa5e9..d6c3d6232 100644 --- a/keyboards/bpiphany/unloved_bastard/rules.mk +++ b/keyboards/bpiphany/unloved_bastard/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = atmel-dfu | |||
14 | # Build Options | 14 | # Build Options |
15 | # change yes to no to disable | 15 | # change yes to no to disable |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = yes # Console for debug | 20 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/cannonkeys/ortho48/rules.mk b/keyboards/cannonkeys/ortho48/rules.mk index 6e468c49a..ac927481f 100644 --- a/keyboards/cannonkeys/ortho48/rules.mk +++ b/keyboards/cannonkeys/ortho48/rules.mk | |||
@@ -8,7 +8,7 @@ BOOTLOADER = stm32duino | |||
8 | VPATH += keyboards/cannonkeys/bluepill | 8 | VPATH += keyboards/cannonkeys/bluepill |
9 | SRC = keyboard.c | 9 | SRC = keyboard.c |
10 | 10 | ||
11 | #BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 11 | #BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
12 | MOUSEKEY_ENABLE = yes # Mouse keys | 12 | MOUSEKEY_ENABLE = yes # Mouse keys |
13 | EXTRAKEY_ENABLE = yes # Audio control and System control | 13 | EXTRAKEY_ENABLE = yes # Audio control and System control |
14 | CONSOLE_ENABLE = yes # Console for debug | 14 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/cannonkeys/ortho60/rules.mk b/keyboards/cannonkeys/ortho60/rules.mk index ea9bd6b2d..ec91d3b81 100644 --- a/keyboards/cannonkeys/ortho60/rules.mk +++ b/keyboards/cannonkeys/ortho60/rules.mk | |||
@@ -8,7 +8,7 @@ BOOTLOADER = stm32duino | |||
8 | VPATH += keyboards/cannonkeys/bluepill | 8 | VPATH += keyboards/cannonkeys/bluepill |
9 | SRC = keyboard.c | 9 | SRC = keyboard.c |
10 | 10 | ||
11 | #BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 11 | #BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
12 | MOUSEKEY_ENABLE = yes # Mouse keys | 12 | MOUSEKEY_ENABLE = yes # Mouse keys |
13 | EXTRAKEY_ENABLE = yes # Audio control and System control | 13 | EXTRAKEY_ENABLE = yes # Audio control and System control |
14 | CONSOLE_ENABLE = yes # Console for debug | 14 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/cannonkeys/ortho75/rules.mk b/keyboards/cannonkeys/ortho75/rules.mk index e132ccaf1..9d6004656 100644 --- a/keyboards/cannonkeys/ortho75/rules.mk +++ b/keyboards/cannonkeys/ortho75/rules.mk | |||
@@ -8,7 +8,7 @@ BOOTLOADER = stm32duino | |||
8 | VPATH += keyboards/cannonkeys/bluepill | 8 | VPATH += keyboards/cannonkeys/bluepill |
9 | SRC = keyboard.c | 9 | SRC = keyboard.c |
10 | 10 | ||
11 | #BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 11 | #BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
12 | MOUSEKEY_ENABLE = yes # Mouse keys | 12 | MOUSEKEY_ENABLE = yes # Mouse keys |
13 | EXTRAKEY_ENABLE = yes # Audio control and System control | 13 | EXTRAKEY_ENABLE = yes # Audio control and System control |
14 | CONSOLE_ENABLE = yes # Console for debug | 14 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/cannonkeys/practice60/rules.mk b/keyboards/cannonkeys/practice60/rules.mk index 3f9ca1448..80bde01cf 100644 --- a/keyboards/cannonkeys/practice60/rules.mk +++ b/keyboards/cannonkeys/practice60/rules.mk | |||
@@ -8,7 +8,7 @@ BOOTLOADER = stm32duino | |||
8 | VPATH += keyboards/cannonkeys/bluepill | 8 | VPATH += keyboards/cannonkeys/bluepill |
9 | SRC = keyboard.c | 9 | SRC = keyboard.c |
10 | 10 | ||
11 | #BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 11 | #BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
12 | MOUSEKEY_ENABLE = yes # Mouse keys | 12 | MOUSEKEY_ENABLE = yes # Mouse keys |
13 | EXTRAKEY_ENABLE = yes # Audio control and System control | 13 | EXTRAKEY_ENABLE = yes # Audio control and System control |
14 | CONSOLE_ENABLE = yes # Console for debug | 14 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/cannonkeys/practice65/rules.mk b/keyboards/cannonkeys/practice65/rules.mk index 344844b0e..130f9b98e 100644 --- a/keyboards/cannonkeys/practice65/rules.mk +++ b/keyboards/cannonkeys/practice65/rules.mk | |||
@@ -8,7 +8,7 @@ BOOTLOADER = stm32duino | |||
8 | VPATH += keyboards/cannonkeys/bluepill | 8 | VPATH += keyboards/cannonkeys/bluepill |
9 | SRC = keyboard.c | 9 | SRC = keyboard.c |
10 | 10 | ||
11 | #BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 11 | #BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
12 | MOUSEKEY_ENABLE = yes # Mouse keys | 12 | MOUSEKEY_ENABLE = yes # Mouse keys |
13 | EXTRAKEY_ENABLE = yes # Audio control and System control | 13 | EXTRAKEY_ENABLE = yes # Audio control and System control |
14 | CONSOLE_ENABLE = yes # Console for debug | 14 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/chimera_ergo/rules.mk b/keyboards/chimera_ergo/rules.mk index 01d5c3c70..b7084b4a1 100644 --- a/keyboards/chimera_ergo/rules.mk +++ b/keyboards/chimera_ergo/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = caterina | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | #BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | #BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = yes # Console for debug | 20 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/chimera_ls/rules.mk b/keyboards/chimera_ls/rules.mk index 536e6053a..2f414ba81 100644 --- a/keyboards/chimera_ls/rules.mk +++ b/keyboards/chimera_ls/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = caterina | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | #BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | #BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = yes # Console for debug | 20 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/chimera_ortho/rules.mk b/keyboards/chimera_ortho/rules.mk index e3bbaa39d..d97cff59f 100644 --- a/keyboards/chimera_ortho/rules.mk +++ b/keyboards/chimera_ortho/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = caterina | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | #BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | #BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = yes # Console for debug | 20 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/ck60i/rules.mk b/keyboards/ck60i/rules.mk index 10f86791e..2360b9c85 100644 --- a/keyboards/ck60i/rules.mk +++ b/keyboards/ck60i/rules.mk | |||
@@ -4,7 +4,7 @@ MCU = STM32F072 | |||
4 | # Build Options | 4 | # Build Options |
5 | # change yes to no to disable | 5 | # change yes to no to disable |
6 | # | 6 | # |
7 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 7 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
8 | MOUSEKEY_ENABLE = yes # Mouse keys | 8 | MOUSEKEY_ENABLE = yes # Mouse keys |
9 | EXTRAKEY_ENABLE = yes # Audio control and System control | 9 | EXTRAKEY_ENABLE = yes # Audio control and System control |
10 | CONSOLE_ENABLE = no # Console for debug | 10 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/ckeys/thedora/rules.mk b/keyboards/ckeys/thedora/rules.mk index aa378710c..508af7d39 100755 --- a/keyboards/ckeys/thedora/rules.mk +++ b/keyboards/ckeys/thedora/rules.mk | |||
@@ -6,7 +6,7 @@ BOARD = QMK_PROTON_C | |||
6 | # comment out to disable the options. | 6 | # comment out to disable the options. |
7 | # | 7 | # |
8 | BACKLIGHT_ENABLE = no | 8 | BACKLIGHT_ENABLE = no |
9 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 9 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
10 | MOUSEKEY_ENABLE = yes # Mouse keys | 10 | MOUSEKEY_ENABLE = yes # Mouse keys |
11 | EXTRAKEY_ENABLE = yes # Audio control and System control | 11 | EXTRAKEY_ENABLE = yes # Audio control and System control |
12 | CONSOLE_ENABLE = no # Console for debug | 12 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/contra/rules.mk b/keyboards/contra/rules.mk index 5894ca132..9bd4c0851 100755 --- a/keyboards/contra/rules.mk +++ b/keyboards/contra/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = caterina | |||
14 | # Build Options | 14 | # Build Options |
15 | # change yes to no to disable | 15 | # change yes to no to disable |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/converter/siemens_tastatur/rules.mk b/keyboards/converter/siemens_tastatur/rules.mk index 451d07e67..ff54cf24e 100644 --- a/keyboards/converter/siemens_tastatur/rules.mk +++ b/keyboards/converter/siemens_tastatur/rules.mk | |||
@@ -6,7 +6,7 @@ BOOTLOADER = stm32duino | |||
6 | 6 | ||
7 | SRC = matrix.c | 7 | SRC = matrix.c |
8 | 8 | ||
9 | #BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 9 | #BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
10 | MOUSEKEY_ENABLE = yes # Mouse keys | 10 | MOUSEKEY_ENABLE = yes # Mouse keys |
11 | EXTRAKEY_ENABLE = yes # Audio control and System control | 11 | EXTRAKEY_ENABLE = yes # Audio control and System control |
12 | CONSOLE_ENABLE = yes # Console for debug | 12 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/converter/usb_usb/rules.mk b/keyboards/converter/usb_usb/rules.mk index d277853cf..d2b991837 100644 --- a/keyboards/converter/usb_usb/rules.mk +++ b/keyboards/converter/usb_usb/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = caterina | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | #BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | #BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | #MOUSEKEY_ENABLE = yes # Mouse keys | 18 | #MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | #CONSOLE_ENABLE = yes # Console for debug | 20 | #CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/cutie_club/wraith/rules.mk b/keyboards/cutie_club/wraith/rules.mk index dce4ad686..a42fd4257 100644 --- a/keyboards/cutie_club/wraith/rules.mk +++ b/keyboards/cutie_club/wraith/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = atmel-dfu | |||
14 | # Build Options | 14 | # Build Options |
15 | # change yes to no to disable | 15 | # change yes to no to disable |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/dichotomy/rules.mk b/keyboards/dichotomy/rules.mk index d6f98125e..a9a01d867 100755 --- a/keyboards/dichotomy/rules.mk +++ b/keyboards/dichotomy/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = caterina | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | #BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | #BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | #MOUSEKEY_ENABLE = yes # Mouse keys | 18 | #MOUSEKEY_ENABLE = yes # Mouse keys |
19 | POINTING_DEVICE_ENABLE = yes # Generic Pointer, not as big as mouse keys hopefully. | 19 | POINTING_DEVICE_ENABLE = yes # Generic Pointer, not as big as mouse keys hopefully. |
20 | EXTRAKEY_ENABLE = yes # Audio control and System control | 20 | EXTRAKEY_ENABLE = yes # Audio control and System control |
diff --git a/keyboards/do60/rules.mk b/keyboards/do60/rules.mk index 73bb4f096..106a1f06d 100644 --- a/keyboards/do60/rules.mk +++ b/keyboards/do60/rules.mk | |||
@@ -15,7 +15,7 @@ BOOTLOADER = atmel-dfu | |||
15 | AUDIO_ENABLE = no # Audio output on port C6 | 15 | AUDIO_ENABLE = no # Audio output on port C6 |
16 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 16 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
17 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 17 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
18 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 18 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
19 | COMMAND_ENABLE = no # Commands for debug and configuration | 19 | COMMAND_ENABLE = no # Commands for debug and configuration |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
21 | EXTRAKEY_ENABLE = yes # Audio control and System control | 21 | EXTRAKEY_ENABLE = yes # Audio control and System control |
diff --git a/keyboards/dz60/keymaps/LEdiodes/rules.mk b/keyboards/dz60/keymaps/LEdiodes/rules.mk index 38b067eb0..251d25fad 100644 --- a/keyboards/dz60/keymaps/LEdiodes/rules.mk +++ b/keyboards/dz60/keymaps/LEdiodes/rules.mk | |||
@@ -1,7 +1,7 @@ | |||
1 | # Build Options | 1 | # Build Options |
2 | # comment out to disable the options. | 2 | # comment out to disable the options. |
3 | # | 3 | # |
4 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000) | 4 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration(+1000) |
5 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) | 5 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) |
6 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) | 6 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) |
7 | CONSOLE_ENABLE = no # Console for debug(+400) | 7 | CONSOLE_ENABLE = no # Console for debug(+400) |
diff --git a/keyboards/dz60/keymaps/krusli/rules.mk b/keyboards/dz60/keymaps/krusli/rules.mk index 3138a24b6..1e7c0f745 100644 --- a/keyboards/dz60/keymaps/krusli/rules.mk +++ b/keyboards/dz60/keymaps/krusli/rules.mk | |||
@@ -1,7 +1,7 @@ | |||
1 | # Build Options | 1 | # Build Options |
2 | # comment out to disable the options. | 2 | # comment out to disable the options. |
3 | # | 3 | # |
4 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000) | 4 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration(+1000) |
5 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) | 5 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) |
6 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) | 6 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) |
7 | CONSOLE_ENABLE = no # Console for debug(+400) | 7 | CONSOLE_ENABLE = no # Console for debug(+400) |
diff --git a/keyboards/dz60/keymaps/marianas/rules.mk b/keyboards/dz60/keymaps/marianas/rules.mk index 230d194ab..b68cc80cf 100644 --- a/keyboards/dz60/keymaps/marianas/rules.mk +++ b/keyboards/dz60/keymaps/marianas/rules.mk | |||
@@ -3,7 +3,7 @@ | |||
3 | # | 3 | # |
4 | 4 | ||
5 | 5 | ||
6 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000) | 6 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration(+1000) |
7 | MOUSEKEY_ENABLE = no # Mouse keys(+4700) | 7 | MOUSEKEY_ENABLE = no # Mouse keys(+4700) |
8 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) | 8 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) |
9 | CONSOLE_ENABLE = no # Console for debug(+400) | 9 | CONSOLE_ENABLE = no # Console for debug(+400) |
diff --git a/keyboards/dz60/rules.mk b/keyboards/dz60/rules.mk index a626f1f5d..1671c42e9 100644 --- a/keyboards/dz60/rules.mk +++ b/keyboards/dz60/rules.mk | |||
@@ -7,7 +7,7 @@ BOOTLOADER = atmel-dfu | |||
7 | # Build Options | 7 | # Build Options |
8 | # change yes to no to disable | 8 | # change yes to no to disable |
9 | # | 9 | # |
10 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 10 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
11 | MOUSEKEY_ENABLE = yes # Mouse keys | 11 | MOUSEKEY_ENABLE = yes # Mouse keys |
12 | EXTRAKEY_ENABLE = yes # Audio control and System control | 12 | EXTRAKEY_ENABLE = yes # Audio control and System control |
13 | CONSOLE_ENABLE = no # Console for debug | 13 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/dztech/bocc/rules.mk b/keyboards/dztech/bocc/rules.mk index 6695a40a6..2668874ea 100644 --- a/keyboards/dztech/bocc/rules.mk +++ b/keyboards/dztech/bocc/rules.mk | |||
@@ -7,7 +7,7 @@ BOOTLOADER = atmel-dfu | |||
7 | # Build Options | 7 | # Build Options |
8 | # change yes to no to disable | 8 | # change yes to no to disable |
9 | # | 9 | # |
10 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 10 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
11 | MOUSEKEY_ENABLE = yes # Mouse keys | 11 | MOUSEKEY_ENABLE = yes # Mouse keys |
12 | EXTRAKEY_ENABLE = yes # Audio control and System control | 12 | EXTRAKEY_ENABLE = yes # Audio control and System control |
13 | CONSOLE_ENABLE = no # Console for debug | 13 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/dztech/volcano660/rules.mk b/keyboards/dztech/volcano660/rules.mk index c23060121..e7aea4087 100644 --- a/keyboards/dztech/volcano660/rules.mk +++ b/keyboards/dztech/volcano660/rules.mk | |||
@@ -7,7 +7,7 @@ BOOTLOADER = atmel-dfu | |||
7 | # Build Options | 7 | # Build Options |
8 | # change yes to no to disable | 8 | # change yes to no to disable |
9 | # | 9 | # |
10 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 10 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
11 | MOUSEKEY_ENABLE = yes # Mouse keys | 11 | MOUSEKEY_ENABLE = yes # Mouse keys |
12 | EXTRAKEY_ENABLE = yes # Audio control and System control | 12 | EXTRAKEY_ENABLE = yes # Audio control and System control |
13 | CONSOLE_ENABLE = no # Console for debug | 13 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/ergodone/rules.mk b/keyboards/ergodone/rules.mk index f0008e48f..acd485f2f 100644 --- a/keyboards/ergodone/rules.mk +++ b/keyboards/ergodone/rules.mk | |||
@@ -16,7 +16,7 @@ BOOTLOADER = caterina | |||
16 | # | 16 | # |
17 | CUSTOM_MATRIX = yes # Custom matrix file for the ErgoDone | 17 | CUSTOM_MATRIX = yes # Custom matrix file for the ErgoDone |
18 | UNICODE_ENABLE = yes # Unicode | 18 | UNICODE_ENABLE = yes # Unicode |
19 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 19 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
20 | MOUSEKEY_ENABLE = yes # Mouse keys | 20 | MOUSEKEY_ENABLE = yes # Mouse keys |
21 | EXTRAKEY_ENABLE = yes # Audio control and System control | 21 | EXTRAKEY_ENABLE = yes # Audio control and System control |
22 | CONSOLE_ENABLE = no # Console for debug | 22 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/espectro/rules.mk b/keyboards/espectro/rules.mk index 065014b97..57a846fb3 100755 --- a/keyboards/espectro/rules.mk +++ b/keyboards/espectro/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = atmel-dfu | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = no # Mouse keys | 18 | MOUSEKEY_ENABLE = no # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/exclusive/e6_rgb/rules.mk b/keyboards/exclusive/e6_rgb/rules.mk index e9db9676b..7fbd7e81f 100644 --- a/keyboards/exclusive/e6_rgb/rules.mk +++ b/keyboards/exclusive/e6_rgb/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = atmel-dfu | |||
14 | # Build Options | 14 | # Build Options |
15 | # change yes to no to disable | 15 | # change yes to no to disable |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = no # Mouse keys | 18 | MOUSEKEY_ENABLE = no # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/fc660c/rules.mk b/keyboards/fc660c/rules.mk index 54fadc826..b4ed65362 100644 --- a/keyboards/fc660c/rules.mk +++ b/keyboards/fc660c/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = atmel-dfu | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | # BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | # BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = yes # Console for debug | 20 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/fc980c/rules.mk b/keyboards/fc980c/rules.mk index 54fadc826..b4ed65362 100644 --- a/keyboards/fc980c/rules.mk +++ b/keyboards/fc980c/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = atmel-dfu | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | # BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | # BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = yes # Console for debug | 20 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/felix/rules.mk b/keyboards/felix/rules.mk index 01db7a212..1fcdf216c 100644 --- a/keyboards/felix/rules.mk +++ b/keyboards/felix/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = caterina | |||
14 | # Build Options | 14 | # Build Options |
15 | # change yes to no to disable | 15 | # change yes to no to disable |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/flehrad/numbrero/rules.mk b/keyboards/flehrad/numbrero/rules.mk index 969dd0b50..d83407139 100644 --- a/keyboards/flehrad/numbrero/rules.mk +++ b/keyboards/flehrad/numbrero/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = caterina | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000) | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration(+1000) |
18 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) | 18 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) |
20 | CONSOLE_ENABLE = no # Console for debug(+400) | 20 | CONSOLE_ENABLE = no # Console for debug(+400) |
diff --git a/keyboards/flehrad/snagpad/rules.mk b/keyboards/flehrad/snagpad/rules.mk index 566a398fe..fbc918ba4 100644 --- a/keyboards/flehrad/snagpad/rules.mk +++ b/keyboards/flehrad/snagpad/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = caterina | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/flehrad/tradestation/rules.mk b/keyboards/flehrad/tradestation/rules.mk index d3612c3c2..cf6c47d74 100644 --- a/keyboards/flehrad/tradestation/rules.mk +++ b/keyboards/flehrad/tradestation/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = caterina | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000) | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration(+1000) |
18 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) | 18 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) |
20 | CONSOLE_ENABLE = no # Console for debug(+400) | 20 | CONSOLE_ENABLE = no # Console for debug(+400) |
diff --git a/keyboards/four_banger/rules.mk b/keyboards/four_banger/rules.mk index ae77f0a0e..b989b893b 100644 --- a/keyboards/four_banger/rules.mk +++ b/keyboards/four_banger/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = atmel-dfu | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/foxlab/leaf60/hotswap/rules.mk b/keyboards/foxlab/leaf60/hotswap/rules.mk index 6d4bcc7ef..b8332901c 100644 --- a/keyboards/foxlab/leaf60/hotswap/rules.mk +++ b/keyboards/foxlab/leaf60/hotswap/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = atmel-dfu | |||
14 | # Build Options | 14 | # Build Options |
15 | # change yes to no to disable | 15 | # change yes to no to disable |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/fr4/southpaw75/rules.mk b/keyboards/fr4/southpaw75/rules.mk index e70a8a7d6..bde08efba 100644 --- a/keyboards/fr4/southpaw75/rules.mk +++ b/keyboards/fr4/southpaw75/rules.mk | |||
@@ -7,7 +7,7 @@ BOOTLOADER = caterina | |||
7 | # Build Options | 7 | # Build Options |
8 | # change yes to no to disable | 8 | # change yes to no to disable |
9 | # | 9 | # |
10 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 10 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
11 | MOUSEKEY_ENABLE = yes # Mouse keys | 11 | MOUSEKEY_ENABLE = yes # Mouse keys |
12 | EXTRAKEY_ENABLE = yes # Audio control and System control | 12 | EXTRAKEY_ENABLE = yes # Audio control and System control |
13 | CONSOLE_ENABLE = no # Console for debug | 13 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/fractal/rules.mk b/keyboards/fractal/rules.mk index d83deb422..0952b247a 100755 --- a/keyboards/fractal/rules.mk +++ b/keyboards/fractal/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = caterina | |||
14 | # Build Options | 14 | # Build Options |
15 | # change yes to no to disable | 15 | # change yes to no to disable |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/funky40/rules.mk b/keyboards/funky40/rules.mk index 138ac68e2..c50d7999b 100644 --- a/keyboards/funky40/rules.mk +++ b/keyboards/funky40/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = caterina | |||
14 | # Build Options | 14 | # Build Options |
15 | # change yes to no to disable | 15 | # change yes to no to disable |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/gh60/satan/keymaps/denolfe/rules.mk b/keyboards/gh60/satan/keymaps/denolfe/rules.mk index 5a8745b68..4e002fc0f 100644 --- a/keyboards/gh60/satan/keymaps/denolfe/rules.mk +++ b/keyboards/gh60/satan/keymaps/denolfe/rules.mk | |||
@@ -2,7 +2,7 @@ | |||
2 | # Build Options | 2 | # Build Options |
3 | # comment out to disable the options. | 3 | # comment out to disable the options. |
4 | # | 4 | # |
5 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000) | 5 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration(+1000) |
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 = yes # Console for debug(+400) | 8 | CONSOLE_ENABLE = yes # Console for debug(+400) |
diff --git a/keyboards/gh60/satan/keymaps/iso_split_rshift/rules.mk b/keyboards/gh60/satan/keymaps/iso_split_rshift/rules.mk index 7b395f4cc..071edf30e 100644 --- a/keyboards/gh60/satan/keymaps/iso_split_rshift/rules.mk +++ b/keyboards/gh60/satan/keymaps/iso_split_rshift/rules.mk | |||
@@ -1,4 +1,4 @@ | |||
1 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 1 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
2 | MOUSEKEY_ENABLE = no # Mouse keys | 2 | MOUSEKEY_ENABLE = no # Mouse keys |
3 | EXTRAKEY_ENABLE = yes # Audio control and System control | 3 | EXTRAKEY_ENABLE = yes # Audio control and System control |
4 | CONSOLE_ENABLE = yes # Console for debug | 4 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/gh60/satan/keymaps/olligranlund_iso/rules.mk b/keyboards/gh60/satan/keymaps/olligranlund_iso/rules.mk index 3d886f14f..4175ab137 100644 --- a/keyboards/gh60/satan/keymaps/olligranlund_iso/rules.mk +++ b/keyboards/gh60/satan/keymaps/olligranlund_iso/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 = yes # Virtual DIP switch configuration(+1000) | 5 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration(+1000) |
6 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) | 6 | MOUSEKEY_ENABLE = yes # 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/keyboards/gskt00/rules.mk b/keyboards/gskt00/rules.mk index f0bbcad81..0011ec6ce 100755 --- a/keyboards/gskt00/rules.mk +++ b/keyboards/gskt00/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = atmel-dfu | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = yes # Console for debug | 20 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/handwired/2x5keypad/rules.mk b/keyboards/handwired/2x5keypad/rules.mk index 997c9c0e9..52f64eb3f 100644 --- a/keyboards/handwired/2x5keypad/rules.mk +++ b/keyboards/handwired/2x5keypad/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = caterina | |||
14 | 14 | ||
15 | AUDIO_ENABLE = no | 15 | AUDIO_ENABLE = no |
16 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 16 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | COMMAND_ENABLE = no # Commands for debug and configuration | 18 | COMMAND_ENABLE = no # Commands for debug and configuration |
19 | CONSOLE_ENABLE= no # Console for debug | 19 | CONSOLE_ENABLE= no # Console for debug |
20 | EXTRAKEY_ENABLE = yes # Audio control and System control | 20 | EXTRAKEY_ENABLE = yes # Audio control and System control |
diff --git a/keyboards/handwired/aek64/rules.mk b/keyboards/handwired/aek64/rules.mk index 52c306130..e5a1d648a 100644 --- a/keyboards/handwired/aek64/rules.mk +++ b/keyboards/handwired/aek64/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = halfkay | |||
14 | # Build Options | 14 | # Build Options |
15 | # change to no to disable the options. | 15 | # change to no to disable the options. |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000) | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration(+1000) |
18 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) | 18 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) |
20 | CONSOLE_ENABLE = yes # Console for debug(+400) | 20 | CONSOLE_ENABLE = yes # Console for debug(+400) |
diff --git a/keyboards/handwired/arrow_pad/keymaps/pad_21/rules.mk b/keyboards/handwired/arrow_pad/keymaps/pad_21/rules.mk index d2403c9ec..702538af3 100644 --- a/keyboards/handwired/arrow_pad/keymaps/pad_21/rules.mk +++ b/keyboards/handwired/arrow_pad/keymaps/pad_21/rules.mk | |||
@@ -1,4 +1,4 @@ | |||
1 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000) | 1 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration(+1000) |
2 | MOUSEKEY_ENABLE = no # Mouse keys(+4700) | 2 | MOUSEKEY_ENABLE = no # Mouse keys(+4700) |
3 | EXTRAKEY_ENABLE = no # Audio control and System control(+450) | 3 | EXTRAKEY_ENABLE = no # Audio control and System control(+450) |
4 | CONSOLE_ENABLE = no # Console for debug(+400) | 4 | CONSOLE_ENABLE = no # Console for debug(+400) |
diff --git a/keyboards/handwired/arrow_pad/keymaps/pad_24/rules.mk b/keyboards/handwired/arrow_pad/keymaps/pad_24/rules.mk index b305f8482..12c820839 100644 --- a/keyboards/handwired/arrow_pad/keymaps/pad_24/rules.mk +++ b/keyboards/handwired/arrow_pad/keymaps/pad_24/rules.mk | |||
@@ -1,4 +1,4 @@ | |||
1 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000) | 1 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration(+1000) |
2 | MOUSEKEY_ENABLE = no # Mouse keys(+4700) | 2 | MOUSEKEY_ENABLE = no # Mouse keys(+4700) |
3 | EXTRAKEY_ENABLE = no # Audio control and System control(+450) | 3 | EXTRAKEY_ENABLE = no # Audio control and System control(+450) |
4 | CONSOLE_ENABLE = no # Console for debug(+400) | 4 | CONSOLE_ENABLE = no # Console for debug(+400) |
diff --git a/keyboards/handwired/arrow_pad/rules.mk b/keyboards/handwired/arrow_pad/rules.mk index 65fc42a06..e1eb35c51 100644 --- a/keyboards/handwired/arrow_pad/rules.mk +++ b/keyboards/handwired/arrow_pad/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = halfkay | |||
14 | # Build Options | 14 | # Build Options |
15 | # change yes to no to disable | 15 | # change yes to no to disable |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000) | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration(+1000) |
18 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) | 18 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) |
20 | CONSOLE_ENABLE = yes # Console for debug(+400) | 20 | CONSOLE_ENABLE = yes # Console for debug(+400) |
diff --git a/keyboards/handwired/ck4x4/rules.mk b/keyboards/handwired/ck4x4/rules.mk index e5785270b..ebf1648c2 100644 --- a/keyboards/handwired/ck4x4/rules.mk +++ b/keyboards/handwired/ck4x4/rules.mk | |||
@@ -5,7 +5,7 @@ MCU = STM32F072 | |||
5 | # comment out to disable the options. | 5 | # comment out to disable the options. |
6 | # | 6 | # |
7 | 7 | ||
8 | #BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 8 | #BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
9 | MOUSEKEY_ENABLE = yes # Mouse keys | 9 | MOUSEKEY_ENABLE = yes # Mouse keys |
10 | EXTRAKEY_ENABLE = yes # Audio control and System control | 10 | EXTRAKEY_ENABLE = yes # Audio control and System control |
11 | CONSOLE_ENABLE = yes # Console for debug | 11 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/handwired/co60/rev1/rules.mk b/keyboards/handwired/co60/rev1/rules.mk index ae50334a3..0986bed20 100644 --- a/keyboards/handwired/co60/rev1/rules.mk +++ b/keyboards/handwired/co60/rev1/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = atmel-dfu | |||
14 | # Build Options | 14 | # Build Options |
15 | # change yes to no to disable | 15 | # change yes to no to disable |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000) | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration(+1000) |
18 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) | 18 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) |
20 | CONSOLE_ENABLE = no # Console for debug(+400) | 20 | CONSOLE_ENABLE = no # Console for debug(+400) |
diff --git a/keyboards/handwired/colorlice/rules.mk b/keyboards/handwired/colorlice/rules.mk index 77e6d03d6..077b197ef 100644 --- a/keyboards/handwired/colorlice/rules.mk +++ b/keyboards/handwired/colorlice/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = atmel-dfu | |||
14 | # Build Options | 14 | # Build Options |
15 | # change yes to no to disable | 15 | # change yes to no to disable |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/handwired/curiosity/rules.mk b/keyboards/handwired/curiosity/rules.mk index dace27ef3..d410771e8 100644 --- a/keyboards/handwired/curiosity/rules.mk +++ b/keyboards/handwired/curiosity/rules.mk | |||
@@ -7,7 +7,7 @@ BOOTLOADER = caterina | |||
7 | # Build Options | 7 | # Build Options |
8 | # change yes to no to disable | 8 | # change yes to no to disable |
9 | # | 9 | # |
10 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 10 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
11 | MOUSEKEY_ENABLE = yes # Mouse keys | 11 | MOUSEKEY_ENABLE = yes # Mouse keys |
12 | EXTRAKEY_ENABLE = yes # Audio control and System control | 12 | EXTRAKEY_ENABLE = yes # Audio control and System control |
13 | CONSOLE_ENABLE = no # Console for debug | 13 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/handwired/ddg_56/rules.mk b/keyboards/handwired/ddg_56/rules.mk index dfbb0959f..814338430 100644 --- a/keyboards/handwired/ddg_56/rules.mk +++ b/keyboards/handwired/ddg_56/rules.mk | |||
@@ -6,7 +6,7 @@ BOARD = QMK_PROTON_C | |||
6 | # change to "no" to disable the options, or define them in the Makefile in | 6 | # change to "no" to disable the options, or define them in the Makefile in |
7 | # the appropriate keymap folder that will get included automatically | 7 | # the appropriate keymap folder that will get included automatically |
8 | # | 8 | # |
9 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 9 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
10 | MOUSEKEY_ENABLE = no # Mouse keys | 10 | MOUSEKEY_ENABLE = no # Mouse keys |
11 | EXTRAKEY_ENABLE = no # Audio control and System control | 11 | EXTRAKEY_ENABLE = no # Audio control and System control |
12 | CONSOLE_ENABLE = no # Console for debug | 12 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/handwired/eagleii/rules.mk b/keyboards/handwired/eagleii/rules.mk index e45af67e5..aeee86d3a 100644 --- a/keyboards/handwired/eagleii/rules.mk +++ b/keyboards/handwired/eagleii/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = atmel-dfu | |||
14 | # Build Options | 14 | # Build Options |
15 | # change yes to no to disable | 15 | # change yes to no to disable |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes | 17 | BOOTMAGIC_ENABLE = full |
18 | MOUSEKEY_ENABLE = yes | 18 | MOUSEKEY_ENABLE = yes |
19 | EXTRAKEY_ENABLE = yes | 19 | EXTRAKEY_ENABLE = yes |
20 | CONSOLE_ENABLE = no | 20 | CONSOLE_ENABLE = no |
diff --git a/keyboards/handwired/fc200rt_qmk/rules.mk b/keyboards/handwired/fc200rt_qmk/rules.mk index fb1748db0..55a088771 100644 --- a/keyboards/handwired/fc200rt_qmk/rules.mk +++ b/keyboards/handwired/fc200rt_qmk/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = halfkay | |||
14 | # Build Options | 14 | # Build Options |
15 | # change yes to no to disable | 15 | # change yes to no to disable |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = yes # Console for debug | 20 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/handwired/hexon38/rules.mk b/keyboards/handwired/hexon38/rules.mk index fb5e1b0c9..93b7a1176 100644 --- a/keyboards/handwired/hexon38/rules.mk +++ b/keyboards/handwired/hexon38/rules.mk | |||
@@ -12,7 +12,7 @@ MCU = atmega32u4 | |||
12 | BOOTLOADER = halfkay | 12 | BOOTLOADER = halfkay |
13 | 13 | ||
14 | # Enabled build options: | 14 | # Enabled build options: |
15 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000) | 15 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration(+1000) |
16 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) | 16 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) |
17 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) | 17 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) |
18 | CONSOLE_ENABLE = yes # Console for debug(+400) | 18 | CONSOLE_ENABLE = yes # Console for debug(+400) |
diff --git a/keyboards/handwired/minorca/rules.mk b/keyboards/handwired/minorca/rules.mk index 64837b88e..f3f1502de 100644 --- a/keyboards/handwired/minorca/rules.mk +++ b/keyboards/handwired/minorca/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = halfkay | |||
14 | # Build Options | 14 | # Build Options |
15 | # change yes to no to disable | 15 | # change yes to no to disable |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/handwired/p1800fl/rules.mk b/keyboards/handwired/p1800fl/rules.mk index b85602bb9..cde197a0d 100644 --- a/keyboards/handwired/p1800fl/rules.mk +++ b/keyboards/handwired/p1800fl/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = qmk-dfu | |||
14 | # Build Options | 14 | # Build Options |
15 | # change yes to no to disable | 15 | # change yes to no to disable |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = yes # Console for debug | 20 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/handwired/p65rgb/rules.mk b/keyboards/handwired/p65rgb/rules.mk index 7e8ac8d55..00d15f090 100644 --- a/keyboards/handwired/p65rgb/rules.mk +++ b/keyboards/handwired/p65rgb/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = qmk-dfu | |||
14 | # Build Options | 14 | # Build Options |
15 | # change yes to no to disable | 15 | # change yes to no to disable |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/handwired/prkl30/feather/rules.mk b/keyboards/handwired/prkl30/feather/rules.mk index 27df4272a..366e53cf7 100644 --- a/keyboards/handwired/prkl30/feather/rules.mk +++ b/keyboards/handwired/prkl30/feather/rules.mk | |||
@@ -18,7 +18,7 @@ BOOTLOADER = caterina | |||
18 | # change yes to no to disable | 18 | # change yes to no to disable |
19 | # | 19 | # |
20 | BLUETOOTH = AdafruitBLE | 20 | BLUETOOTH = AdafruitBLE |
21 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 21 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
22 | ENCODER_ENABLE = yes | 22 | ENCODER_ENABLE = yes |
23 | MOUSEKEY_ENABLE = no # Mouse keys | 23 | MOUSEKEY_ENABLE = no # Mouse keys |
24 | EXTRAKEY_ENABLE = no # Audio control and System control | 24 | EXTRAKEY_ENABLE = no # Audio control and System control |
diff --git a/keyboards/handwired/retro_refit/rules.mk b/keyboards/handwired/retro_refit/rules.mk index 04db510d1..1506838a4 100644 --- a/keyboards/handwired/retro_refit/rules.mk +++ b/keyboards/handwired/retro_refit/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = halfkay | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000) | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration(+1000) |
18 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) | 18 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) |
20 | CONSOLE_ENABLE = yes # Console for debug(+400) | 20 | CONSOLE_ENABLE = yes # Console for debug(+400) |
diff --git a/keyboards/handwired/space_oddity/rules.mk b/keyboards/handwired/space_oddity/rules.mk index a2e63690b..97f9cfd80 100644 --- a/keyboards/handwired/space_oddity/rules.mk +++ b/keyboards/handwired/space_oddity/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = caterina | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000) | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration(+1000) |
18 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) | 18 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) |
20 | CONSOLE_ENABLE = no # Console for debug(+400) | 20 | CONSOLE_ENABLE = no # Console for debug(+400) |
diff --git a/keyboards/handwired/symmetry60/rules.mk b/keyboards/handwired/symmetry60/rules.mk index 905b15699..f41c45fff 100644 --- a/keyboards/handwired/symmetry60/rules.mk +++ b/keyboards/handwired/symmetry60/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = atmel-dfu | |||
14 | # Build Options | 14 | # Build Options |
15 | # change yes to no to disable | 15 | # change yes to no to disable |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = yes # Console for debug | 20 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/handwired/wulkan/rules.mk b/keyboards/handwired/wulkan/rules.mk index 96bfe18dd..94086e14f 100644 --- a/keyboards/handwired/wulkan/rules.mk +++ b/keyboards/handwired/wulkan/rules.mk | |||
@@ -6,7 +6,7 @@ BOARD = QMK_PROTON_C | |||
6 | # comment out to disable the options. | 6 | # comment out to disable the options. |
7 | # | 7 | # |
8 | BACKLIGHT_ENABLE = no | 8 | BACKLIGHT_ENABLE = no |
9 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 9 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
10 | MOUSEKEY_ENABLE = yes # Mouse keys | 10 | MOUSEKEY_ENABLE = yes # Mouse keys |
11 | EXTRAKEY_ENABLE = yes # Audio control and System control | 11 | EXTRAKEY_ENABLE = yes # Audio control and System control |
12 | CONSOLE_ENABLE = no # Console for debug | 12 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/hecomi/rules.mk b/keyboards/hecomi/rules.mk index 75686f922..f91432cad 100644 --- a/keyboards/hecomi/rules.mk +++ b/keyboards/hecomi/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = caterina | |||
14 | # Build Options | 14 | # Build Options |
15 | # change yes to no to disable | 15 | # change yes to no to disable |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = yes # Console for debug | 20 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/hhkb/ansi/rules.mk b/keyboards/hhkb/ansi/rules.mk index a367ef48d..3ff7170e0 100644 --- a/keyboards/hhkb/ansi/rules.mk +++ b/keyboards/hhkb/ansi/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = atmel-dfu | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = yes # Console for debug | 20 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/hhkb/jp/rules.mk b/keyboards/hhkb/jp/rules.mk index 774b444c5..f1294ed61 100644 --- a/keyboards/hhkb/jp/rules.mk +++ b/keyboards/hhkb/jp/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = atmel-dfu | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = yes # Console for debug | 20 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/hhkb_lite_2/rules.mk b/keyboards/hhkb_lite_2/rules.mk index dd0271792..aa224ffe4 100644 --- a/keyboards/hhkb_lite_2/rules.mk +++ b/keyboards/hhkb_lite_2/rules.mk | |||
@@ -7,7 +7,7 @@ BOOTLOADER = halfkay | |||
7 | # Build Options | 7 | # Build Options |
8 | # change yes to no to disable | 8 | # change yes to no to disable |
9 | # | 9 | # |
10 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 10 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
11 | MOUSEKEY_ENABLE = yes # Mouse keys | 11 | MOUSEKEY_ENABLE = yes # Mouse keys |
12 | EXTRAKEY_ENABLE = yes # Audio control and System control | 12 | EXTRAKEY_ENABLE = yes # Audio control and System control |
13 | CONSOLE_ENABLE = no # Console for debug | 13 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/hid_liber/keymaps/bakageta/rules.mk b/keyboards/hid_liber/keymaps/bakageta/rules.mk index 0f131bce9..1697e07c5 100755 --- a/keyboards/hid_liber/keymaps/bakageta/rules.mk +++ b/keyboards/hid_liber/keymaps/bakageta/rules.mk | |||
@@ -18,7 +18,7 @@ | |||
18 | # change to "no" to disable the options, or define them in the Makefile in | 18 | # change to "no" to disable the options, or define them in the Makefile in |
19 | # the appropriate keymap folder that will get included automatically | 19 | # the appropriate keymap folder that will get included automatically |
20 | # | 20 | # |
21 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000) | 21 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration(+1000) |
22 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) | 22 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) |
23 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) | 23 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) |
24 | CONSOLE_ENABLE = yes # Console for debug(+400) | 24 | CONSOLE_ENABLE = yes # Console for debug(+400) |
diff --git a/keyboards/hid_liber/rules.mk b/keyboards/hid_liber/rules.mk index 44833d755..ea64be00d 100755 --- a/keyboards/hid_liber/rules.mk +++ b/keyboards/hid_liber/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = atmel-dfu | |||
14 | # Build Options | 14 | # Build Options |
15 | # change yes to no to disable | 15 | # change yes to no to disable |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = yes # Console for debug | 20 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/honeycomb/rules.mk b/keyboards/honeycomb/rules.mk index d6f98125e..a9a01d867 100755 --- a/keyboards/honeycomb/rules.mk +++ b/keyboards/honeycomb/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = caterina | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | #BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | #BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | #MOUSEKEY_ENABLE = yes # Mouse keys | 18 | #MOUSEKEY_ENABLE = yes # Mouse keys |
19 | POINTING_DEVICE_ENABLE = yes # Generic Pointer, not as big as mouse keys hopefully. | 19 | POINTING_DEVICE_ENABLE = yes # Generic Pointer, not as big as mouse keys hopefully. |
20 | EXTRAKEY_ENABLE = yes # Audio control and System control | 20 | EXTRAKEY_ENABLE = yes # Audio control and System control |
diff --git a/keyboards/hotdox/rules.mk b/keyboards/hotdox/rules.mk index 95f6c7ec6..dd175e9f6 100644 --- a/keyboards/hotdox/rules.mk +++ b/keyboards/hotdox/rules.mk | |||
@@ -16,7 +16,7 @@ BOOTLOADER = atmel-dfu | |||
16 | # | 16 | # |
17 | CUSTOM_MATRIX = yes # Custom matrix file for the ErgoDone | 17 | CUSTOM_MATRIX = yes # Custom matrix file for the ErgoDone |
18 | UNICODE_ENABLE = yes # Unicode | 18 | UNICODE_ENABLE = yes # Unicode |
19 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 19 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
20 | MOUSEKEY_ENABLE = yes # Mouse keys | 20 | MOUSEKEY_ENABLE = yes # Mouse keys |
21 | EXTRAKEY_ENABLE = yes # Audio control and System control | 21 | EXTRAKEY_ENABLE = yes # Audio control and System control |
22 | CONSOLE_ENABLE = yes # Console for debug | 22 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/iron180/rules.mk b/keyboards/iron180/rules.mk index 2d2f71e19..a202eca61 100644 --- a/keyboards/iron180/rules.mk +++ b/keyboards/iron180/rules.mk | |||
@@ -4,7 +4,7 @@ MCU = STM32F072 | |||
4 | # Build Options | 4 | # Build Options |
5 | # change yes to no to disable | 5 | # change yes to no to disable |
6 | # | 6 | # |
7 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 7 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
8 | MOUSEKEY_ENABLE = yes # Mouse keys | 8 | MOUSEKEY_ENABLE = yes # Mouse keys |
9 | EXTRAKEY_ENABLE = yes # Audio control and System control | 9 | EXTRAKEY_ENABLE = yes # Audio control and System control |
10 | CONSOLE_ENABLE = yes # Console for debug | 10 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/jd40/rules.mk b/keyboards/jd40/rules.mk index 73336244e..18780b47b 100644 --- a/keyboards/jd40/rules.mk +++ b/keyboards/jd40/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = atmel-dfu | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | # CONSOLE_ENABLE = yes # Console for debug | 20 | # CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/jd45/rules.mk b/keyboards/jd45/rules.mk index cc5af4b7a..82e70975d 100644 --- a/keyboards/jd45/rules.mk +++ b/keyboards/jd45/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = atmel-dfu | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = yes # Console for debug | 20 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/jj40/keymaps/fun40/rules.mk b/keyboards/jj40/keymaps/fun40/rules.mk index 92f168a16..3ec0a7515 100644 --- a/keyboards/jj40/keymaps/fun40/rules.mk +++ b/keyboards/jj40/keymaps/fun40/rules.mk | |||
@@ -1,6 +1,6 @@ | |||
1 | 1 | ||
2 | 2 | ||
3 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000) | 3 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration(+1000) |
4 | MOUSEKEY_ENABLE = no # Mouse keys(+4700) | 4 | MOUSEKEY_ENABLE = no # Mouse keys(+4700) |
5 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) | 5 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) |
6 | CONSOLE_ENABLE = no # Console for debug(+400) | 6 | CONSOLE_ENABLE = no # Console for debug(+400) |
diff --git a/keyboards/jj40/keymaps/waples/rules.mk b/keyboards/jj40/keymaps/waples/rules.mk index 69b7c18d4..4395f7f8f 100644 --- a/keyboards/jj40/keymaps/waples/rules.mk +++ b/keyboards/jj40/keymaps/waples/rules.mk | |||
@@ -1,5 +1,5 @@ | |||
1 | # build options | 1 | # build options |
2 | BOOTMAGIC_ENABLE = yes | 2 | BOOTMAGIC_ENABLE = full |
3 | MOUSEKEY_ENABLE = no | 3 | MOUSEKEY_ENABLE = no |
4 | EXTRAKEY_ENABLE = yes | 4 | EXTRAKEY_ENABLE = yes |
5 | CONSOLE_ENABLE = no | 5 | CONSOLE_ENABLE = no |
diff --git a/keyboards/kbdfans/kbd6x/rules.mk b/keyboards/kbdfans/kbd6x/rules.mk index e95a436c3..7d9f13e31 100644 --- a/keyboards/kbdfans/kbd6x/rules.mk +++ b/keyboards/kbdfans/kbd6x/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = atmel-dfu | |||
14 | # Build Options | 14 | # Build Options |
15 | # change yes to no to disable | 15 | # change yes to no to disable |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = no # Mouse keys | 18 | MOUSEKEY_ENABLE = no # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = yes # Console for debug | 20 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/kbdfans/kbd75/keymaps/tucznak/rules.mk b/keyboards/kbdfans/kbd75/keymaps/tucznak/rules.mk index 7d6400f97..c854fdd2d 100644 --- a/keyboards/kbdfans/kbd75/keymaps/tucznak/rules.mk +++ b/keyboards/kbdfans/kbd75/keymaps/tucznak/rules.mk | |||
@@ -1,7 +1,7 @@ | |||
1 | # Build Options | 1 | # Build Options |
2 | # change yes to no to disable | 2 | # change yes to no to disable |
3 | # | 3 | # |
4 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000) | 4 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration(+1000) |
5 | MOUSEKEY_ENABLE = no # Mouse keys(+4700) | 5 | MOUSEKEY_ENABLE = no # Mouse keys(+4700) |
6 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) | 6 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) |
7 | CONSOLE_ENABLE = no # Console for debug(+400) | 7 | CONSOLE_ENABLE = no # Console for debug(+400) |
diff --git a/keyboards/kbdfans/kbd75/rev1/rules.mk b/keyboards/kbdfans/kbd75/rev1/rules.mk index ae6507a85..054cb687b 100644 --- a/keyboards/kbdfans/kbd75/rev1/rules.mk +++ b/keyboards/kbdfans/kbd75/rev1/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = atmel-dfu | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/kbdfans/kbd75/rev2/rules.mk b/keyboards/kbdfans/kbd75/rev2/rules.mk index ae6507a85..054cb687b 100644 --- a/keyboards/kbdfans/kbd75/rev2/rules.mk +++ b/keyboards/kbdfans/kbd75/rev2/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = atmel-dfu | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/kc60/keymaps/stanleylai/rules.mk b/keyboards/kc60/keymaps/stanleylai/rules.mk index a826c2bf2..b4471d606 100644 --- a/keyboards/kc60/keymaps/stanleylai/rules.mk +++ b/keyboards/kc60/keymaps/stanleylai/rules.mk | |||
@@ -3,7 +3,7 @@ | |||
3 | # Build Options | 3 | # Build Options |
4 | # change yes to no to disable | 4 | # change yes to no to disable |
5 | # | 5 | # |
6 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000) | 6 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration(+1000) |
7 | MOUSEKEY_ENABLE = no # Mouse keys(+4700) | 7 | MOUSEKEY_ENABLE = no # Mouse keys(+4700) |
8 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) | 8 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) |
9 | CONSOLE_ENABLE = no # Console for debug(+400) | 9 | CONSOLE_ENABLE = no # Console for debug(+400) |
diff --git a/keyboards/kc60/keymaps/wigguno/rules.mk b/keyboards/kc60/keymaps/wigguno/rules.mk index db084a76a..d95742d42 100644 --- a/keyboards/kc60/keymaps/wigguno/rules.mk +++ b/keyboards/kc60/keymaps/wigguno/rules.mk | |||
@@ -3,7 +3,7 @@ | |||
3 | # Build Options | 3 | # Build Options |
4 | # change yes to no to disable | 4 | # change yes to no to disable |
5 | # | 5 | # |
6 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000) | 6 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration(+1000) |
7 | MOUSEKEY_ENABLE = no # Mouse keys(+4700) | 7 | MOUSEKEY_ENABLE = no # Mouse keys(+4700) |
8 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) | 8 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) |
9 | CONSOLE_ENABLE = no # Console for debug(+400) | 9 | CONSOLE_ENABLE = no # Console for debug(+400) |
diff --git a/keyboards/keebio/dilly/rules.mk b/keyboards/keebio/dilly/rules.mk index dbb338e3a..dd730c950 100644 --- a/keyboards/keebio/dilly/rules.mk +++ b/keyboards/keebio/dilly/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = caterina | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/keebio/iris/keymaps/vyolle/rules.mk b/keyboards/keebio/iris/keymaps/vyolle/rules.mk index e7cbfb83d..f93940de3 100644 --- a/keyboards/keebio/iris/keymaps/vyolle/rules.mk +++ b/keyboards/keebio/iris/keymaps/vyolle/rules.mk | |||
@@ -4,4 +4,4 @@ STENO_ENABLE = no # Additional protocols for Stenography(+1700), require | |||
4 | AUDIO_ENABLE = no # Audio output on port C6 | 4 | AUDIO_ENABLE = no # Audio output on port C6 |
5 | MIDI_ENABLE = no # MIDI controls | 5 | MIDI_ENABLE = no # MIDI controls |
6 | NKRO_ENABLE = yes | 6 | NKRO_ENABLE = yes |
7 | BOOTMAGIC_ENABLE = yes | 7 | BOOTMAGIC_ENABLE = full |
diff --git a/keyboards/keebio/levinson/keymaps/steno/rules.mk b/keyboards/keebio/levinson/keymaps/steno/rules.mk index 47cd0563d..7693b24b5 100644 --- a/keyboards/keebio/levinson/keymaps/steno/rules.mk +++ b/keyboards/keebio/levinson/keymaps/steno/rules.mk | |||
@@ -4,4 +4,4 @@ STENO_ENABLE = yes # Additional protocols for Stenography, requires VIR | |||
4 | AUDIO_ENABLE = no # Audio output on port C6 | 4 | AUDIO_ENABLE = no # Audio output on port C6 |
5 | MIDI_ENABLE = no # MIDI controls | 5 | MIDI_ENABLE = no # MIDI controls |
6 | NKRO_ENABLE = yes | 6 | NKRO_ENABLE = yes |
7 | BOOTMAGIC_ENABLE = yes | 7 | BOOTMAGIC_ENABLE = full |
diff --git a/keyboards/keebio/nyquist/keymaps/danielhklein/rules.mk b/keyboards/keebio/nyquist/keymaps/danielhklein/rules.mk index 12ad2fec5..93cf3c8ea 100644 --- a/keyboards/keebio/nyquist/keymaps/danielhklein/rules.mk +++ b/keyboards/keebio/nyquist/keymaps/danielhklein/rules.mk | |||
@@ -18,7 +18,7 @@ | |||
18 | # change to "no" to disable the options, or define them in the Makefile in | 18 | # change to "no" to disable the options, or define them in the Makefile in |
19 | # the appropriate keymap folder that will get included automatically | 19 | # the appropriate keymap folder that will get included automatically |
20 | # | 20 | # |
21 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000) | 21 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration(+1000) |
22 | MOUSEKEY_ENABLE = no # Mouse keys(+4700) | 22 | MOUSEKEY_ENABLE = no # Mouse keys(+4700) |
23 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) | 23 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) |
24 | CONSOLE_ENABLE = no # Console for debug(+400) | 24 | CONSOLE_ENABLE = no # Console for debug(+400) |
diff --git a/keyboards/kinesis/nguyenvietyen/rules.mk b/keyboards/kinesis/nguyenvietyen/rules.mk index c2d5f729b..a401973aa 100644 --- a/keyboards/kinesis/nguyenvietyen/rules.mk +++ b/keyboards/kinesis/nguyenvietyen/rules.mk | |||
@@ -7,7 +7,7 @@ BOOTLOADER = caterina | |||
7 | # Build Options | 7 | # Build Options |
8 | # change yes to no to disable | 8 | # change yes to no to disable |
9 | # | 9 | # |
10 | BOOTMAGIC_ENABLE = yes | 10 | BOOTMAGIC_ENABLE = full |
11 | MOUSEKEY_ENABLE = yes | 11 | MOUSEKEY_ENABLE = yes |
12 | EXTRAKEY_ENABLE = yes | 12 | EXTRAKEY_ENABLE = yes |
13 | COMMAND_ENABLE = yes | 13 | COMMAND_ENABLE = yes |
diff --git a/keyboards/kinesis/rules.mk b/keyboards/kinesis/rules.mk index cc0691e98..651751fa6 100644 --- a/keyboards/kinesis/rules.mk +++ b/keyboards/kinesis/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = halfkay | |||
14 | # Build Options | 14 | # Build Options |
15 | # change yes to no to disable | 15 | # change yes to no to disable |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/kingly_keys/ropro/rules.mk b/keyboards/kingly_keys/ropro/rules.mk index d3fad8265..a8cce7780 100644 --- a/keyboards/kingly_keys/ropro/rules.mk +++ b/keyboards/kingly_keys/ropro/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = caterina | |||
14 | # Build Options | 14 | # Build Options |
15 | # change yes to no to disable | 15 | # change yes to no to disable |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/kingly_keys/soap/rules.mk b/keyboards/kingly_keys/soap/rules.mk index 56adb1e55..e6d997bfe 100644 --- a/keyboards/kingly_keys/soap/rules.mk +++ b/keyboards/kingly_keys/soap/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = atmel-dfu | |||
14 | # Build Options | 14 | # Build Options |
15 | # change yes to no to disable | 15 | # change yes to no to disable |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/kmac/rules.mk b/keyboards/kmac/rules.mk index 33e423d3d..2a35f70cd 100644 --- a/keyboards/kmac/rules.mk +++ b/keyboards/kmac/rules.mk | |||
@@ -17,7 +17,7 @@ BOOTLOADER = atmel-dfu | |||
17 | # Build Options | 17 | # Build Options |
18 | # change yes to no to disable | 18 | # change yes to no to disable |
19 | # | 19 | # |
20 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 20 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
21 | MOUSEKEY_ENABLE = yes # Mouse keys | 21 | MOUSEKEY_ENABLE = yes # Mouse keys |
22 | EXTRAKEY_ENABLE = yes # Audio control and System control | 22 | EXTRAKEY_ENABLE = yes # Audio control and System control |
23 | CONSOLE_ENABLE = no # Console for debug | 23 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/kmini/rules.mk b/keyboards/kmini/rules.mk index f40b013f7..1694b9ac6 100755 --- a/keyboards/kmini/rules.mk +++ b/keyboards/kmini/rules.mk | |||
@@ -17,7 +17,7 @@ BOOTLOADER = atmel-dfu | |||
17 | # Build Options | 17 | # Build Options |
18 | # change yes to no to disable | 18 | # change yes to no to disable |
19 | # | 19 | # |
20 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 20 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
21 | MOUSEKEY_ENABLE = yes # Mouse keys | 21 | MOUSEKEY_ENABLE = yes # Mouse keys |
22 | EXTRAKEY_ENABLE = yes # Audio control and System control | 22 | EXTRAKEY_ENABLE = yes # Audio control and System control |
23 | CONSOLE_ENABLE = no # Console for debug | 23 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/kona_classic/keymaps/ansi/rules.mk b/keyboards/kona_classic/keymaps/ansi/rules.mk index e4865902c..fec19c9df 100644 --- a/keyboards/kona_classic/keymaps/ansi/rules.mk +++ b/keyboards/kona_classic/keymaps/ansi/rules.mk | |||
@@ -18,7 +18,7 @@ | |||
18 | # change to "no" to disable the options, or define them in the Makefile in | 18 | # change to "no" to disable the options, or define them in the Makefile in |
19 | # the appropriate keymap folder that will get included automatically | 19 | # the appropriate keymap folder that will get included automatically |
20 | # | 20 | # |
21 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 21 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
22 | MOUSEKEY_ENABLE = yes # Mouse keys | 22 | MOUSEKEY_ENABLE = yes # Mouse keys |
23 | EXTRAKEY_ENABLE = yes # Audio control and System control | 23 | EXTRAKEY_ENABLE = yes # Audio control and System control |
24 | CONSOLE_ENABLE = no # Console for debug | 24 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/kona_classic/keymaps/ansi_arrows/rules.mk b/keyboards/kona_classic/keymaps/ansi_arrows/rules.mk index e4865902c..fec19c9df 100644 --- a/keyboards/kona_classic/keymaps/ansi_arrows/rules.mk +++ b/keyboards/kona_classic/keymaps/ansi_arrows/rules.mk | |||
@@ -18,7 +18,7 @@ | |||
18 | # change to "no" to disable the options, or define them in the Makefile in | 18 | # change to "no" to disable the options, or define them in the Makefile in |
19 | # the appropriate keymap folder that will get included automatically | 19 | # the appropriate keymap folder that will get included automatically |
20 | # | 20 | # |
21 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 21 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
22 | MOUSEKEY_ENABLE = yes # Mouse keys | 22 | MOUSEKEY_ENABLE = yes # Mouse keys |
23 | EXTRAKEY_ENABLE = yes # Audio control and System control | 23 | EXTRAKEY_ENABLE = yes # Audio control and System control |
24 | CONSOLE_ENABLE = no # Console for debug | 24 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/kona_classic/keymaps/ansi_arrows_lcap/rules.mk b/keyboards/kona_classic/keymaps/ansi_arrows_lcap/rules.mk index e4865902c..fec19c9df 100644 --- a/keyboards/kona_classic/keymaps/ansi_arrows_lcap/rules.mk +++ b/keyboards/kona_classic/keymaps/ansi_arrows_lcap/rules.mk | |||
@@ -18,7 +18,7 @@ | |||
18 | # change to "no" to disable the options, or define them in the Makefile in | 18 | # change to "no" to disable the options, or define them in the Makefile in |
19 | # the appropriate keymap folder that will get included automatically | 19 | # the appropriate keymap folder that will get included automatically |
20 | # | 20 | # |
21 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 21 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
22 | MOUSEKEY_ENABLE = yes # Mouse keys | 22 | MOUSEKEY_ENABLE = yes # Mouse keys |
23 | EXTRAKEY_ENABLE = yes # Audio control and System control | 23 | EXTRAKEY_ENABLE = yes # Audio control and System control |
24 | CONSOLE_ENABLE = no # Console for debug | 24 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/kona_classic/keymaps/ansi_split/rules.mk b/keyboards/kona_classic/keymaps/ansi_split/rules.mk index e4865902c..fec19c9df 100644 --- a/keyboards/kona_classic/keymaps/ansi_split/rules.mk +++ b/keyboards/kona_classic/keymaps/ansi_split/rules.mk | |||
@@ -18,7 +18,7 @@ | |||
18 | # change to "no" to disable the options, or define them in the Makefile in | 18 | # change to "no" to disable the options, or define them in the Makefile in |
19 | # the appropriate keymap folder that will get included automatically | 19 | # the appropriate keymap folder that will get included automatically |
20 | # | 20 | # |
21 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 21 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
22 | MOUSEKEY_ENABLE = yes # Mouse keys | 22 | MOUSEKEY_ENABLE = yes # Mouse keys |
23 | EXTRAKEY_ENABLE = yes # Audio control and System control | 23 | EXTRAKEY_ENABLE = yes # Audio control and System control |
24 | CONSOLE_ENABLE = no # Console for debug | 24 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/kona_classic/keymaps/ansi_split_arrows/rules.mk b/keyboards/kona_classic/keymaps/ansi_split_arrows/rules.mk index e4865902c..fec19c9df 100644 --- a/keyboards/kona_classic/keymaps/ansi_split_arrows/rules.mk +++ b/keyboards/kona_classic/keymaps/ansi_split_arrows/rules.mk | |||
@@ -18,7 +18,7 @@ | |||
18 | # change to "no" to disable the options, or define them in the Makefile in | 18 | # change to "no" to disable the options, or define them in the Makefile in |
19 | # the appropriate keymap folder that will get included automatically | 19 | # the appropriate keymap folder that will get included automatically |
20 | # | 20 | # |
21 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 21 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
22 | MOUSEKEY_ENABLE = yes # Mouse keys | 22 | MOUSEKEY_ENABLE = yes # Mouse keys |
23 | EXTRAKEY_ENABLE = yes # Audio control and System control | 23 | EXTRAKEY_ENABLE = yes # Audio control and System control |
24 | CONSOLE_ENABLE = no # Console for debug | 24 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/kona_classic/keymaps/default/rules.mk b/keyboards/kona_classic/keymaps/default/rules.mk index e4865902c..fec19c9df 100644 --- a/keyboards/kona_classic/keymaps/default/rules.mk +++ b/keyboards/kona_classic/keymaps/default/rules.mk | |||
@@ -18,7 +18,7 @@ | |||
18 | # change to "no" to disable the options, or define them in the Makefile in | 18 | # change to "no" to disable the options, or define them in the Makefile in |
19 | # the appropriate keymap folder that will get included automatically | 19 | # the appropriate keymap folder that will get included automatically |
20 | # | 20 | # |
21 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 21 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
22 | MOUSEKEY_ENABLE = yes # Mouse keys | 22 | MOUSEKEY_ENABLE = yes # Mouse keys |
23 | EXTRAKEY_ENABLE = yes # Audio control and System control | 23 | EXTRAKEY_ENABLE = yes # Audio control and System control |
24 | CONSOLE_ENABLE = no # Console for debug | 24 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/kona_classic/keymaps/iso/rules.mk b/keyboards/kona_classic/keymaps/iso/rules.mk index e4865902c..fec19c9df 100644 --- a/keyboards/kona_classic/keymaps/iso/rules.mk +++ b/keyboards/kona_classic/keymaps/iso/rules.mk | |||
@@ -18,7 +18,7 @@ | |||
18 | # change to "no" to disable the options, or define them in the Makefile in | 18 | # change to "no" to disable the options, or define them in the Makefile in |
19 | # the appropriate keymap folder that will get included automatically | 19 | # the appropriate keymap folder that will get included automatically |
20 | # | 20 | # |
21 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 21 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
22 | MOUSEKEY_ENABLE = yes # Mouse keys | 22 | MOUSEKEY_ENABLE = yes # Mouse keys |
23 | EXTRAKEY_ENABLE = yes # Audio control and System control | 23 | EXTRAKEY_ENABLE = yes # Audio control and System control |
24 | CONSOLE_ENABLE = no # Console for debug | 24 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/kona_classic/keymaps/iso_arrows/rules.mk b/keyboards/kona_classic/keymaps/iso_arrows/rules.mk index e4865902c..fec19c9df 100644 --- a/keyboards/kona_classic/keymaps/iso_arrows/rules.mk +++ b/keyboards/kona_classic/keymaps/iso_arrows/rules.mk | |||
@@ -18,7 +18,7 @@ | |||
18 | # change to "no" to disable the options, or define them in the Makefile in | 18 | # change to "no" to disable the options, or define them in the Makefile in |
19 | # the appropriate keymap folder that will get included automatically | 19 | # the appropriate keymap folder that will get included automatically |
20 | # | 20 | # |
21 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 21 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
22 | MOUSEKEY_ENABLE = yes # Mouse keys | 22 | MOUSEKEY_ENABLE = yes # Mouse keys |
23 | EXTRAKEY_ENABLE = yes # Audio control and System control | 23 | EXTRAKEY_ENABLE = yes # Audio control and System control |
24 | CONSOLE_ENABLE = no # Console for debug | 24 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/kona_classic/keymaps/iso_split/rules.mk b/keyboards/kona_classic/keymaps/iso_split/rules.mk index e4865902c..fec19c9df 100644 --- a/keyboards/kona_classic/keymaps/iso_split/rules.mk +++ b/keyboards/kona_classic/keymaps/iso_split/rules.mk | |||
@@ -18,7 +18,7 @@ | |||
18 | # change to "no" to disable the options, or define them in the Makefile in | 18 | # change to "no" to disable the options, or define them in the Makefile in |
19 | # the appropriate keymap folder that will get included automatically | 19 | # the appropriate keymap folder that will get included automatically |
20 | # | 20 | # |
21 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 21 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
22 | MOUSEKEY_ENABLE = yes # Mouse keys | 22 | MOUSEKEY_ENABLE = yes # Mouse keys |
23 | EXTRAKEY_ENABLE = yes # Audio control and System control | 23 | EXTRAKEY_ENABLE = yes # Audio control and System control |
24 | CONSOLE_ENABLE = no # Console for debug | 24 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/kona_classic/keymaps/iso_split_arrows/rules.mk b/keyboards/kona_classic/keymaps/iso_split_arrows/rules.mk index e4865902c..fec19c9df 100644 --- a/keyboards/kona_classic/keymaps/iso_split_arrows/rules.mk +++ b/keyboards/kona_classic/keymaps/iso_split_arrows/rules.mk | |||
@@ -18,7 +18,7 @@ | |||
18 | # change to "no" to disable the options, or define them in the Makefile in | 18 | # change to "no" to disable the options, or define them in the Makefile in |
19 | # the appropriate keymap folder that will get included automatically | 19 | # the appropriate keymap folder that will get included automatically |
20 | # | 20 | # |
21 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 21 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
22 | MOUSEKEY_ENABLE = yes # Mouse keys | 22 | MOUSEKEY_ENABLE = yes # Mouse keys |
23 | EXTRAKEY_ENABLE = yes # Audio control and System control | 23 | EXTRAKEY_ENABLE = yes # Audio control and System control |
24 | CONSOLE_ENABLE = no # Console for debug | 24 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/leeku/finger65/rules.mk b/keyboards/leeku/finger65/rules.mk index 16ce59ecb..1ebd43b08 100644 --- a/keyboards/leeku/finger65/rules.mk +++ b/keyboards/leeku/finger65/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = bootloadHID | |||
14 | # Build Options | 14 | # Build Options |
15 | # change yes to no to disable | 15 | # change yes to no to disable |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = no # Mouse keys | 18 | MOUSEKEY_ENABLE = no # Mouse keys |
19 | EXTRAKEY_ENABLE = no # Audio control and System control | 19 | EXTRAKEY_ENABLE = no # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/lets_split/keymaps/pyrol/rules.mk b/keyboards/lets_split/keymaps/pyrol/rules.mk index 6e1be51be..8d49979f9 100644 --- a/keyboards/lets_split/keymaps/pyrol/rules.mk +++ b/keyboards/lets_split/keymaps/pyrol/rules.mk | |||
@@ -1 +1 @@ | |||
BOOTMAGIC_ENABLE = yes | BOOTMAGIC_ENABLE = full | ||
diff --git a/keyboards/masterworks/classy_tkl/rev_a/rules.mk b/keyboards/masterworks/classy_tkl/rev_a/rules.mk index 34bcd87a4..68d6bc50c 100644 --- a/keyboards/masterworks/classy_tkl/rev_a/rules.mk +++ b/keyboards/masterworks/classy_tkl/rev_a/rules.mk | |||
@@ -8,7 +8,7 @@ BOOTLOADER = atmel-dfu | |||
8 | # Build Options | 8 | # Build Options |
9 | # change yes to no to disable | 9 | # change yes to no to disable |
10 | # | 10 | # |
11 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 11 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
12 | MOUSEKEY_ENABLE = yes # Mouse keys | 12 | MOUSEKEY_ENABLE = yes # Mouse keys |
13 | EXTRAKEY_ENABLE = yes # Audio control and System control | 13 | EXTRAKEY_ENABLE = yes # Audio control and System control |
14 | CONSOLE_ENABLE = yes # Console for debug | 14 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/matrix/m12og/rules.mk b/keyboards/matrix/m12og/rules.mk index 74432d49c..58ec898a6 100644 --- a/keyboards/matrix/m12og/rules.mk +++ b/keyboards/matrix/m12og/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = atmel-dfu | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = no # Mouse keys | 18 | MOUSEKEY_ENABLE = no # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/matrix/m20add/rules.mk b/keyboards/matrix/m20add/rules.mk index 93ddf05e9..d5516964d 100644 --- a/keyboards/matrix/m20add/rules.mk +++ b/keyboards/matrix/m20add/rules.mk | |||
@@ -13,7 +13,7 @@ BOARD = ST_NUCLEO64_F411RE | |||
13 | # Build Options | 13 | # Build Options |
14 | # comment out to disable the options. | 14 | # comment out to disable the options. |
15 | # | 15 | # |
16 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 16 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
17 | MOUSEKEY_ENABLE = yes # Mouse keys | 17 | MOUSEKEY_ENABLE = yes # Mouse keys |
18 | EXTRAKEY_ENABLE = yes # Audio control and System control | 18 | EXTRAKEY_ENABLE = yes # Audio control and System control |
19 | CONSOLE_ENABLE = no # Console for debug | 19 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/matrix/noah/rules.mk b/keyboards/matrix/noah/rules.mk index 5566bd26a..25106a9b5 100644 --- a/keyboards/matrix/noah/rules.mk +++ b/keyboards/matrix/noah/rules.mk | |||
@@ -13,7 +13,7 @@ BOARD = ST_NUCLEO64_F411RE | |||
13 | # Build Options | 13 | # Build Options |
14 | # comment out to disable the options. | 14 | # comment out to disable the options. |
15 | # | 15 | # |
16 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 16 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
17 | MOUSEKEY_ENABLE = yes # Mouse keys | 17 | MOUSEKEY_ENABLE = yes # Mouse keys |
18 | EXTRAKEY_ENABLE = yes # Audio control and System control | 18 | EXTRAKEY_ENABLE = yes # Audio control and System control |
19 | CONSOLE_ENABLE = no # Console for debug | 19 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/mechmini/v1/rules.mk b/keyboards/mechmini/v1/rules.mk index 93646c8e1..c1582d9c6 100644 --- a/keyboards/mechmini/v1/rules.mk +++ b/keyboards/mechmini/v1/rules.mk | |||
@@ -12,7 +12,7 @@ MCU = atmega32a | |||
12 | BOOTLOADER = atmel-dfu | 12 | BOOTLOADER = atmel-dfu |
13 | 13 | ||
14 | # build options | 14 | # build options |
15 | BOOTMAGIC_ENABLE = yes | 15 | BOOTMAGIC_ENABLE = full |
16 | MOUSEKEY_ENABLE = yes | 16 | MOUSEKEY_ENABLE = yes |
17 | EXTRAKEY_ENABLE = yes | 17 | EXTRAKEY_ENABLE = yes |
18 | CONSOLE_ENABLE = no | 18 | CONSOLE_ENABLE = no |
diff --git a/keyboards/mechmini/v2/keymaps/lbibass_625_space/rules.mk b/keyboards/mechmini/v2/keymaps/lbibass_625_space/rules.mk index 7bc50168d..49a55db51 100755 --- a/keyboards/mechmini/v2/keymaps/lbibass_625_space/rules.mk +++ b/keyboards/mechmini/v2/keymaps/lbibass_625_space/rules.mk | |||
@@ -1,4 +1,4 @@ | |||
1 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000) | 1 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration(+1000) |
2 | MOUSEKEY_ENABLE = no # Mouse keys(+4700) | 2 | MOUSEKEY_ENABLE = no # Mouse keys(+4700) |
3 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) | 3 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) |
4 | CONSOLE_ENABLE = yes # Console for debug(+400) | 4 | CONSOLE_ENABLE = yes # Console for debug(+400) |
diff --git a/keyboards/mechmini/v2/keymaps/lbibass_split_space/rules.mk b/keyboards/mechmini/v2/keymaps/lbibass_split_space/rules.mk index fd3621e84..9ea2eeee8 100755 --- a/keyboards/mechmini/v2/keymaps/lbibass_split_space/rules.mk +++ b/keyboards/mechmini/v2/keymaps/lbibass_split_space/rules.mk | |||
@@ -1,4 +1,4 @@ | |||
1 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000) | 1 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration(+1000) |
2 | MOUSEKEY_ENABLE = no # Mouse keys(+4700) | 2 | MOUSEKEY_ENABLE = no # Mouse keys(+4700) |
3 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) | 3 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) |
4 | CONSOLE_ENABLE = yes # Console for debug(+400) | 4 | CONSOLE_ENABLE = yes # Console for debug(+400) |
diff --git a/keyboards/mechmini/v2/keymaps/wsturgiss/rules.mk b/keyboards/mechmini/v2/keymaps/wsturgiss/rules.mk index a2c78f8db..1484e2dd0 100755 --- a/keyboards/mechmini/v2/keymaps/wsturgiss/rules.mk +++ b/keyboards/mechmini/v2/keymaps/wsturgiss/rules.mk | |||
@@ -1,4 +1,4 @@ | |||
1 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000) | 1 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration(+1000) |
2 | CONSOLE_ENABLE = no # Console for debug(+400) | 2 | CONSOLE_ENABLE = no # Console for debug(+400) |
3 | COMMAND_ENABLE = no # Commands for debug and configuration | 3 | COMMAND_ENABLE = no # Commands for debug and configuration |
4 | SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend | 4 | SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend |
diff --git a/keyboards/mechmini/v2/rules.mk b/keyboards/mechmini/v2/rules.mk index a82774319..d585958de 100755 --- a/keyboards/mechmini/v2/rules.mk +++ b/keyboards/mechmini/v2/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = atmel-dfu | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = no # Mouse keys | 18 | MOUSEKEY_ENABLE = no # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/mehkee96/rules.mk b/keyboards/mehkee96/rules.mk index 488c63fce..91c9dc0df 100644 --- a/keyboards/mehkee96/rules.mk +++ b/keyboards/mehkee96/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = bootloadHID | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/mitosis/rules.mk b/keyboards/mitosis/rules.mk index 4cb6d8c9b..5ca62fc8b 100644 --- a/keyboards/mitosis/rules.mk +++ b/keyboards/mitosis/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = caterina | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | #BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | #BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = yes # Console for debug | 20 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/mt40/rules.mk b/keyboards/mt40/rules.mk index 2b8e18a95..3f4847400 100644 --- a/keyboards/mt40/rules.mk +++ b/keyboards/mt40/rules.mk | |||
@@ -12,7 +12,7 @@ MCU = atmega32a | |||
12 | BOOTLOADER = bootloadHID | 12 | BOOTLOADER = bootloadHID |
13 | 13 | ||
14 | # build options | 14 | # build options |
15 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 15 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
16 | MOUSEKEY_ENABLE = no # Mouse keys | 16 | MOUSEKEY_ENABLE = no # Mouse keys |
17 | EXTRAKEY_ENABLE = yes # Audio control and System control | 17 | EXTRAKEY_ENABLE = yes # Audio control and System control |
18 | CONSOLE_ENABLE = no # Console for debug | 18 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/nemui/rules.mk b/keyboards/nemui/rules.mk index 109141ebb..011a8a89b 100644 --- a/keyboards/nemui/rules.mk +++ b/keyboards/nemui/rules.mk | |||
@@ -4,7 +4,7 @@ MCU = STM32F072 | |||
4 | # Build Options | 4 | # Build Options |
5 | # change yes to no to disable | 5 | # change yes to no to disable |
6 | # | 6 | # |
7 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 7 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
8 | MOUSEKEY_ENABLE = yes # Mouse keys | 8 | MOUSEKEY_ENABLE = yes # Mouse keys |
9 | EXTRAKEY_ENABLE = yes # Audio control and System control | 9 | EXTRAKEY_ENABLE = yes # Audio control and System control |
10 | CONSOLE_ENABLE = yes # Console for debug | 10 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/nightly_boards/ph_arisu/rules.mk b/keyboards/nightly_boards/ph_arisu/rules.mk index e70a8a7d6..bde08efba 100644 --- a/keyboards/nightly_boards/ph_arisu/rules.mk +++ b/keyboards/nightly_boards/ph_arisu/rules.mk | |||
@@ -7,7 +7,7 @@ BOOTLOADER = caterina | |||
7 | # Build Options | 7 | # Build Options |
8 | # change yes to no to disable | 8 | # change yes to no to disable |
9 | # | 9 | # |
10 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 10 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
11 | MOUSEKEY_ENABLE = yes # Mouse keys | 11 | MOUSEKEY_ENABLE = yes # Mouse keys |
12 | EXTRAKEY_ENABLE = yes # Audio control and System control | 12 | EXTRAKEY_ENABLE = yes # Audio control and System control |
13 | CONSOLE_ENABLE = no # Console for debug | 13 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/nopunin10did/railroad/rev0/rules.mk b/keyboards/nopunin10did/railroad/rev0/rules.mk index a7facc532..54bb17ad2 100644 --- a/keyboards/nopunin10did/railroad/rev0/rules.mk +++ b/keyboards/nopunin10did/railroad/rev0/rules.mk | |||
@@ -7,7 +7,7 @@ BOOTLOADER = atmel-dfu | |||
7 | # Build Options | 7 | # Build Options |
8 | # change yes to no to disable | 8 | # change yes to no to disable |
9 | # | 9 | # |
10 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 10 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
11 | MOUSEKEY_ENABLE = yes # Mouse keys | 11 | MOUSEKEY_ENABLE = yes # Mouse keys |
12 | EXTRAKEY_ENABLE = yes # Audio control and System control | 12 | EXTRAKEY_ENABLE = yes # Audio control and System control |
13 | CONSOLE_ENABLE = no # Console for debug | 13 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/ok60/rules.mk b/keyboards/ok60/rules.mk index 064683816..f2801c945 100644 --- a/keyboards/ok60/rules.mk +++ b/keyboards/ok60/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = atmel-dfu | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | # CONSOLE_ENABLE = yes # Console for debug | 20 | # CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/omnikey_bh/rules.mk b/keyboards/omnikey_bh/rules.mk index 739bea393..1843f1ba6 100644 --- a/keyboards/omnikey_bh/rules.mk +++ b/keyboards/omnikey_bh/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = halfkay | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/orange75/rules.mk b/keyboards/orange75/rules.mk index ce242bb2a..08a8fc02e 100644 --- a/keyboards/orange75/rules.mk +++ b/keyboards/orange75/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = atmel-dfu | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/org60/rules.mk b/keyboards/org60/rules.mk index a57d68acc..f115d70ba 100644 --- a/keyboards/org60/rules.mk +++ b/keyboards/org60/rules.mk | |||
@@ -15,7 +15,7 @@ BOOTLOADER = atmel-dfu | |||
15 | AUDIO_ENABLE = no # Audio output on port C6 | 15 | AUDIO_ENABLE = no # Audio output on port C6 |
16 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 16 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
17 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 17 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
18 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 18 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
19 | COMMAND_ENABLE = no # Commands for debug and configuration | 19 | COMMAND_ENABLE = no # Commands for debug and configuration |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
21 | EXTRAKEY_ENABLE = yes # Audio control and System control | 21 | EXTRAKEY_ENABLE = yes # Audio control and System control |
diff --git a/keyboards/paladin64/rules.mk b/keyboards/paladin64/rules.mk index 739e00613..a4fb2cf3a 100755 --- a/keyboards/paladin64/rules.mk +++ b/keyboards/paladin64/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = atmel-dfu | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = yes # Console for debug | 20 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/pearl/keymaps/cijanzen/rules.mk b/keyboards/pearl/keymaps/cijanzen/rules.mk index 863b9419a..90be4603a 100644 --- a/keyboards/pearl/keymaps/cijanzen/rules.mk +++ b/keyboards/pearl/keymaps/cijanzen/rules.mk | |||
@@ -1,5 +1,5 @@ | |||
1 | # build options | 1 | # build options |
2 | BOOTMAGIC_ENABLE = yes | 2 | BOOTMAGIC_ENABLE = full |
3 | MOUSEKEY_ENABLE = no | 3 | MOUSEKEY_ENABLE = no |
4 | EXTRAKEY_ENABLE = yes | 4 | EXTRAKEY_ENABLE = yes |
5 | CONSOLE_ENABLE = no | 5 | CONSOLE_ENABLE = no |
diff --git a/keyboards/peiorisboards/ixora/rules.mk b/keyboards/peiorisboards/ixora/rules.mk index 1d93c6a30..5451bf95e 100644 --- a/keyboards/peiorisboards/ixora/rules.mk +++ b/keyboards/peiorisboards/ixora/rules.mk | |||
@@ -5,7 +5,7 @@ MCU = STM32F042 | |||
5 | # comment out to disable the options. | 5 | # comment out to disable the options. |
6 | # | 6 | # |
7 | BACKLIGHT_ENABLE = no | 7 | BACKLIGHT_ENABLE = no |
8 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 8 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
9 | MOUSEKEY_ENABLE = yes # Mouse keys | 9 | MOUSEKEY_ENABLE = yes # Mouse keys |
10 | EXTRAKEY_ENABLE = yes # Audio control and System control | 10 | EXTRAKEY_ENABLE = yes # Audio control and System control |
11 | CONSOLE_ENABLE = no # Console for debug | 11 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/planck/ez/rules.mk b/keyboards/planck/ez/rules.mk index 71f0a5fd1..acf3455c9 100644 --- a/keyboards/planck/ez/rules.mk +++ b/keyboards/planck/ez/rules.mk | |||
@@ -6,7 +6,7 @@ BOARD = QMK_PROTON_C | |||
6 | # change to "no" to disable the options, or define them in the Makefile in | 6 | # change to "no" to disable the options, or define them in the Makefile in |
7 | # the appropriate keymap folder that will get included automatically | 7 | # the appropriate keymap folder that will get included automatically |
8 | # | 8 | # |
9 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 9 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
10 | MOUSEKEY_ENABLE = yes # Mouse keys | 10 | MOUSEKEY_ENABLE = yes # Mouse keys |
11 | EXTRAKEY_ENABLE = yes # Audio control and System control | 11 | EXTRAKEY_ENABLE = yes # Audio control and System control |
12 | CONSOLE_ENABLE = yes # Console for debug | 12 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/planck/keymaps/danielhklein/rules.mk b/keyboards/planck/keymaps/danielhklein/rules.mk index 72386fae7..4660d443d 100644 --- a/keyboards/planck/keymaps/danielhklein/rules.mk +++ b/keyboards/planck/keymaps/danielhklein/rules.mk | |||
@@ -1,4 +1,4 @@ | |||
1 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000) | 1 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration(+1000) |
2 | MOUSEKEY_ENABLE = no # Mouse keys(+4700) | 2 | MOUSEKEY_ENABLE = no # Mouse keys(+4700) |
3 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) | 3 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) |
4 | CONSOLE_ENABLE = no # Console for debug(+400) | 4 | CONSOLE_ENABLE = no # Console for debug(+400) |
diff --git a/keyboards/planck/keymaps/vifon/rules.mk b/keyboards/planck/keymaps/vifon/rules.mk index 527e63d38..3f9b4544e 100644 --- a/keyboards/planck/keymaps/vifon/rules.mk +++ b/keyboards/planck/keymaps/vifon/rules.mk | |||
@@ -4,7 +4,7 @@ | |||
4 | # change to "no" to disable the options, or define them in the Makefile in | 4 | # change to "no" to disable the options, or define them in the Makefile in |
5 | # the appropriate keymap folder that will get included automatically | 5 | # the appropriate keymap folder that will get included automatically |
6 | # | 6 | # |
7 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000) | 7 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration(+1000) |
8 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) | 8 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) |
9 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) | 9 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) |
10 | CONSOLE_ENABLE = no # Console for debug(+400) | 10 | CONSOLE_ENABLE = no # Console for debug(+400) |
diff --git a/keyboards/planck/rev6/rules.mk b/keyboards/planck/rev6/rules.mk index c3fcf3dbd..e0f9ff0d0 100644 --- a/keyboards/planck/rev6/rules.mk +++ b/keyboards/planck/rev6/rules.mk | |||
@@ -6,7 +6,7 @@ BOARD = QMK_PROTON_C | |||
6 | # change to "no" to disable the options, or define them in the Makefile in | 6 | # change to "no" to disable the options, or define them in the Makefile in |
7 | # the appropriate keymap folder that will get included automatically | 7 | # the appropriate keymap folder that will get included automatically |
8 | # | 8 | # |
9 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 9 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
10 | MOUSEKEY_ENABLE = yes # Mouse keys | 10 | MOUSEKEY_ENABLE = yes # Mouse keys |
11 | EXTRAKEY_ENABLE = yes # Audio control and System control | 11 | EXTRAKEY_ENABLE = yes # Audio control and System control |
12 | CONSOLE_ENABLE = yes # Console for debug | 12 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/playkbtw/pk60/rules.mk b/keyboards/playkbtw/pk60/rules.mk index 23b186842..948e212e6 100644 --- a/keyboards/playkbtw/pk60/rules.mk +++ b/keyboards/playkbtw/pk60/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = atmel-dfu | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/preonic/keymaps/dlaroe/rules.mk b/keyboards/preonic/keymaps/dlaroe/rules.mk index 68f78de6e..2b7cff4db 100644 --- a/keyboards/preonic/keymaps/dlaroe/rules.mk +++ b/keyboards/preonic/keymaps/dlaroe/rules.mk | |||
@@ -4,7 +4,7 @@ | |||
4 | # change to "no" to disable the options, or define them in the Makefile in | 4 | # change to "no" to disable the options, or define them in the Makefile in |
5 | # the appropriate keymap folder that will get included automatically | 5 | # the appropriate keymap folder that will get included automatically |
6 | # | 6 | # |
7 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000) | 7 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration(+1000) |
8 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) | 8 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) |
9 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) | 9 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) |
10 | CONSOLE_ENABLE = no # Console for debug(+400) | 10 | CONSOLE_ENABLE = no # Console for debug(+400) |
diff --git a/keyboards/preonic/rev3/rules.mk b/keyboards/preonic/rev3/rules.mk index 249d13705..d600be4a4 100644 --- a/keyboards/preonic/rev3/rules.mk +++ b/keyboards/preonic/rev3/rules.mk | |||
@@ -6,7 +6,7 @@ BOARD = QMK_PROTON_C | |||
6 | # change to "no" to disable the options, or define them in the Makefile in | 6 | # change to "no" to disable the options, or define them in the Makefile in |
7 | # the appropriate keymap folder that will get included automatically | 7 | # the appropriate keymap folder that will get included automatically |
8 | # | 8 | # |
9 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 9 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
10 | MOUSEKEY_ENABLE = yes # Mouse keys | 10 | MOUSEKEY_ENABLE = yes # Mouse keys |
11 | EXTRAKEY_ENABLE = yes # Audio control and System control | 11 | EXTRAKEY_ENABLE = yes # Audio control and System control |
12 | CONSOLE_ENABLE = yes # Console for debug | 12 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/primekb/prime_e/rules.mk b/keyboards/primekb/prime_e/rules.mk index e9045dba9..f5ea0075c 100644 --- a/keyboards/primekb/prime_e/rules.mk +++ b/keyboards/primekb/prime_e/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = atmel-dfu | |||
14 | # Build Options | 14 | # Build Options |
15 | # change yes to no to disable | 15 | # change yes to no to disable |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = no # Mouse keys | 18 | MOUSEKEY_ENABLE = no # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/primekb/prime_r/rules.mk b/keyboards/primekb/prime_r/rules.mk index 6f7dd4705..101e16752 100644 --- a/keyboards/primekb/prime_r/rules.mk +++ b/keyboards/primekb/prime_r/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = atmel-dfu | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/projectkb/signature87/rules.mk b/keyboards/projectkb/signature87/rules.mk index caad4c83c..a307166cd 100644 --- a/keyboards/projectkb/signature87/rules.mk +++ b/keyboards/projectkb/signature87/rules.mk | |||
@@ -4,7 +4,7 @@ MCU = STM32F072 | |||
4 | # Build Options | 4 | # Build Options |
5 | # comment out to disable the options. | 5 | # comment out to disable the options. |
6 | # | 6 | # |
7 | #BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 7 | #BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
8 | MOUSEKEY_ENABLE = yes # Mouse keys | 8 | MOUSEKEY_ENABLE = yes # Mouse keys |
9 | EXTRAKEY_ENABLE = yes # Audio control and System control | 9 | EXTRAKEY_ENABLE = yes # Audio control and System control |
10 | CONSOLE_ENABLE = yes # Console for debug | 10 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/rainkeeb/rules.mk b/keyboards/rainkeeb/rules.mk index aa9aab9b7..0c7dd09c2 100644 --- a/keyboards/rainkeeb/rules.mk +++ b/keyboards/rainkeeb/rules.mk | |||
@@ -7,7 +7,7 @@ BOOTLOADER = caterina | |||
7 | # Build Options | 7 | # Build Options |
8 | # comment out to disable the options. | 8 | # comment out to disable the options. |
9 | # | 9 | # |
10 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 10 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
11 | MOUSEKEY_ENABLE = yes # Mouse keys | 11 | MOUSEKEY_ENABLE = yes # Mouse keys |
12 | EXTRAKEY_ENABLE = yes # Audio control and System control | 12 | EXTRAKEY_ENABLE = yes # Audio control and System control |
13 | CONSOLE_ENABLE = no # Console for debug | 13 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/ramonimbao/wete/rules.mk b/keyboards/ramonimbao/wete/rules.mk index 81c717c57..039cc87a2 100644 --- a/keyboards/ramonimbao/wete/rules.mk +++ b/keyboards/ramonimbao/wete/rules.mk | |||
@@ -5,7 +5,7 @@ MCU = STM32F072 | |||
5 | # comment out to disable the options. | 5 | # comment out to disable the options. |
6 | # | 6 | # |
7 | 7 | ||
8 | #BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 8 | #BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
9 | MOUSEKEY_ENABLE = yes # Mouse keys | 9 | MOUSEKEY_ENABLE = yes # Mouse keys |
10 | EXTRAKEY_ENABLE = yes # Audio control and System control | 10 | EXTRAKEY_ENABLE = yes # Audio control and System control |
11 | CONSOLE_ENABLE = yes # Console for debug | 11 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/redox_w/rules.mk b/keyboards/redox_w/rules.mk index 01d5c3c70..b7084b4a1 100644 --- a/keyboards/redox_w/rules.mk +++ b/keyboards/redox_w/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = caterina | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | #BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | #BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = yes # Console for debug | 20 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/reversestudio/decadepad/rules.mk b/keyboards/reversestudio/decadepad/rules.mk index 65dbf4901..6011be9e8 100644 --- a/keyboards/reversestudio/decadepad/rules.mk +++ b/keyboards/reversestudio/decadepad/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = atmel-dfu | |||
14 | # Build Options | 14 | # Build Options |
15 | # change yes to no to disable | 15 | # change yes to no to disable |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = no # Mouse keys | 18 | MOUSEKEY_ENABLE = no # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = yes # Console for debug | 20 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/rotr/rules.mk b/keyboards/rotr/rules.mk index 38e08de7a..6f93f044e 100644 --- a/keyboards/rotr/rules.mk +++ b/keyboards/rotr/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = caterina | |||
14 | # Build Options | 14 | # Build Options |
15 | # change yes to no to disable | 15 | # change yes to no to disable |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/sam/sg81m/rules.mk b/keyboards/sam/sg81m/rules.mk index 9b9aa5d96..b7b60cb1f 100644 --- a/keyboards/sam/sg81m/rules.mk +++ b/keyboards/sam/sg81m/rules.mk | |||
@@ -7,7 +7,7 @@ BOOTLOADER = atmel-dfu | |||
7 | # Build Options | 7 | # Build Options |
8 | # change yes to no to disable | 8 | # change yes to no to disable |
9 | # | 9 | # |
10 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 10 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
11 | MOUSEKEY_ENABLE = yes # Mouse keys | 11 | MOUSEKEY_ENABLE = yes # Mouse keys |
12 | EXTRAKEY_ENABLE = yes # Audio control and System control | 12 | EXTRAKEY_ENABLE = yes # Audio control and System control |
13 | CONSOLE_ENABLE = no # Console for debug | 13 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/sck/neiso/rules.mk b/keyboards/sck/neiso/rules.mk index 6d27e3032..8b5cc72ff 100644 --- a/keyboards/sck/neiso/rules.mk +++ b/keyboards/sck/neiso/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = caterina | |||
14 | # Build Options | 14 | # Build Options |
15 | # change yes to no to disable | 15 | # change yes to no to disable |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = no # Mouse keys | 18 | MOUSEKEY_ENABLE = no # Mouse keys |
19 | EXTRAKEY_ENABLE = no # Audio control and System control | 19 | EXTRAKEY_ENABLE = no # Audio control and System control |
20 | CONSOLE_ENABLE = yes # Console for debug | 20 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/sentraq/s60_x/keymaps/ansi_qwertz/rules.mk b/keyboards/sentraq/s60_x/keymaps/ansi_qwertz/rules.mk index 1bcd7ea7f..95d084dff 100644 --- a/keyboards/sentraq/s60_x/keymaps/ansi_qwertz/rules.mk +++ b/keyboards/sentraq/s60_x/keymaps/ansi_qwertz/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 = yes # Virtual DIP switch configuration(+1000) | 5 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration(+1000) |
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 = yes # Console for debug(+400) | 8 | CONSOLE_ENABLE = yes # Console for debug(+400) |
diff --git a/keyboards/sentraq/s65_plus/rules.mk b/keyboards/sentraq/s65_plus/rules.mk index 8424d60e4..c1fb6cfd2 100644 --- a/keyboards/sentraq/s65_plus/rules.mk +++ b/keyboards/sentraq/s65_plus/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = atmel-dfu | |||
14 | # Build Options | 14 | # Build Options |
15 | # change yes to no to disable | 15 | # change yes to no to disable |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = no # Mouse keys | 18 | MOUSEKEY_ENABLE = no # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | 20 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE |
diff --git a/keyboards/shambles/rules.mk b/keyboards/shambles/rules.mk index 890de1ffe..e6af5d3ab 100644 --- a/keyboards/shambles/rules.mk +++ b/keyboards/shambles/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = atmel-dfu | |||
14 | # Build Options | 14 | # Build Options |
15 | # change yes to no to disable | 15 | # change yes to no to disable |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/smk60/rules.mk b/keyboards/smk60/rules.mk index ce0e621c3..eee57dbba 100644 --- a/keyboards/smk60/rules.mk +++ b/keyboards/smk60/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = atmel-dfu | |||
14 | # Build Options | 14 | # Build Options |
15 | # change yes to no to disable | 15 | # change yes to no to disable |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = no # Mouse keys | 18 | MOUSEKEY_ENABLE = no # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/southpole/rules.mk b/keyboards/southpole/rules.mk index f1bf7c8fd..25a0059d9 100644 --- a/keyboards/southpole/rules.mk +++ b/keyboards/southpole/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = halfkay | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/sowbug/68keys/rules.mk b/keyboards/sowbug/68keys/rules.mk index 414140c5e..043949124 100644 --- a/keyboards/sowbug/68keys/rules.mk +++ b/keyboards/sowbug/68keys/rules.mk | |||
@@ -12,7 +12,7 @@ DFU_SUFFIX_ARGS = -v 1eaf -p 0003 | |||
12 | # Build Options | 12 | # Build Options |
13 | # comment out to disable the options. | 13 | # comment out to disable the options. |
14 | # | 14 | # |
15 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 15 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
16 | MOUSEKEY_ENABLE = yes # Mouse keys | 16 | MOUSEKEY_ENABLE = yes # Mouse keys |
17 | EXTRAKEY_ENABLE = yes # Audio control and System control | 17 | EXTRAKEY_ENABLE = yes # Audio control and System control |
18 | CONSOLE_ENABLE = no | 18 | CONSOLE_ENABLE = no |
diff --git a/keyboards/sowbug/ansi_tkl/rules.mk b/keyboards/sowbug/ansi_tkl/rules.mk index 414140c5e..043949124 100644 --- a/keyboards/sowbug/ansi_tkl/rules.mk +++ b/keyboards/sowbug/ansi_tkl/rules.mk | |||
@@ -12,7 +12,7 @@ DFU_SUFFIX_ARGS = -v 1eaf -p 0003 | |||
12 | # Build Options | 12 | # Build Options |
13 | # comment out to disable the options. | 13 | # comment out to disable the options. |
14 | # | 14 | # |
15 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 15 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
16 | MOUSEKEY_ENABLE = yes # Mouse keys | 16 | MOUSEKEY_ENABLE = yes # Mouse keys |
17 | EXTRAKEY_ENABLE = yes # Audio control and System control | 17 | EXTRAKEY_ENABLE = yes # Audio control and System control |
18 | CONSOLE_ENABLE = no | 18 | CONSOLE_ENABLE = no |
diff --git a/keyboards/spaceman/pancake/feather/rules.mk b/keyboards/spaceman/pancake/feather/rules.mk index f9f172695..fb77e328e 100644 --- a/keyboards/spaceman/pancake/feather/rules.mk +++ b/keyboards/spaceman/pancake/feather/rules.mk | |||
@@ -18,7 +18,7 @@ BOOTLOADER = caterina | |||
18 | # comment out to disable the options. | 18 | # comment out to disable the options. |
19 | # | 19 | # |
20 | BLUETOOTH = AdafruitBLE | 20 | BLUETOOTH = AdafruitBLE |
21 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 21 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
22 | MOUSEKEY_ENABLE = no # Mouse keys | 22 | MOUSEKEY_ENABLE = no # Mouse keys |
23 | EXTRAKEY_ENABLE = yes # Audio control and System control | 23 | EXTRAKEY_ENABLE = yes # Audio control and System control |
24 | CONSOLE_ENABLE = yes # Console for debug | 24 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/spaceman/pancake/promicro/rules.mk b/keyboards/spaceman/pancake/promicro/rules.mk index 407ae090f..7287f3a0d 100644 --- a/keyboards/spaceman/pancake/promicro/rules.mk +++ b/keyboards/spaceman/pancake/promicro/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = caterina | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = no # Mouse keys | 18 | MOUSEKEY_ENABLE = no # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = yes # Console for debug | 20 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/splitish/rules.mk b/keyboards/splitish/rules.mk index 4cba00bcc..7764619a6 100644 --- a/keyboards/splitish/rules.mk +++ b/keyboards/splitish/rules.mk | |||
@@ -11,7 +11,7 @@ MCU = atmega32u4 | |||
11 | # ATmega328P USBasp | 11 | # ATmega328P USBasp |
12 | BOOTLOADER = caterina | 12 | BOOTLOADER = caterina |
13 | 13 | ||
14 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 14 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
15 | MOUSEKEY_ENABLE = yes # Mouse keys | 15 | MOUSEKEY_ENABLE = yes # Mouse keys |
16 | EXTRAKEY_ENABLE = yes # Audio control and System control | 16 | EXTRAKEY_ENABLE = yes # Audio control and System control |
17 | CONSOLE_ENABLE = no # Console for debug | 17 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/splitreus62/rules.mk b/keyboards/splitreus62/rules.mk index bc2b6a115..ce1ec3b87 100644 --- a/keyboards/splitreus62/rules.mk +++ b/keyboards/splitreus62/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = caterina | |||
14 | # Build Options | 14 | # Build Options |
15 | # change yes to no to disable | 15 | # change yes to no to disable |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/sx60/rules.mk b/keyboards/sx60/rules.mk index 3fa616a27..6443ca6a4 100755 --- a/keyboards/sx60/rules.mk +++ b/keyboards/sx60/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = atmel-dfu | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/technika/rules.mk b/keyboards/technika/rules.mk index 683d7f148..a548dbe9c 100644 --- a/keyboards/technika/rules.mk +++ b/keyboards/technika/rules.mk | |||
@@ -4,7 +4,7 @@ MCU = STM32F072 | |||
4 | # Build Options | 4 | # Build Options |
5 | # change yes to no to disable | 5 | # change yes to no to disable |
6 | # | 6 | # |
7 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 7 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
8 | MOUSEKEY_ENABLE = yes # Mouse keys | 8 | MOUSEKEY_ENABLE = yes # Mouse keys |
9 | EXTRAKEY_ENABLE = yes # Audio control and System control | 9 | EXTRAKEY_ENABLE = yes # Audio control and System control |
10 | CONSOLE_ENABLE = yes # Console for debug | 10 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/telophase/rules.mk b/keyboards/telophase/rules.mk index 65cac9364..614d90918 100644 --- a/keyboards/telophase/rules.mk +++ b/keyboards/telophase/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = caterina | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | #BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | #BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = yes # Console for debug | 20 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/tenki/rules.mk b/keyboards/tenki/rules.mk index 4c47d369b..e96881cc0 100644 --- a/keyboards/tenki/rules.mk +++ b/keyboards/tenki/rules.mk | |||
@@ -13,7 +13,7 @@ BOOTLOADER = caterina | |||
13 | # Build Options | 13 | # Build Options |
14 | # comment out to disable the options. | 14 | # comment out to disable the options. |
15 | # | 15 | # |
16 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 16 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
17 | MOUSEKEY_ENABLE = yes # Mouse keys | 17 | MOUSEKEY_ENABLE = yes # Mouse keys |
18 | EXTRAKEY_ENABLE = yes # Audio control and System control | 18 | EXTRAKEY_ENABLE = yes # Audio control and System control |
19 | CONSOLE_ENABLE = no # Console for debug | 19 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/terrazzo/rules.mk b/keyboards/terrazzo/rules.mk index 7a08fb769..843dbb88d 100644 --- a/keyboards/terrazzo/rules.mk +++ b/keyboards/terrazzo/rules.mk | |||
@@ -16,7 +16,7 @@ BOOTLOADER = atmel-dfu | |||
16 | # Build Options | 16 | # Build Options |
17 | # comment out to disable the options. | 17 | # comment out to disable the options. |
18 | # | 18 | # |
19 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 19 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
20 | MOUSEKEY_ENABLE = no # Mouse keys | 20 | MOUSEKEY_ENABLE = no # Mouse keys |
21 | EXTRAKEY_ENABLE = yes # Audio control and System control | 21 | EXTRAKEY_ENABLE = yes # Audio control and System control |
22 | CONSOLE_ENABLE = no # Console for debug | 22 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/thevankeyboards/minivan/rules.mk b/keyboards/thevankeyboards/minivan/rules.mk index d9a34f38b..4e1320815 100644 --- a/keyboards/thevankeyboards/minivan/rules.mk +++ b/keyboards/thevankeyboards/minivan/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = atmel-dfu | |||
14 | # Build Options | 14 | # Build Options |
15 | # change yes to no to disable | 15 | # change yes to no to disable |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/thevankeyboards/roadkit/rules.mk b/keyboards/thevankeyboards/roadkit/rules.mk index e8ab28cb5..760337e18 100644 --- a/keyboards/thevankeyboards/roadkit/rules.mk +++ b/keyboards/thevankeyboards/roadkit/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = atmel-dfu | |||
14 | # Build Options | 14 | # Build Options |
15 | # change yes to no to disable | 15 | # change yes to no to disable |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/ua62/rules.mk b/keyboards/ua62/rules.mk index 78fed4633..b28e458b7 100644 --- a/keyboards/ua62/rules.mk +++ b/keyboards/ua62/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = caterina | |||
14 | # Build Options | 14 | # Build Options |
15 | # change yes to no to disable | 15 | # change yes to no to disable |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = yes # Console for debug | 20 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/ut472/rules.mk b/keyboards/ut472/rules.mk index caf4c1c87..a100637b4 100644 --- a/keyboards/ut472/rules.mk +++ b/keyboards/ut472/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = atmel-dfu | |||
14 | # Build Options | 14 | # Build Options |
15 | # change yes to no to disable | 15 | # change yes to no to disable |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/vinta/rules.mk b/keyboards/vinta/rules.mk index 736509689..d35a64197 100644 --- a/keyboards/vinta/rules.mk +++ b/keyboards/vinta/rules.mk | |||
@@ -5,7 +5,7 @@ MCU = STM32F042 | |||
5 | # comment out to disable the options. | 5 | # comment out to disable the options. |
6 | # | 6 | # |
7 | BACKLIGHT_ENABLE = no | 7 | BACKLIGHT_ENABLE = no |
8 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 8 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
9 | MOUSEKEY_ENABLE = yes # Mouse keys | 9 | MOUSEKEY_ENABLE = yes # Mouse keys |
10 | EXTRAKEY_ENABLE = yes # Audio control and System control | 10 | EXTRAKEY_ENABLE = yes # Audio control and System control |
11 | CONSOLE_ENABLE = no # Console for debug | 11 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/vision_division/rules.mk b/keyboards/vision_division/rules.mk index 789ff97c7..b92464285 100644 --- a/keyboards/vision_division/rules.mk +++ b/keyboards/vision_division/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = halfkay | |||
14 | # Build Options | 14 | # Build Options |
15 | # change yes to no to disable | 15 | # change yes to no to disable |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = yes # Console for debug | 20 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/walletburner/cajal/rules.mk b/keyboards/walletburner/cajal/rules.mk index 0bb221f12..173b00fee 100644 --- a/keyboards/walletburner/cajal/rules.mk +++ b/keyboards/walletburner/cajal/rules.mk | |||
@@ -7,7 +7,7 @@ BOOTLOADER = atmel-dfu | |||
7 | # Build Options | 7 | # Build Options |
8 | # comment out to disable the options. | 8 | # comment out to disable the options. |
9 | # | 9 | # |
10 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 10 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
11 | MOUSEKEY_ENABLE = yes # Mouse keys | 11 | MOUSEKEY_ENABLE = yes # Mouse keys |
12 | EXTRAKEY_ENABLE = yes # Audio control and System control | 12 | EXTRAKEY_ENABLE = yes # Audio control and System control |
13 | CONSOLE_ENABLE = no # Console for debug | 13 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/whitefox/rules.mk b/keyboards/whitefox/rules.mk index 429795c23..771804369 100644 --- a/keyboards/whitefox/rules.mk +++ b/keyboards/whitefox/rules.mk | |||
@@ -16,7 +16,7 @@ BOARD = IC_TEENSY_3_1 | |||
16 | # Build Options | 16 | # Build Options |
17 | # change yes to no to disable | 17 | # change yes to no to disable |
18 | # | 18 | # |
19 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 19 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
20 | MOUSEKEY_ENABLE = yes # Mouse keys | 20 | MOUSEKEY_ENABLE = yes # Mouse keys |
21 | EXTRAKEY_ENABLE = yes # Audio control and System control | 21 | EXTRAKEY_ENABLE = yes # Audio control and System control |
22 | CONSOLE_ENABLE = no # Console for debug | 22 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/winkeyless/bminiex/rules.mk b/keyboards/winkeyless/bminiex/rules.mk index f44b7fe85..fa7336cd8 100644 --- a/keyboards/winkeyless/bminiex/rules.mk +++ b/keyboards/winkeyless/bminiex/rules.mk | |||
@@ -12,7 +12,7 @@ MCU = atmega32a | |||
12 | BOOTLOADER = bootloadHID | 12 | BOOTLOADER = bootloadHID |
13 | 13 | ||
14 | # build options | 14 | # build options |
15 | BOOTMAGIC_ENABLE = yes | 15 | BOOTMAGIC_ENABLE = full |
16 | MOUSEKEY_ENABLE = yes | 16 | MOUSEKEY_ENABLE = yes |
17 | EXTRAKEY_ENABLE = yes | 17 | EXTRAKEY_ENABLE = yes |
18 | CONSOLE_ENABLE = no | 18 | CONSOLE_ENABLE = no |
diff --git a/keyboards/wsk/houndstooth/rules.mk b/keyboards/wsk/houndstooth/rules.mk index c93932238..b1bdf25e3 100644 --- a/keyboards/wsk/houndstooth/rules.mk +++ b/keyboards/wsk/houndstooth/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = caterina | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/wsk/kodachi50/rules.mk b/keyboards/wsk/kodachi50/rules.mk index 0f9fe8d42..9de501227 100644 --- a/keyboards/wsk/kodachi50/rules.mk +++ b/keyboards/wsk/kodachi50/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = caterina | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/wsk/pain27/rules.mk b/keyboards/wsk/pain27/rules.mk index 8b5c7c51b..e939ba823 100644 --- a/keyboards/wsk/pain27/rules.mk +++ b/keyboards/wsk/pain27/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = caterina | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000) | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration(+1000) |
18 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) | 18 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) |
20 | CONSOLE_ENABLE = no # Console for debug(+400) | 20 | CONSOLE_ENABLE = no # Console for debug(+400) |
diff --git a/keyboards/wsk/sl40/rules.mk b/keyboards/wsk/sl40/rules.mk index 0f9fe8d42..9de501227 100644 --- a/keyboards/wsk/sl40/rules.mk +++ b/keyboards/wsk/sl40/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = caterina | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/xd60/rev2/rules.mk b/keyboards/xd60/rev2/rules.mk index 56a01b3c5..a06ac2e2c 100644 --- a/keyboards/xd60/rev2/rules.mk +++ b/keyboards/xd60/rev2/rules.mk | |||
@@ -12,7 +12,7 @@ MCU = atmega32u4 | |||
12 | BOOTLOADER = atmel-dfu | 12 | BOOTLOADER = atmel-dfu |
13 | 13 | ||
14 | # Build Options | 14 | # Build Options |
15 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 15 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
16 | MOUSEKEY_ENABLE = yes # Mouse keys | 16 | MOUSEKEY_ENABLE = yes # Mouse keys |
17 | EXTRAKEY_ENABLE = yes # Audio control and System control | 17 | EXTRAKEY_ENABLE = yes # Audio control and System control |
18 | CONSOLE_ENABLE = no # Console for debug | 18 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/xd60/rev3/rules.mk b/keyboards/xd60/rev3/rules.mk index 56a01b3c5..a06ac2e2c 100644 --- a/keyboards/xd60/rev3/rules.mk +++ b/keyboards/xd60/rev3/rules.mk | |||
@@ -12,7 +12,7 @@ MCU = atmega32u4 | |||
12 | BOOTLOADER = atmel-dfu | 12 | BOOTLOADER = atmel-dfu |
13 | 13 | ||
14 | # Build Options | 14 | # Build Options |
15 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 15 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
16 | MOUSEKEY_ENABLE = yes # Mouse keys | 16 | MOUSEKEY_ENABLE = yes # Mouse keys |
17 | EXTRAKEY_ENABLE = yes # Audio control and System control | 17 | EXTRAKEY_ENABLE = yes # Audio control and System control |
18 | CONSOLE_ENABLE = no # Console for debug | 18 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/xd75/keymaps/4sstylz/rules.mk b/keyboards/xd75/keymaps/4sstylz/rules.mk index ffb70f0a9..0a9e12512 100644 --- a/keyboards/xd75/keymaps/4sstylz/rules.mk +++ b/keyboards/xd75/keymaps/4sstylz/rules.mk | |||
@@ -17,7 +17,7 @@ COMBO_ENABLE = yes # Enable combo for special function when using multiple k | |||
17 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 17 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
18 | RGBLIGHT_ENABLE = yes # Enable WS2812 RGB underlight. | 18 | RGBLIGHT_ENABLE = yes # Enable WS2812 RGB underlight. |
19 | 19 | ||
20 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 20 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
21 | MOUSEKEY_ENABLE = no # Mouse keys | 21 | MOUSEKEY_ENABLE = no # Mouse keys |
22 | EXTRAKEY_ENABLE = yes # Audio control and System control | 22 | EXTRAKEY_ENABLE = yes # Audio control and System control |
23 | CONSOLE_ENABLE = no # Console for debug | 23 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/xd75/keymaps/fabian/rules.mk b/keyboards/xd75/keymaps/fabian/rules.mk index 8831f2d62..39b003dee 100644 --- a/keyboards/xd75/keymaps/fabian/rules.mk +++ b/keyboards/xd75/keymaps/fabian/rules.mk | |||
@@ -18,7 +18,7 @@ | |||
18 | # change to "no" to disable the options, or define them in the Makefile in | 18 | # change to "no" to disable the options, or define them in the Makefile in |
19 | # the appropriate keymap folder that will get included automatically | 19 | # the appropriate keymap folder that will get included automatically |
20 | # | 20 | # |
21 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000) | 21 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration(+1000) |
22 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) | 22 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) |
23 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) | 23 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) |
24 | CONSOLE_ENABLE = no # Console for debug(+400) | 24 | CONSOLE_ENABLE = no # Console for debug(+400) |
diff --git a/keyboards/xd75/keymaps/revok75/rules.mk b/keyboards/xd75/keymaps/revok75/rules.mk index 7472e8c64..21ba8f74b 100644 --- a/keyboards/xd75/keymaps/revok75/rules.mk +++ b/keyboards/xd75/keymaps/revok75/rules.mk | |||
@@ -13,6 +13,6 @@ | |||
13 | # You should have received a copy of the GNU General Public License | 13 | # You should have received a copy of the GNU General Public License |
14 | # along with this program. If not, see <http://www.gnu.org/licenses/>. | 14 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
15 | 15 | ||
16 | BOOTMAGIC_ENABLE = yes | 16 | BOOTMAGIC_ENABLE = full |
17 | BACKLIGHT_ENABLE = yes | 17 | BACKLIGHT_ENABLE = yes |
18 | RGBLIGHT_ENABLE = yes | 18 | RGBLIGHT_ENABLE = yes |
diff --git a/keyboards/xd87/rules.mk b/keyboards/xd87/rules.mk index abd7a41bb..6d5d8b6da 100644 --- a/keyboards/xd87/rules.mk +++ b/keyboards/xd87/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = atmel-dfu | |||
14 | # Build Options | 14 | # Build Options |
15 | # change yes to no to disable | 15 | # change yes to no to disable |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = no # Mouse keys | 18 | MOUSEKEY_ENABLE = no # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = yes # Console for debug | 20 | CONSOLE_ENABLE = yes # Console for debug |
diff --git a/keyboards/ymd75/rev1/rules.mk b/keyboards/ymd75/rev1/rules.mk index b77457b5a..2499c1c5e 100644 --- a/keyboards/ymd75/rev1/rules.mk +++ b/keyboards/ymd75/rev1/rules.mk | |||
@@ -12,7 +12,7 @@ MCU = atmega32a | |||
12 | BOOTLOADER = bootloadHID | 12 | BOOTLOADER = bootloadHID |
13 | 13 | ||
14 | # build options | 14 | # build options |
15 | BOOTMAGIC_ENABLE = yes | 15 | BOOTMAGIC_ENABLE = full |
16 | MOUSEKEY_ENABLE = no | 16 | MOUSEKEY_ENABLE = no |
17 | EXTRAKEY_ENABLE = yes | 17 | EXTRAKEY_ENABLE = yes |
18 | CONSOLE_ENABLE = no | 18 | CONSOLE_ENABLE = no |
diff --git a/keyboards/ymd75/rev2/rules.mk b/keyboards/ymd75/rev2/rules.mk index b77457b5a..2499c1c5e 100644 --- a/keyboards/ymd75/rev2/rules.mk +++ b/keyboards/ymd75/rev2/rules.mk | |||
@@ -12,7 +12,7 @@ MCU = atmega32a | |||
12 | BOOTLOADER = bootloadHID | 12 | BOOTLOADER = bootloadHID |
13 | 13 | ||
14 | # build options | 14 | # build options |
15 | BOOTMAGIC_ENABLE = yes | 15 | BOOTMAGIC_ENABLE = full |
16 | MOUSEKEY_ENABLE = no | 16 | MOUSEKEY_ENABLE = no |
17 | EXTRAKEY_ENABLE = yes | 17 | EXTRAKEY_ENABLE = yes |
18 | CONSOLE_ENABLE = no | 18 | CONSOLE_ENABLE = no |
diff --git a/keyboards/ymdk/sp64/rules.mk b/keyboards/ymdk/sp64/rules.mk index 91dc8ab74..8db57de3b 100644 --- a/keyboards/ymdk/sp64/rules.mk +++ b/keyboards/ymdk/sp64/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = bootloadHID | |||
14 | # Build Options | 14 | # Build Options |
15 | # change yes to no to disable | 15 | # change yes to no to disable |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = no # Mouse keys | 18 | MOUSEKEY_ENABLE = no # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/ymdk/ymd67/rules.mk b/keyboards/ymdk/ymd67/rules.mk index 891c7739a..2ffe8fcab 100644 --- a/keyboards/ymdk/ymd67/rules.mk +++ b/keyboards/ymdk/ymd67/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = atmel-dfu | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = no # Mouse keys | 18 | MOUSEKEY_ENABLE = no # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/z150_bh/rules.mk b/keyboards/z150_bh/rules.mk index 739bea393..1843f1ba6 100644 --- a/keyboards/z150_bh/rules.mk +++ b/keyboards/z150_bh/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = halfkay | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/keyboards/zlant/rules.mk b/keyboards/zlant/rules.mk index 5daad3db2..03d57e23f 100755 --- a/keyboards/zlant/rules.mk +++ b/keyboards/zlant/rules.mk | |||
@@ -14,7 +14,7 @@ BOOTLOADER = atmel-dfu | |||
14 | # Build Options | 14 | # Build Options |
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration | 17 | BOOTMAGIC_ENABLE = full # Virtual DIP switch configuration |
18 | MOUSEKEY_ENABLE = yes # Mouse keys | 18 | MOUSEKEY_ENABLE = yes # Mouse keys |
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
diff --git a/layouts/community/ergodox/bocaj/rules.mk b/layouts/community/ergodox/bocaj/rules.mk index 88eaf39f8..c6a306fda 100644 --- a/layouts/community/ergodox/bocaj/rules.mk +++ b/layouts/community/ergodox/bocaj/rules.mk | |||
@@ -1,4 +1,4 @@ | |||
1 | BOOTMAGIC_ENABLE = yes | 1 | BOOTMAGIC_ENABLE = full |
2 | TAP_DANCE_ENABLE = no | 2 | TAP_DANCE_ENABLE = no |
3 | COMMAND_ENABLE = no # Commands for debug and configuration | 3 | COMMAND_ENABLE = no # Commands for debug and configuration |
4 | CONSOLE_ENABLE = yes | 4 | CONSOLE_ENABLE = yes |
diff --git a/users/gordon/rules.mk b/users/gordon/rules.mk index 19e77b01b..06e671a63 100644 --- a/users/gordon/rules.mk +++ b/users/gordon/rules.mk | |||
@@ -1,4 +1,4 @@ | |||
1 | TAP_DANCE_ENABLE = yes | 1 | TAP_DANCE_ENABLE = yes |
2 | SRC += gordon.c | 2 | SRC += gordon.c |
3 | 3 | ||
4 | # BOOTMAGIC_ENABLE = yes | 4 | # BOOTMAGIC_ENABLE = full |