Adam Knight
Adam Knight
In your example, the media is still stored inside the container at `/assets`. Every single container where I use my media share I'm able to mount it at `/media` inside...
- Sonarr - Radarr - Lidarr - Readarr - Mylar - Headphones - Lazy Librarian - etc. They all let you set a library base path and then calculate paths...
Well, when the source is at the root of a drive, at least. Might want to include caveats of what works and doesn't in the README.
I did not. The problem is that the links cannot be siblings or descendants of each other. I'm going to go ahead and call this the incest rule. Links of...
Looking at master@af9a71f: ./tools/cppfind: cpp is the wrong tool. use "cc -E ${FUSE_CFLAGS} -" instead. The final dash to use stdin is required. The stat structure is different on OS...
After fixing those: * ./src/fs_fallocate_osx.icpp: fallocate moved to unistd.h. * Type size differences (dev_t is 32 bits; needs to be in a 64 bit container before the shift): ``` src/fs_inode.hpp:37:31:...
I don't think futimesat is in there at all these days. Running Sierra: $ grep -ri futimesat /usr/include /usr/include/bsm/audit_kevents.h:#define AUE_FUTIMESAT 285 Probably not what you're after. 🙂 If it was...
That said, I faked a version with fcntl and F_GETPATH. 🙂 I'll try to get a patch up tonight. I'm not sure I'll have it organized like the rest of...
I'd advise updating it on this branch before merge. One thing I'm noticing with the changes I made is that file creation is broken due to a failure to resolve...
Found the source of the descriptor problem. OS X doesn't like AT_FDCWD in fcntl, but has no problem with opendir(".")/dirfd() to get the same value. ಠ_ಠI'll poke around some...