Skip to content

Commit 72b4a14

Browse files
committed
Refactor sub-directories - securestore, direct_access_devicekey, conf
1 parent d05d347 commit 72b4a14

File tree

13 files changed

+9
-9
lines changed

13 files changed

+9
-9
lines changed

storage/kvstore/direct_access_devicekey/DirectAccessDevicekey.cpp renamed to storage/kvstore/direct_access_devicekey/source/DirectAccessDevicekey.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
// ----------------------------------------------------------- Includes -----------------------------------------------------------
1818
#if DEVICE_FLASH
19-
#include "DirectAccessDevicekey.h"
19+
#include "direct_access_devicekey/DirectAccessDevicekey.h"
2020
#include "drivers/FlashIAP.h"
2121
#include <string.h>
2222
#include <stdio.h>

storage/kvstore/conf/filesystem/mbed_lib.json renamed to storage/kvstore/kv_config/filesystem/mbed_lib.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"external_base_address": {
2525
"help": "The default will set start address to address 0",
2626
"value": "0"
27-
},
27+
},
2828
"mount_point": {
2929
"help": "Where to mount the filesystem.",
3030
"value": "kv"

storage/kvstore/conf/filesystem_no_rbp/mbed_lib.json renamed to storage/kvstore/kv_config/filesystem_no_rbp/mbed_lib.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"external_base_address": {
1717
"help": "The default will set start address to address 0",
1818
"value": "0"
19-
},
19+
},
2020
"mount_point": {
2121
"help": "Where to mount the filesystem.",
2222
"value": "kv"

storage/kvstore/conf/kv_config.cpp renamed to storage/kvstore/kv_config/source/kv_config.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,20 +15,20 @@
1515
*/
1616

1717
#include "kv_config.h"
18-
#include "storage/kvstore/include/KVStore.h"
19-
#include "storage/kvstore/kv_map/KVMap.h"
18+
#include "kvstore/KVStore.h"
19+
#include "kvstore/KVMap.h"
2020
#include "blockdevice/BlockDevice.h"
2121
#include "filesystem/FileSystem.h"
22-
#include "storage/kvstore/filesystemstore/FileSystemStore.h"
22+
#include "kvstore/FileSystemStore.h"
2323
#include "blockdevice/SlicingBlockDevice.h"
2424
#include "fat/FATFileSystem.h"
2525
#include "littlefs/LittleFileSystem.h"
26-
#include "storage/kvstore/tdbstore/TDBStore.h"
26+
#include "kvstore/TDBStore.h"
2727
#include "mbed_error.h"
2828
#include "drivers/FlashIAP.h"
2929
#include "blockdevice/FlashSimBlockDevice.h"
3030
#include "mbed_trace.h"
31-
#include "storage/kvstore/securestore/SecureStore.h"
31+
#include "securestore/SecureStore.h"
3232
#define TRACE_GROUP "KVCFG"
3333

3434
#if COMPONENT_FLASHIAP

0 commit comments

Comments
 (0)