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