1/*
2 * Copyright (c) 2021 Nordic Semiconductor ASA
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			read-size = <16>;
17			prog-size = <16>;
18			cache-size = <64>;
19			lookahead-size = <32>;
20			block-cycles = <512>;
21		};
22	};
23};
24
25&mx25r64 {
26	partitions {
27		compatible = "fixed-partitions";
28		#address-cells = <1>;
29		#size-cells = <1>;
30
31		lfs1_part: partition@0 {
32			label = "storage";
33			reg = <0x00000000 0x00010000>;
34		};
35	};
36};
37