mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-31 09:21:19 +01:00
examples: Fix incorrect category heading examples: shorten coap folder name static-tests/examples: check subfolders for entries ci/test_native: Adjust to new examples structure examples: adjust makefiles to new structure ci/tests: Fix symlinks to point towards proper examples
15 lines
360 B
Makefile
15 lines
360 B
Makefile
ifneq (,$(filter native native64,$(BOARD)))
|
|
USEMODULE += suit_storage_ram
|
|
USEMODULE += netdev_default
|
|
# Use VFS storage for native
|
|
USEMODULE += suit_storage_vfs
|
|
## Use VFS
|
|
USEMODULE += vfs
|
|
## Use default storage
|
|
USEMODULE += vfs_default
|
|
## Auto-format on mount
|
|
USEMODULE += vfs_auto_format
|
|
else
|
|
USEMODULE += suit_storage_flashwrite
|
|
endif
|