1/* 2 * Copyright (c) 2023 OS Systems 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7/ { 8 fstab { 9 compatible = "zephyr,fstab"; 10 lfs1: lfs1 { 11 compatible = "zephyr,fstab,littlefs"; 12 read-size = <256>; 13 prog-size = <256>; 14 cache-size = <4096>; 15 lookahead-size = <256>; 16 block-cycles = <512>; 17 partition = <&lfs1_partition>; 18 mount-point = "/lfs1"; 19 automount; 20 }; 21 }; 22}; 23 24&mx25lm51245 { 25 partitions { 26 /delete-node/ partition; 27 28 /* Use the whole flash for the filesystem. */ 29 lfs1_partition: partition@0 { 30 reg = <0x00000000 DT_SIZE_M(64)>; 31 }; 32 }; 33}; 34