Improve install-to-RAM verification for ISO boots

This commit is contained in:
Mikhail Chusavitin
2026-04-07 20:21:06 +03:00
parent 531d1ca366
commit 0a4bb596f6
4 changed files with 68 additions and 10 deletions

View File

@@ -7,3 +7,7 @@ import "errors"
func loopChangeFD(loopDev, newFile string) error {
return errors.New("LOOP_CHANGE_FD not available on this platform")
}
func bindMount(src, dst string) error {
return errors.New("bind mount not available on this platform")
}