diff options
| author | Joel Challis | 2024-03-30 11:43:15 +0100 |
|---|---|---|
| committer | GitHub | 2024-03-30 11:43:15 +0100 |
| commit | 426bb9c651a292dce6ae01e7ed9d41d94dbba99f (patch) | |
| tree | fbee5244f85aada3c7c17d52cd3dace080f7e06f /keyboards/tetris | |
| parent | 86e7df0c2a75baa00238f5350a912d5a4f8b622d (diff) | |
Migrate features and LTO from rules.mk to data driven (#23302)
Diffstat (limited to 'keyboards/tetris')
| -rw-r--r-- | keyboards/tetris/keyboard.json (renamed from keyboards/tetris/info.json) | 14 | ||||
| -rwxr-xr-x | keyboards/tetris/rules.mk | 14 |
2 files changed, 14 insertions, 14 deletions
diff --git a/keyboards/tetris/info.json b/keyboards/tetris/keyboard.json index 16e9369996..01df052ba6 100644 --- a/keyboards/tetris/info.json +++ b/keyboards/tetris/keyboard.json @@ -29,6 +29,20 @@ "ws2812": { "pin": "F5" }, + "build": { + "lto": true + }, + "features": { + "audio": true, + "bootmagic": false, + "command": false, + "console": false, + "encoder": true, + "extrakey": true, + "mousekey": true, + "nkro": true, + "rgblight": true + }, "matrix_pins": { "cols": ["D7", "B4", "B6", "C6", "C7", "F6", "F7", "D4", "D2", "D3", "D5", "D6"], "rows": ["B3", "B2", "B1", "B0", "E6"] diff --git a/keyboards/tetris/rules.mk b/keyboards/tetris/rules.mk deleted file mode 100755 index 60057f2aa7..0000000000 --- a/keyboards/tetris/rules.mk +++ /dev/null @@ -1,14 +0,0 @@ -# Build Options -# change yes to no to disable -# -BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite -MOUSEKEY_ENABLE = yes # Mouse keys -EXTRAKEY_ENABLE = yes # Audio control and System control -CONSOLE_ENABLE = no # Console for debug -COMMAND_ENABLE = no # Commands for debug and configuration -NKRO_ENABLE = yes # Enable N-Key Rollover -BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality -AUDIO_ENABLE = yes -RGBLIGHT_ENABLE = yes -LTO_ENABLE = yes -ENCODER_ENABLE = yes |