30 lines
483 B
Plaintext
30 lines
483 B
Plaintext
/*
|
|
* Copyright (c) 2020 Teslabs Engineering S.L.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/delete-node/ &storage_partition;
|
|
|
|
&gd25q16 {
|
|
partitions {
|
|
compatible = "fixed-partitions";
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
storage_partition: partition@0 {
|
|
label = "storage";
|
|
reg = <0x00000000 0x00200000>;
|
|
};
|
|
};
|
|
};
|
|
|
|
/ {
|
|
msc_disk0 {
|
|
compatible = "zephyr,flash-disk";
|
|
partition = <&storage_partition>;
|
|
disk-name = "NAND";
|
|
cache-size = <4096>;
|
|
};
|
|
};
|