1/*
2 * Copyright (c) 2023 STMicroelectronics
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7/* Do not use the storage-partition of the external qspi-NOR flash */
8/delete-node/ &storage_partition;
9
10&flash0 {
11	partitions {
12		compatible = "fixed-partitions";
13		#address-cells = <1>;
14		#size-cells = <1>;
15
16		/* Reserve 4KiB of flash for storage_partition. */
17		storage_partition: partition@f0000 {
18			label = "storage";
19			reg = <0x000f0000 DT_SIZE_K(4)>;
20		};
21	};
22};
23