1/*
2 * Copyright (c) 2022 STMicroelectronics
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7
8/delete-node/ &storage_partition;
9
10/ {
11	chosen {
12		zephyr,flash-controller = &flash0;
13	};
14};
15
16&flash0 {
17	partitions {
18		/* Set 6Kb of storage at the end of the 1Mb of flash */
19		storage_partition: partition@fe800 {
20			label = "storage";
21			reg = <0x000fe800 DT_SIZE_K(6)>;
22		};
23	};
24};
25