1/*
2 * Copyright (c) 2021 Linumiz
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7/delete-node/ &storage_partition;
8
9/ {
10	fstab {
11		compatible = "zephyr,fstab";
12		lfs1: lfs1 {
13			compatible = "zephyr,fstab,littlefs";
14			mount-point = "/lfs1";
15			partition = <&lfs1_part>;
16			automount;
17			read-size = <16>;
18			prog-size = <16>;
19			cache-size = <64>;
20			lookahead-size = <32>;
21			block-cycles = <512>;
22		};
23	};
24};
25
26&mx25r64 {
27	partitions {
28		compatible = "fixed-partitions";
29		#address-cells = <1>;
30		#size-cells = <1>;
31
32		lfs1_part: partition@0 {
33			label = "storage";
34			reg = <0x00000000 0x00010000>;
35		};
36	};
37};
38