From 83e21be8b24083e1c0e360aa88bf86feb76821ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Kr=C3=B6ning?= Date: Fri, 5 Apr 2024 17:39:21 +0200 Subject: [PATCH] feat: align Uhyve mount path to virtiofsd MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Martin Kröning --- src/fs/uhyve.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fs/uhyve.rs b/src/fs/uhyve.rs index 213a85ca55..0c88394b77 100644 --- a/src/fs/uhyve.rs +++ b/src/fs/uhyve.rs @@ -321,7 +321,7 @@ impl VfsNode for UhyveDirectory { pub(crate) fn init() { info!("Try to initialize uhyve filesystem"); if is_uhyve() { - let mount_point = hermit_var_or!("UHYVE_MOUNT", "/host").to_string(); + let mount_point = hermit_var_or!("UHYVE_MOUNT", "/root").to_string(); info!("Mounting virtio-fs at {}", mount_point); fs::FILESYSTEM .get()