diff options
author | Omar Rizwan <omar.rizwan@gmail.com> | 2018-11-22 02:52:54 -0800 |
---|---|---|
committer | Omar Rizwan <omar.rizwan@gmail.com> | 2018-11-22 02:52:54 -0800 |
commit | b6f46e166da28e67adc0bf6f1e9a0a380434e7ce (patch) | |
tree | 7510b4ba4c8407e25b32134558fc3affa75b2292 /fs/Makefile | |
parent | 66041e333c10387a18990f9af20d9c4daec5320e (diff) |
Checkpoint. Just access JSON directly in FUSE handlers.
Diffstat (limited to 'fs/Makefile')
-rw-r--r-- | fs/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/fs/Makefile b/fs/Makefile index a854880..806daa8 100644 --- a/fs/Makefile +++ b/fs/Makefile @@ -28,3 +28,12 @@ hello: hello.c clean: rm -f $(TARGETS) *.o rm -rf *.dSYM + +remount: unmount mount + +unmount: + killall -9 hello || true + diskutil unmount force mnt || true + +mount: hello + ./hello -s -f mnt |