Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorあく <alleteam@gmail.com>2021-05-11 11:29:44 +0300
committerGitHub <noreply@github.com>2021-05-11 11:29:44 +0300
commitaa24484b99495bd9ce5447b1c4e25efbe3c86360 (patch)
tree9b07ae10c9654552e301cccb705a79b31afb4bba /applications/applications.mk
parent29d10e1b0a8b37f6da93cbcee23b37514a036d23 (diff)
[FL-977] Internal Storage (#455)
* Add littlefs submodule * Furi: add mutex in logging, fix issues with corrupted printf * ApiHal: disable debug traces in ble glue * App-loader: more logs * Passport: fix invalid DolphinState usage * ApiHal, linker script: flash API is now aware of free space, complete abstraction layer for storage * Internal Storage: littlefs based storage services with key value API. Migrate dolphin state to new storage API.
Diffstat (limited to 'applications/applications.mk')
-rw-r--r--applications/applications.mk8
1 files changed, 7 insertions, 1 deletions
diff --git a/applications/applications.mk b/applications/applications.mk
index 028f6f5d..c2bc8f29 100644
--- a/applications/applications.mk
+++ b/applications/applications.mk
@@ -17,6 +17,7 @@ SRV_POWER = 1
SRV_BT = 1
SRV_CLI = 1
SRV_SD_FILESYSTEM = 1
+SRV_INTERNAL_STORAGE = 1
SRV_DOLPHIN = 1
# Main Apps
@@ -288,11 +289,16 @@ ifeq ($(SRV_GUI), 1)
CFLAGS += -DSRV_GUI
endif
-SRV_SD_FILESYSTEM ?= 0
+SRV_SD_FILESYSTEM ?= 0
ifeq ($(SRV_SD_FILESYSTEM), 1)
CFLAGS += -DSRV_SD_FILESYSTEM
endif
+SRV_INTERNAL_STORAGE ?= 0
+ifeq ($(SRV_INTERNAL_STORAGE), 1)
+CFLAGS += -DSRV_INTERNAL_STORAGE
+endif
+
SRV_INPUT ?= 0
ifeq ($(SRV_INPUT), 1)
CFLAGS += -DSRV_INPUT