Skip to content

Commit

Permalink
Create a build error if no bootloader is specified. (qmk#16181)
Browse files Browse the repository at this point in the history
* Create a build error if no bootloader is specified.

* Update builddefs/bootloader.mk

Co-authored-by: Ryan <[email protected]>

Co-authored-by: Ryan <[email protected]>
  • Loading branch information
tzarc and fauxpark authored Feb 3, 2022
1 parent 0d7ff02 commit 0be2eaf
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
11 changes: 10 additions & 1 deletion builddefs/bootloader.mk
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,18 @@
# RISC-V:
# gd32v-dfu GD32V USB DFU in ROM
#
# If you need to provide your own implementation, you can set inside `rules.mk`
# `BOOTLOADER = custom` -- you'll need to provide your own implementations. See
# the respective file under `platforms/<PLATFORM>/bootloaders/custom.c` to see
# which functions may be overridden.
#
# BOOTLOADER_SIZE can still be defined manually, but it's recommended
# you add any possible configuration to this list

ifeq ($(strip $(BOOTLOADER)), custom)
OPT_DEFS += -DBOOTLOADER_CUSTOM
BOOTLOADER_TYPE = custom
endif
ifeq ($(strip $(BOOTLOADER)), atmel-dfu)
OPT_DEFS += -DBOOTLOADER_ATMEL_DFU
OPT_DEFS += -DBOOTLOADER_DFU
Expand Down Expand Up @@ -195,5 +204,5 @@ ifeq ($(strip $(BOOTLOADER)), md-boot)
endif

ifeq ($(strip $(BOOTLOADER_TYPE)),)
BOOTLOADER_TYPE = none
$(error No bootloader specified. Please set an appropriate 'BOOTLOADER' in your keyboard's 'rules.mk' file)
endif
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

#include "bootloader.h"

#pragma message "Unknown bootloader set, you may not be able to enter bootloader using software reset"

__attribute__((weak)) void bootloader_jump(void) {}

__attribute__((weak)) void enter_bootloader_mode_if_requested(void) {}

0 comments on commit 0be2eaf

Please sign in to comment.