1/* 2 * Copyright (c) 2024 STMicroelectronics 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 = <32>; 13 prog-size = <32>; 14 cache-size = <256>; 15 lookahead-size = <64>; 16 block-cycles = <512>; 17 partition = <&storage_partition>; 18 mount-point = "/lfs1"; 19 }; 20 }; 21}; 22