2020-04-19 11:58:08 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2019 Peter Bigot Consulting, LLC
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
/delete-node/ &storage_partition;
|
|
|
|
|
|
|
|
&mx25r64 {
|
|
|
|
partitions {
|
|
|
|
compatible = "fixed-partitions";
|
|
|
|
#address-cells = <1>;
|
|
|
|
#size-cells = <1>;
|
|
|
|
|
2022-07-22 23:06:37 +08:00
|
|
|
storage_partition: partition@0 {
|
2020-04-19 11:58:08 +08:00
|
|
|
label = "storage";
|
2020-11-24 21:06:37 +08:00
|
|
|
reg = <0x00000000 0x00020000>;
|
2020-04-19 11:58:08 +08:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2022-10-19 18:49:44 +08:00
|
|
|
|
|
|
|
/ {
|
|
|
|
msc_disk0 {
|
|
|
|
compatible = "zephyr,flash-disk";
|
|
|
|
partition = <&storage_partition>;
|
|
|
|
disk-name = "NAND";
|
|
|
|
cache-size = <4096>;
|
|
|
|
};
|
|
|
|
};
|