1/*
2 * Copyright (c) 2023 Nordic Semiconductor ASA
3 * Copyright (c) 2025 Muhammad Waleed Badar
4 *
5 * SPDX-License-Identifier: Apache-2.0
6 */
7
8/delete-node/ &storage_partition;
9
10&flash0 {
11	partitions {
12		compatible = "fixed-partitions";
13		#address-cells = <1>;
14		#size-cells = <1>;
15
16		storage_partition: partition@f0000 {
17			label = "storage";
18			reg = <0x000f0000 DT_SIZE_K(64)>;
19		};
20	};
21};
22
23/ {
24	msc_disk0 {
25		status = "okay";
26		compatible = "zephyr,flash-disk";
27		partition = <&storage_partition>;
28		disk-name = "SD";
29		cache-size = <4096>;
30	};
31};
32