1/*
2 * Copyright (c) 2019 Nordic Semiconductor ASA
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7&flashcontroller0 {
8	reg = <0x00000000 DT_SIZE_K(4096)>;
9};
10
11&flash0 {
12	reg = <0x00000000 DT_SIZE_K(4096)>;
13	partitions {
14		compatible = "fixed-partitions";
15
16		partition@0 {
17			label = "littlefs_dev";
18			reg = <0x00000000 0x00010000>;
19		};
20	};
21};
22