1/*
2 * Copyright (c) 2025 Arch-Embedded B.V.
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7/ {
8	fstab {
9		compatible = "zephyr,fstab";
10		ext2fs1: ext2fs1 {
11			compatible = "zephyr,fstab,ext2";
12			automount;
13			disk-access;
14			disk-name = "RAM";
15			mount-point = "/ext2";
16		};
17	};
18
19	ramdisk0 {
20		compatible = "zephyr,ram-disk";
21		disk-name = "RAM";
22		sector-size = <512>;
23		sector-count = <128>;
24	};
25};
26