forked from mirrors/qmk_firmware
Add dire message about LUFA mass storage bootloader (#13014)
This commit is contained in:
parent
879185a214
commit
b769b36202
1 changed files with 4 additions and 2 deletions
|
@ -89,11 +89,13 @@ ifeq ($(strip $(BOOTLOADER)), USBasp)
|
||||||
BOOTLOADER_SIZE = 4096
|
BOOTLOADER_SIZE = 4096
|
||||||
endif
|
endif
|
||||||
ifeq ($(strip $(BOOTLOADER)), lufa-ms)
|
ifeq ($(strip $(BOOTLOADER)), lufa-ms)
|
||||||
# DO NOT USE THIS BOOTLOADER IN NEW PROJECTS!
|
|
||||||
# It is extremely prone to bricking, and is only included to support existing boards.
|
|
||||||
OPT_DEFS += -DBOOTLOADER_MS
|
OPT_DEFS += -DBOOTLOADER_MS
|
||||||
BOOTLOADER_SIZE = 6144
|
BOOTLOADER_SIZE = 6144
|
||||||
FIRMWARE_FORMAT = bin
|
FIRMWARE_FORMAT = bin
|
||||||
|
$(info LUFA MASS STORAGE Bootloader selected)
|
||||||
|
$(info DO NOT USE THIS BOOTLOADER IN NEW PROJECTS!)
|
||||||
|
$(info It is extremely prone to bricking, and is only included to support existing boards.)
|
||||||
|
$(info )
|
||||||
endif
|
endif
|
||||||
ifdef BOOTLOADER_SIZE
|
ifdef BOOTLOADER_SIZE
|
||||||
OPT_DEFS += -DBOOTLOADER_SIZE=$(strip $(BOOTLOADER_SIZE))
|
OPT_DEFS += -DBOOTLOADER_SIZE=$(strip $(BOOTLOADER_SIZE))
|
||||||
|
|
Loading…
Reference in a new issue