1/*
2 * Copyright (c) 2022 STMicroelectronics
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7/delete-node/ &storage_partition;
8
9&flash0 {
10	partitions {
11		/* Set 12KB of storage at the end of 1st half of flash (dual core constraints) */
12		storage_partition: partition@7d000 {
13			label = "storage";
14			reg = <0x0007d000 DT_SIZE_K(12)>;
15		};
16	};
17};
18