diff options
author | Ryan <fauxpark@gmail.com> | 2021-09-10 17:17:54 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-10 17:17:54 +1000 |
commit | d5cb7de5e4ea60dce69764a627358d534af1f666 (patch) | |
tree | 5835a4448bbb4e946495aad393145aca39305c75 /bootloader.mk | |
parent | 7eea780a7da2d9197b78b62b7294a6b2bc2fa572 (diff) | |
download | qmk_firmware-d5cb7de5e4ea60dce69764a627358d534af1f666.tar.gz qmk_firmware-d5cb7de5e4ea60dce69764a627358d534af1f666.zip |
Change USBasp and bootloadHID bootloaders to lowercase (#14354)
Diffstat (limited to 'bootloader.mk')
-rw-r--r-- | bootloader.mk | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/bootloader.mk b/bootloader.mk index abdfd20fd..2bcca6bb8 100644 --- a/bootloader.mk +++ b/bootloader.mk | |||
@@ -21,19 +21,19 @@ | |||
21 | # Current options: | 21 | # Current options: |
22 | # | 22 | # |
23 | # AVR: | 23 | # AVR: |
24 | # halfkay PJRC Teensy | 24 | # halfkay PJRC Teensy |
25 | # caterina Pro Micro (Sparkfun/generic) | 25 | # caterina Pro Micro (Sparkfun/generic) |
26 | # atmel-dfu Atmel factory DFU | 26 | # atmel-dfu Atmel factory DFU |
27 | # lufa-dfu LUFA DFU | 27 | # lufa-dfu LUFA DFU |
28 | # qmk-dfu QMK DFU (LUFA + blinkenlight) | 28 | # qmk-dfu QMK DFU (LUFA + blinkenlight) |
29 | # qmk-hid QMK HID (LUFA + blinkenlight) | 29 | # qmk-hid QMK HID (LUFA + blinkenlight) |
30 | # bootloadHID HIDBootFlash compatible (ATmega32A) | 30 | # bootloadhid HIDBootFlash compatible (ATmega32A) |
31 | # USBasp USBaspLoader (ATmega328P) | 31 | # usbasploader USBaspLoader (ATmega328P) |
32 | # ARM: | 32 | # ARM: |
33 | # kiibohd Input:Club Kiibohd bootloader (only used on their boards) | 33 | # kiibohd Input:Club Kiibohd bootloader (only used on their boards) |
34 | # stm32duino STM32Duino (STM32F103x8) | 34 | # stm32duino STM32Duino (STM32F103x8) |
35 | # stm32-dfu STM32 USB DFU in ROM | 35 | # stm32-dfu STM32 USB DFU in ROM |
36 | # apm32-dfu APM32 USB DFU in ROM | 36 | # apm32-dfu APM32 USB DFU in ROM |
37 | # | 37 | # |
38 | # BOOTLOADER_SIZE can still be defined manually, but it's recommended | 38 | # BOOTLOADER_SIZE can still be defined manually, but it's recommended |
39 | # you add any possible configuration to this list | 39 | # you add any possible configuration to this list |
@@ -86,11 +86,11 @@ ifeq ($(strip $(BOOTLOADER)), caterina) | |||
86 | OPT_DEFS += -DBOOTLOADER_CATERINA | 86 | OPT_DEFS += -DBOOTLOADER_CATERINA |
87 | BOOTLOADER_SIZE = 4096 | 87 | BOOTLOADER_SIZE = 4096 |
88 | endif | 88 | endif |
89 | ifeq ($(strip $(BOOTLOADER)), bootloadHID) | 89 | ifneq (,$(filter $(BOOTLOADER), bootloadhid bootloadHID)) |
90 | OPT_DEFS += -DBOOTLOADER_BOOTLOADHID | 90 | OPT_DEFS += -DBOOTLOADER_BOOTLOADHID |
91 | BOOTLOADER_SIZE = 4096 | 91 | BOOTLOADER_SIZE = 4096 |
92 | endif | 92 | endif |
93 | ifeq ($(strip $(BOOTLOADER)), USBasp) | 93 | ifneq (,$(filter $(BOOTLOADER), usbasploader USBasp)) |
94 | OPT_DEFS += -DBOOTLOADER_USBASP | 94 | OPT_DEFS += -DBOOTLOADER_USBASP |
95 | BOOTLOADER_SIZE = 4096 | 95 | BOOTLOADER_SIZE = 4096 |
96 | endif | 96 | endif |