From c29825a17373ae8dc647e1fff8f77229b032defe Mon Sep 17 00:00:00 2001 From: Benjamin Valentin Date: Wed, 14 Oct 2020 23:37:42 +0200 Subject: [PATCH] boards/microduino-corerf: don't set bootloader size This already gets set by `common/atmega/Makefile.include`. Setting it in the board prevents auto-selection if a bootloader is used. --- boards/microduino-corerf/Makefile.include | 4 ---- 1 file changed, 4 deletions(-) diff --git a/boards/microduino-corerf/Makefile.include b/boards/microduino-corerf/Makefile.include index a46ef1f683..af834a1a0d 100644 --- a/boards/microduino-corerf/Makefile.include +++ b/boards/microduino-corerf/Makefile.include @@ -8,8 +8,4 @@ BAUD ?= 115200 PROGRAMMER_MICRODUINO_CORERF ?= UM232H PROGRAMMER ?= $(PROGRAMMER_MICRODUINO_CORERF) -# We don't use a bootloader -BOOTLOADER_SIZE ?= 0 -ROM_RESERVED ?= $(BOOTLOADER_SIZE) - include $(RIOTBOARD)/common/atmega/Makefile.include