git: https://android.googlesource.com/kernel/common branch: android-4.9 commit: 03fcc2fe71308c2d164b4e6cbfc738c63e670444
15 lines
166 B
Bash
Executable File
15 lines
166 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if test -d "./mnt" ; then
|
|
fusermount -u ./mnt
|
|
rmdir ./mnt
|
|
fi
|
|
|
|
set -e
|
|
|
|
mkdir mnt
|
|
./fuse_mnt ./mnt
|
|
./fuse_test ./mnt/memfd
|
|
fusermount -u ./mnt
|
|
rmdir ./mnt
|