From f026422b04573f6eab49fd6bf8156a217efac1f7 Mon Sep 17 00:00:00 2001 From: Tai Groot Date: Sun, 14 Jul 2024 10:54:14 -0700 Subject: [PATCH] add chromeos 9p support --- main.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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", " ")