summary refs log tree commit diff
path: root/bootloader.mk
diff options
context:
space:
mode:
authorNick Brassel <nick@tzarc.org>2020-08-22 08:42:28 +1000
committerGitHub <noreply@github.com>2020-08-21 15:42:28 -0700
commit70ce4ba56f5d805e71c2b1de7334d6492b5e350a (patch)
treeb5ac7fc20ebae31861c24eeb56c7dc0acc4b7a19 /bootloader.mk
parent1b0272e801d5ed5fb9af6012376e0d23ca678acd (diff)
Revert "Add Kiibohd bootloader type to bootloader.mk (#9908)" (#10126)
This reverts commit e2d4cd1a41c667da186891e3dbaf535c6b0717df.
Diffstat (limited to 'bootloader.mk')
-rw-r--r--bootloader.mk13
1 files changed, 0 insertions, 13 deletions
diff --git a/bootloader.mk b/bootloader.mk
index c22291e435..e516e9ff9f 100644
--- a/bootloader.mk
+++ b/bootloader.mk
@@ -27,7 +27,6 @@
 # qmk-dfu        QMK DFU (LUFA + blinkenlight)
 # bootloadHID    HIDBootFlash compatible (ATmega32A)
 # USBasp         USBaspLoader (ATmega328P)
-# kiibohd        Input:Club Kiibohd bootloader (only used on their boards)
 #
 # BOOTLOADER_SIZE can still be defined manually, but it's recommended
 # you add any possible configuration to this list
@@ -90,18 +89,6 @@ ifeq ($(strip $(BOOTLOADER)), lufa-ms)
     BOOTLOADER_SIZE = 6144
     FIRMWARE_FORMAT = bin
 endif
-ifeq ($(strip $(BOOTLOADER)), kiibohd)
-    OPT_DEFS += -DBOOTLOADER_KIIBOHD
-    ifeq ($(strip $(MCU)), MK20DX128)
-        MCU_LDSCRIPT = MK20DX128BLDR4
-    endif
-    ifeq ($(strip $(MCU)), MK20DX256)
-        MCU_LDSCRIPT = MK20DX256BLDR8
-    endif
-
-    DFU_ARGS = -d 1C11:B007
-    DFU_SUFFIX_ARGS = -v 1C11 -p B007
-endif
 
 ifdef BOOTLOADER_SIZE
     OPT_DEFS += -DBOOTLOADER_SIZE=$(strip $(BOOTLOADER_SIZE))