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 /* This is the littlefs v1 file system pre-installed 16 * by Particle. 17 */ 18 littlefs_partition: partition@0 { 19 label = "littlefs"; 20 reg = <0x00000000 0x00200000>; 21 }; 22 /* A 16 KiBy partition to use for the test. */ 23 storage_partition: partition@200000 { 24 label = "storage"; 25 reg = <0x00200000 0x00004000>; 26 }; 27 /* A bigger partition for something else. */ 28 partition@204000 { 29 label = "scratch"; 30 reg = <0x00204000 0x001fc000>; 31 }; 32 }; 33}; 34