1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

boards/native: forward eeprom flags to pyterm

This commit is contained in:
Oleg Hahm 2023-12-23 17:21:15 +01:00 committed by Benjamin Valentin
parent 5898c80334
commit 59b687cf68

View File

@ -114,7 +114,11 @@ EEPROM_FILE ?= $(BINDIR)/native.eeprom
# set the eeprom file flags only when the periph_eeprom feature is used.
ifneq (,$(filter periph_eeprom,$(FEATURES_USED)))
EEPROM_FILE_FLAGS = --eeprom $(EEPROM_FILE)
TERMFLAGS += $(EEPROM_FILE_FLAGS)
ifeq (native,$(RIOT_TERMINAL))
TERMFLAGS += $(EEPROM_FILE_FLAGS)
else
TERMFLAGS += --process-args '$(EEPROM_FILE_FLAGS)'
endif
endif
VCAN_IFNUM ?= 0