add chromeos 9p support

This commit is contained in:
Tai Groot
2024-07-14 10:54:14 -07:00
committed by Ron Evans
parent fb91c7097f
commit f026422b04
+2 -1
View File
@@ -1077,7 +1077,8 @@ func findFATMounts(options *compileopts.Options) ([]mountPoint, error) {
continue
}
fstype := fields[2]
if fstype != "vfat" {
// chromeos bind mounts use 9p
if !(fstype == "vfat" || fstype == "9p") {
continue
}
fspath := strings.ReplaceAll(fields[1], "\\040", " ")