diff options
author | Tai Groot <[email protected]> | 2024-07-14 10:54:14 -0700 |
---|---|---|
committer | Ron Evans <[email protected]> | 2024-07-15 10:13:43 +0200 |
commit | f026422b04573f6eab49fd6bf8156a217efac1f7 (patch) | |
tree | 9d8ea33ea29146e9cb3fc7a036140a354808d7b3 /main.go | |
parent | fb91c7097f4fdfc49cd2819753fb300cb31ce6b5 (diff) | |
download | tinygo-f026422b04573f6eab49fd6bf8156a217efac1f7.tar.gz tinygo-f026422b04573f6eab49fd6bf8156a217efac1f7.zip |
add chromeos 9p support
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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", " ") |