blob: c34ebb8fbcab977a54434e6b09c2d5ea23940cc0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
export TEST_DEV=source:/mnt/src/test
export TEST_DIR=/mnt/test
export SCRATCH_DEV=source:/mnt/src/scratch
export SCRATCH_MNT=/mnt/scratch
export FSTYP=fuse
export FUSE_SUBTYP=.passthrough
export MOUNT_OPTIONS=""
export TEST_FS_MOUNT_OPTS=""
# extra binary options, such as '--direct-io' or '--nopassthrough', etc
export EXTRA_BIN_OPTIONS=""
# If PASSTHROUGH_PATH is unset, the mount helper is going to look
# for the binary '${FUSE_SUBTYP}', though omitting the leading dot '.'.
# Example:
# with FUSE_SUBTYP=".passthrough", the mount helper is called
# 'mount.fuse.passthrough' and that would try to run
# 'passthrough'.
# export PASSTHROUGH_PATH=<path-to-libfuse-build>/example/passthrough_hp
|