1/*
2 * Copyright (c) 2023 Google Inc
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7&flash0 {
8	partitions {
9		compatible = "fixed-partitions";
10		#address-cells = <1>;
11		#size-cells = <1>;
12
13		/* Reserve last 4KiB of flash for storage_partition. */
14		storage_partition: partition@ff000 {
15			label = "storage";
16			reg = <0x000ff000 DT_SIZE_K(4)>;
17		};
18	};
19};
20