forked from qmk/qmk_firmware
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Userspace post_rules.mk migration step qmk#3
Disable flags in keymap-level rules.mk that clash with userspace-level defaults We want all affected keymaps to compile to the exact same binaries as before the migration. Since keymap-level flags now override userspace flags rather than vice-versa, we need to make sure that we disable keymap flags that explicitly differ from the userspace defaults.
- Loading branch information
1 parent
455856f
commit 8c9a7c1
Showing
7 changed files
with
27 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
CTPC=yes | ||
CONSOLE_ENABLE = yes # Console for debug | ||
COMMAND_ENABLE = yes # Commands for debug and configuration | ||
AUDIO_ENABLE = yes | ||
# MAINTAINERS' NOTE: The following flag has been disabled because it clashes with the default value set in your userspace rules.mk (see that file for more info). | ||
# If you're sure you want to change the behavior that your keymap has had thus far, you may uncomment the following line and delete this note. | ||
#AUDIO_ENABLE = yes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
MOUSEKEY_ENABLE = no | ||
# MAINTAINERS' NOTE: The following flag has been disabled because it clashes with the default value set in your userspace rules.mk (see that file for more info). | ||
# If you're sure you want to change the behavior that your keymap has had thus far, you may uncomment the following line and delete this note. | ||
#MOUSEKEY_ENABLE = no | ||
LTO_ENABLE = yes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
MOUSEKEY_ENABLE = yes # Mouse keys(+4700) | ||
# MAINTAINERS' NOTE: The following flag has been disabled because it clashes with the default value set in your userspace rules.mk (see that file for more info). | ||
# If you're sure you want to change the behavior that your keymap has had thus far, you may uncomment the following line and delete this note. | ||
#MOUSEKEY_ENABLE = yes # Mouse keys(+4700) | ||
CONSOLE_ENABLE = no # Console for debug(+400) |