21 lines
325 B
Plaintext
21 lines
325 B
Plaintext
|
/*
|
||
|
* 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>;
|
||
|
|
||
|
partition@0 {
|
||
|
label = "storage";
|
||
|
reg = <0x00000000 0x00010000>;
|
||
|
};
|
||
|
};
|
||
|
};
|