1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-08-08 14:38:30 -04:00

freebsd: add initial support for running on FreeBSD, excluding Bluez,

ppd, and some things. Add a simple wpa_supplicant backend
This commit is contained in:
bbedward
2026-07-19 10:31:48 -04:00
parent 069df80b22
commit 90291bd627
46 changed files with 3168 additions and 209 deletions
+29
View File
@@ -0,0 +1,29 @@
package trash
import "golang.org/x/sys/unix"
// readMountPoints returns user-visible mount points via getfsstat(2),
// skipping pseudo and system filesystems.
func readMountPoints() []string {
n, err := unix.Getfsstat(nil, unix.MNT_NOWAIT)
if err != nil || n == 0 {
return nil
}
stats := make([]unix.Statfs_t, n)
n, err = unix.Getfsstat(stats, unix.MNT_NOWAIT)
if err != nil {
return nil
}
var out []string
seen := map[string]bool{}
for _, st := range stats[:n] {
mp := unix.ByteSliceToString(st.Mntonname[:])
if mp == "" || skipMountPoint(mp, seen) {
continue
}
seen[mp] = true
out = append(out, mp)
}
return out
}