Skip to content

Commit f026422

Browse files
taigrrdeadprogram
authored andcommitted
add chromeos 9p support
1 parent fb91c70 commit f026422

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

main.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -1077,7 +1077,8 @@ func findFATMounts(options *compileopts.Options) ([]mountPoint, error) {
10771077
continue
10781078
}
10791079
fstype := fields[2]
1080-
if fstype != "vfat" {
1080+
// chromeos bind mounts use 9p
1081+
if !(fstype == "vfat" || fstype == "9p") {
10811082
continue
10821083
}
10831084
fspath := strings.ReplaceAll(fields[1], "\\040", " ")

0 commit comments

Comments
 (0)