1/* 2 * Copyright (c) 2019 Peter Bigot Consulting, LLC 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7/delete-node/ &storage_partition; 8 9&mx25l32 { 10 partitions { 11 compatible = "fixed-partitions"; 12 #address-cells = <1>; 13 #size-cells = <1>; 14 15 littlefs_partition: partition@0 { 16 label = "littlefs"; 17 reg = <0x00000000 0x00200000>; 18 }; 19 storage_partition: partition@200000 { 20 label = "storage"; 21 reg = <0x00200000 0x00004000>; 22 }; 23 partition@220000 { 24 label = "scratch2"; 25 reg = <0x00204000 0x001fc000>; 26 }; 27 }; 28}; 29