1/*
2 * Copyright (c) 2024 Renesas Electronics Corporation
3 * SPDX-License-Identifier: Apache-2.0
4 */
5
6/delete-node/ &storage_partition;
7
8&flash0 {
9	partitions {
10		compatible = "fixed-partitions";
11		#address-cells = <1>;
12		#size-cells = <1>;
13
14		/* Set the 2 last block of storage. */
15		storage_partition: partition@1E8000 {
16			label = "storage";
17			reg = <0x1E8000 DT_SIZE_K(64)>;
18		};
19	};
20};
21