24 lines
414 B
Plaintext
24 lines
414 B
Plaintext
/*
|
|
* Copyright (c) 2021 Nordic Semiconductor ASA
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/delete-node/ &lfs1;
|
|
/ {
|
|
fstab {
|
|
compatible = "zephyr,fstab";
|
|
lfs1: lfs1 {
|
|
compatible = "zephyr,fstab,littlefs";
|
|
mount-point = "/lfs1";
|
|
partition = <&lfs1_part>;
|
|
automount;
|
|
read-size = <16>;
|
|
prog-size = <16>;
|
|
cache-size = <64>;
|
|
lookahead-size = <32>;
|
|
block-cycles = <512>;
|
|
};
|
|
};
|
|
};
|