Skip to content

Commit

Permalink
add chromeos 9p support
Browse files Browse the repository at this point in the history
  • Loading branch information
taigrr authored and deadprogram committed Jul 15, 2024
1 parent fb91c70 commit f026422
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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", " ")
Expand Down

0 comments on commit f026422

Please sign in to comment.