diff options
author | Joel Challis <git@zvecr.com> | 2024-03-30 10:57:30 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-30 10:57:30 +0000 |
commit | 1c8e99ca451a9f0acac07b64da80cf11baedf6a6 (patch) | |
tree | f03b67de13a64e7029c01da6755cced32ddb65d3 /keyboards/vitamins_included | |
parent | 426bb9c651a292dce6ae01e7ed9d41d94dbba99f (diff) |
Migrate features and LTO from rules.mk to data driven (#23307)
Diffstat (limited to 'keyboards/vitamins_included')
-rw-r--r-- | keyboards/vitamins_included/info.json | 13 | ||||
-rw-r--r-- | keyboards/vitamins_included/rules.mk | 16 |
2 files changed, 13 insertions, 16 deletions
diff --git a/keyboards/vitamins_included/info.json b/keyboards/vitamins_included/info.json index 8199aca23a..60907cdba3 100644 --- a/keyboards/vitamins_included/info.json +++ b/keyboards/vitamins_included/info.json @@ -3,6 +3,19 @@ "manufacturer": "Duckle29", "url": "", "maintainer": "Duckle29", + "build": { + "lto": true + }, + "features": { + "audio": true, + "bootmagic": false, + "command": false, + "console": false, + "extrakey": true, + "mousekey": false, + "nkro": true, + "rgblight": true + }, "usb": { "vid": "0x1209", "pid": "0xBEE5" diff --git a/keyboards/vitamins_included/rules.mk b/keyboards/vitamins_included/rules.mk index 3ca1a5cf70..e3452d41db 100644 --- a/keyboards/vitamins_included/rules.mk +++ b/keyboards/vitamins_included/rules.mk @@ -1,17 +1 @@ -# Build Options -# change yes to no to disable -# -AUDIO_ENABLE = yes # Audio output -BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality -BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite -COMMAND_ENABLE = no # Commands for debug and configuration -CONSOLE_ENABLE = no # Console for debug -DEBUG_ENABLE = no # Enable more debug info -EXTRAKEY_ENABLE = yes # Audio control and System control -MOUSEKEY_ENABLE = no # Mouse keys -NKRO_ENABLE = yes # Enable N-Key Rollover -RGBLIGHT_ENABLE = yes # Enable WS2812 RGB underlight. - DEFAULT_FOLDER = vitamins_included/rev2 - -LTO_ENABLE = yes |