diff --git a/main.go b/main.go index 66a172133..9af0b0fc5 100644 --- a/main.go +++ b/main.go @@ -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", " ")