38 lines
618 B
Plaintext
38 lines
618 B
Plaintext
/*
|
|
* Copyright (c) 2024 Linumiz
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/delete-node/ &storage_partition;
|
|
|
|
/ {
|
|
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>;
|
|
};
|
|
};
|
|
};
|
|
|
|
&is25wp064a {
|
|
partitions {
|
|
compatible = "fixed-partitions";
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
lfs1_part: partition@0 {
|
|
label = "storage";
|
|
reg = <0x00000000 DT_SIZE_M(8)>;
|
|
};
|
|
};
|
|
};
|