mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
spiffs: fix issue with args to spiffsgen in make
This commit is contained in:
parent
27a4802f92
commit
746322b7d6
@ -2,21 +2,21 @@ SPIFFSGEN_PY:=$(COMPONENT_PATH)/spiffsgen.py
|
||||
SPIFFSGEN_FLASH_IN_PROJECT=
|
||||
|
||||
ifdef CONFIG_SPIFFS_USE_MAGIC
|
||||
USE_MAGIC = "--use-magic"
|
||||
USE_MAGIC := "--use-magic"
|
||||
else
|
||||
USE_MAGIC = ""
|
||||
USE_MAGIC :=
|
||||
endif
|
||||
|
||||
ifdef CONFIG_SPIFFS_USE_MAGIC_LENGTH
|
||||
USE_MAGIC_LEN = "--use-magic-len"
|
||||
USE_MAGIC_LEN := "--use-magic-len"
|
||||
else
|
||||
USE_MAGIC_LEN = ""
|
||||
USE_MAGIC_LEN :=
|
||||
endif
|
||||
|
||||
ifdef CONFIG_SPIFFS_FOLLOW_SYMLINKS
|
||||
FOLLOW_SYMLINKS = "--follow-symlinks"
|
||||
FOLLOW_SYMLINKS := "--follow-symlinks"
|
||||
else
|
||||
FOLLOW_SYMLINKS = ""
|
||||
FOLLOW_SYMLINKS :=
|
||||
endif
|
||||
|
||||
# spiffs_create_partition_image
|
||||
|
Loading…
Reference in New Issue
Block a user