1/*
2 * Copyright (c) 2024 STMicroelectronics
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7/delete-node/ &storage_partition;
8
9&flash0 {
10	partitions {
11		partition@ff800 {
12			reg = <0x000ff800 DT_SIZE_K(2)>;
13		};
14	};
15};
16
17/ {
18	fstab {
19		compatible = "zephyr,fstab";
20		lfs1: lfs1 {
21			compatible = "zephyr,fstab,littlefs";
22			read-size = <32>;
23			prog-size = <32>;
24			cache-size = <256>;
25			lookahead-size = <64>;
26			block-cycles = <512>;
27			partition = <&storage_partition>;
28			mount-point = "/lfs1";
29		};
30	};
31};
32
33&mt25ql512ab1 {
34	partitions {
35		storage_partition: partition@0 {
36			reg = <0x0 DT_SIZE_M(64)>;
37			label = "storage";
38		};
39	};
40};
41