summary refs log tree commit diff
path: root/bootloader.mk
diff options
context:
space:
mode:
authorNick Brassel <nick@tzarc.org>2021-06-10 16:05:29 +1000
committerGitHub <noreply@github.com>2021-06-10 16:05:29 +1000
commitd684b8cafed8298bed53c6fb184086fc573f4e91 (patch)
treea673f07f4e561b203deabb9ae2eebb6b2bd5b28e /bootloader.mk
parent39c8ed32b47baed70c636113b1433381c5b6cfdc (diff)
Slightly more prominent LUFA Mass-storage bootloader warning. (#13163)
Diffstat (limited to 'bootloader.mk')
-rw-r--r--bootloader.mk12
1 files changed, 8 insertions, 4 deletions
diff --git a/bootloader.mk b/bootloader.mk
index d130dbbcca..79d3c3d72a 100644
--- a/bootloader.mk
+++ b/bootloader.mk
@@ -92,10 +92,14 @@ ifeq ($(strip $(BOOTLOADER)), lufa-ms)
     OPT_DEFS += -DBOOTLOADER_MS
     BOOTLOADER_SIZE = 6144
     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 )
+cpfirmware: lufa_warning
+.INTERMEDIATE: lufa_warning
+lufa_warning: $(FIRMWARE_FORMAT)
+	$(info @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@)
+	$(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
 ifdef BOOTLOADER_SIZE
     OPT_DEFS += -DBOOTLOADER_SIZE=$(strip $(BOOTLOADER_SIZE))