Skip to content

Commit

Permalink
Merge pull request #1120 from mkroening/uhyve-root
Browse files Browse the repository at this point in the history
feat: align Uhyve mount path to virtiofsd
  • Loading branch information
mkroening authored Apr 6, 2024
2 parents 6a89761 + 83e21be commit 3794a5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fs/uhyve.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 3794a5a

Please sign in to comment.