[Concept,03/34] sandbox: Add hostfs node to sandbox.dtsi

Message ID 20260403140523.1998228-4-sjg@u-boot.org
State New
Headers
Series Add a virtual filesystem (VFS) layer to U-Boot |

Commit Message

Simon Glass April 3, 2026, 2:04 p.m. UTC
  From: Simon Glass <sjg@chromium.org>

Add the hostfs device tree node to sandbox.dtsi so that the sandbox
host filesystem is available in both sandbox and sandbox64 when running
with -D (normal mode), not just with -T (test mode).

Signed-off-by: Simon Glass <sjg@chromium.org>
---

 arch/sandbox/dts/sandbox.dtsi | 4 ++++
 1 file changed, 4 insertions(+)
  

Patch

diff --git a/arch/sandbox/dts/sandbox.dtsi b/arch/sandbox/dts/sandbox.dtsi
index e5d6be633fb..0bbbad96738 100644
--- a/arch/sandbox/dts/sandbox.dtsi
+++ b/arch/sandbox/dts/sandbox.dtsi
@@ -515,4 +515,8 @@ 
 	keyboard-controller {
 		bootph-some-ram;
 	};
+
+	hostfs {
+		compatible = "sandbox,fs";
+	};
 };