mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-10 02:30:07 +00:00
Slightly more prominent LUFA Mass-storage bootloader warning. (#13163)
This commit is contained in:
parent
39c8ed32b4
commit
d684b8cafe
1 changed files with 8 additions and 4 deletions
|
@ -92,10 +92,14 @@ ifeq ($(strip $(BOOTLOADER)), lufa-ms)
|
||||||
OPT_DEFS += -DBOOTLOADER_MS
|
OPT_DEFS += -DBOOTLOADER_MS
|
||||||
BOOTLOADER_SIZE = 6144
|
BOOTLOADER_SIZE = 6144
|
||||||
FIRMWARE_FORMAT = bin
|
FIRMWARE_FORMAT = bin
|
||||||
|
cpfirmware: lufa_warning
|
||||||
|
.INTERMEDIATE: lufa_warning
|
||||||
|
lufa_warning: $(FIRMWARE_FORMAT)
|
||||||
|
$(info @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@)
|
||||||
$(info LUFA MASS STORAGE Bootloader selected)
|
$(info LUFA MASS STORAGE Bootloader selected)
|
||||||
$(info DO NOT USE THIS BOOTLOADER IN NEW PROJECTS!)
|
$(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 It is extremely prone to bricking, and is only included to support existing boards.)
|
||||||
$(info )
|
$(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