diff options
author | Drashna Jaelre <drashna@live.com> | 2019-09-07 16:55:18 -0700 |
---|---|---|
committer | fauxpark <fauxpark@gmail.com> | 2019-09-08 09:55:18 +1000 |
commit | 02f77e7215a0ee9bb4ba1054dbdec75a4843bb99 (patch) | |
tree | da2aa27fe20789764ceecad4d57652b6a192486b /tmk_core/chibios.mk | |
parent | 44fd317a8793753b2af1bab8e4a4700024a768a5 (diff) | |
download | qmk_firmware-02f77e7215a0ee9bb4ba1054dbdec75a4843bb99.tar.gz qmk_firmware-02f77e7215a0ee9bb4ba1054dbdec75a4843bb99.zip |
Actually use correct bootloader not found message (#6695)
Diffstat (limited to 'tmk_core/chibios.mk')
-rw-r--r-- | tmk_core/chibios.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tmk_core/chibios.mk b/tmk_core/chibios.mk index 5c757ec89..c25e28707 100644 --- a/tmk_core/chibios.mk +++ b/tmk_core/chibios.mk | |||
@@ -236,7 +236,7 @@ qmk: $(BUILD_DIR)/$(TARGET).bin | |||
236 | 236 | ||
237 | define EXEC_DFU_UTIL | 237 | define EXEC_DFU_UTIL |
238 | until $(DFU_UTIL) -l | grep -q "Found DFU"; do\ | 238 | until $(DFU_UTIL) -l | grep -q "Found DFU"; do\ |
239 | printf "$(MSG_FLASH_BOOTLOADER)" ;\ | 239 | printf "$(MSG_BOOTLOADER_NOT_FOUND)" ;\ |
240 | sleep 5 ;\ | 240 | sleep 5 ;\ |
241 | done | 241 | done |
242 | $(DFU_UTIL) $(DFU_ARGS) -D $(BUILD_DIR)/$(TARGET).bin | 242 | $(DFU_UTIL) $(DFU_ARGS) -D $(BUILD_DIR)/$(TARGET).bin |