Major rework of the Virtual File System layer covering path resolution, I/O modes, device abstractions, symlinks, and boot mount infrastructure. #58

Merged
admin merged 4 commits from feature/vfs_improvements into develop 2026-03-08 20:16:46 +00:00
3 changed files with 126 additions and 85 deletions
Showing only changes of commit 2cf879c4b9 - Show all commits
+13 -1
View File
@@ -395,7 +395,19 @@ Mounts a storage volume at the given VFS path. The path must be an existing virt
procedure auto_mount_volumes();
```
Automatically mounts all detected volumes under `/disk/` with auto-generated names.
Automatically mounts all detected volumes under `/disk/` with auto-generated names (`/disk/vol0`, `/disk/vol1`, ...).
After mounting all volumes, reads `MOUNT.ASR` from the root of the boot volume (ISO). Each line in the file is a command:
```
mnt {device}/boot /boot
mnt {device}/sys /sys
```
- `mnt <source> <target>` — creates a symlink from `<target>` to `<source>`.
- `{device}` is replaced with the boot volume's mount path (e.g. `/disk/vol2`).
This replaces the old `asr.mnt` persistent-mount mechanism.
---
Generated
+2
View File
@@ -0,0 +1,2 @@
mnt {device}/boot /boot
mnt {device}/sys /sys
File diff suppressed because it is too large Load Diff