1/*
2 * Copyright (c) 2022, STMicroelectronics
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6 /{
7	chosen {
8		zephyr,code-partition = &slot0_ns_partition;
9	};
10};
11
12&flash0 {
13	partitions {
14	/delete-node/ slot0_partition;
15		/* Non-secure image primary slot */
16		slot0_ns_partition: partition@98000 {
17			label = "image-0-nonsecure";
18			reg = <0x00098000 DT_SIZE_K(512)>;
19		};
20	};
21};
22