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
11		ext2fs1: ext2fs1 {
12			compatible = "zephyr,fstab,ext2";
13			automount;
14			disk-access;
15			disk-name = "RAM";
16			mount-point = "/ext2";
17		};
18	};
19
20	ramdisk0 {
21		compatible = "zephyr,ram-disk";
22		disk-name = "RAM";
23		sector-size = <512>;
24		sector-count = <128>;
25	};
26};
27