1/*
2 * Copyright 2023 NXP
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&mx25l6433f {
26	partitions {
27		compatible = "fixed-partitions";
28		#address-cells = <1>;
29		#size-cells = <1>;
30		lfs1_part: partition@fc000 {
31			label = "storage";
32			reg = <0x000fc000 0x00010000>;
33		};
34	};
35};
36