1/* 2 * Copyright (c) 2024 STMicroelectronics 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7/delete-node/ &storage_partition; 8 9&quadspi { 10 status = "disabled"; 11}; 12 13&flash0 { 14 partitions { 15 compatible = "fixed-partitions"; 16 #address-cells = <1>; 17 #size-cells = <1>; 18 19 /* Reserve 4KiB of flash for storage_partition. */ 20 storage_partition: partition@1f000 { 21 label = "storage"; 22 reg = <0x0001f000 DT_SIZE_K(4)>; 23 }; 24 }; 25}; 26