1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-08-07 22:18: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
+7
View File
@@ -0,0 +1,7 @@
package shm
import "golang.org/x/sys/unix"
func CreateAnonFd(name string) (int, error) {
return unix.MemfdCreate(name, 0)
}