forked from Elara6331/itd
yannickulrich
77680704e1
This exposes the watches' file system over FUSE. This way, we can access files on the watch without having to go through `itctl` or developing 3rd party tools. **Features** - [x] read/write access to the file system - [x] read access to momentary sensor data - [x] live access to sensor data (i.e. WatchMotion rather than Motion) - [x] configuration of mount point Co-authored-by: Yannick Ulrich <yannick.ulrich@durham.ac.uk> Reviewed-on: https://gitea.arsenm.dev/Arsen6331/itd/pulls/55 Co-authored-by: yannickulrich <yannick.ulrich@protonmail.com> Co-committed-by: yannickulrich <yannick.ulrich@protonmail.com>
16 lines
430 B
Go
16 lines
430 B
Go
package fusefs
|
|
|
|
import (
|
|
_ "unsafe"
|
|
"github.com/hanwen/go-fuse/v2/fuse"
|
|
)
|
|
|
|
func Unmount(mountPoint string) error {
|
|
return unmount(mountPoint, &fuse.MountOptions{DirectMount: false})
|
|
}
|
|
|
|
// Unfortunately, the FUSE library does not export its unmount function,
|
|
// so this is required until that changes
|
|
//go:linkname unmount github.com/hanwen/go-fuse/v2/fuse.unmount
|
|
func unmount(mountPoint string, opts *fuse.MountOptions) error
|