diff options
| author | Joel Challis | 2024-03-30 11:57:30 +0100 |
|---|---|---|
| committer | GitHub | 2024-03-30 11:57:30 +0100 |
| commit | 1c8e99ca451a9f0acac07b64da80cf11baedf6a6 (patch) | |
| tree | f03b67de13a64e7029c01da6755cced32ddb65d3 /keyboards/eco | |
| parent | 426bb9c651a292dce6ae01e7ed9d41d94dbba99f (diff) | |
Migrate features and LTO from rules.mk to data driven (#23307)
Diffstat (limited to 'keyboards/eco')
| -rw-r--r-- | keyboards/eco/info.json | 10 | ||||
| -rw-r--r-- | keyboards/eco/rules.mk | 14 |
2 files changed, 10 insertions, 14 deletions
diff --git a/keyboards/eco/info.json b/keyboards/eco/info.json index 6a1b2adda1..74c66fdcb9 100644 --- a/keyboards/eco/info.json +++ b/keyboards/eco/info.json @@ -3,6 +3,16 @@ "manufacturer": "Bishop Keyboards", "url": "", "maintainer": "qmk", + "features": { + "backlight": true, + "bootmagic": false, + "command": true, + "console": false, + "extrakey": true, + "midi": true, + "mousekey": false, + "nkro": false + }, "usb": { "vid": "0x1337", "pid": "0x6006" diff --git a/keyboards/eco/rules.mk b/keyboards/eco/rules.mk index 6e28ce6bbb..a3d419658b 100644 --- a/keyboards/eco/rules.mk +++ b/keyboards/eco/rules.mk @@ -1,15 +1 @@ -# Build Options -# change yes to no to disable -# -BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite -MOUSEKEY_ENABLE = no # Mouse keys -EXTRAKEY_ENABLE = yes # Audio control and System control -CONSOLE_ENABLE = no # Console for debug -COMMAND_ENABLE = yes # Commands for debug and configuration -NKRO_ENABLE = no # Enable N-Key Rollover -BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality -MIDI_ENABLE = yes # MIDI support -AUDIO_ENABLE = no # Audio output -RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight. - DEFAULT_FOLDER = eco/rev2 |