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