mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
Koen Zandberg
7742750abd
This commit introduces a common storage backend for SUIT manifest payloads. Different backends can be compiled into a single firmware. Degending on the component name in the SUIT manifest, a storage backend is selected by the parser.
10 lines
182 B
Makefile
10 lines
182 B
Makefile
ifneq (,$(filter suit_transport_%,$(USEMODULE)))
|
|
DIRS += transport
|
|
endif
|
|
|
|
ifneq (,$(filter suit_storage_%,$(USEMODULE)))
|
|
DIRS += storage
|
|
endif
|
|
|
|
include $(RIOTBASE)/Makefile.base
|