summaryrefslogtreecommitdiff
path: root/doc/design/assistant/android.mdwn
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2012-10-04 20:38:39 -0400
committerGravatar Joey Hess <joey@kitenet.net>2012-10-04 20:38:39 -0400
commite7158bcbeaf76df0c2469cba58b6af813cb44d20 (patch)
tree33f6045198e5f8d66b97b3a14ceb996db23ea276 /doc/design/assistant/android.mdwn
parent0af2ae49f949ac7bf18bb22a131833daa3efb096 (diff)
update
Diffstat (limited to 'doc/design/assistant/android.mdwn')
-rw-r--r--doc/design/assistant/android.mdwn39
1 files changed, 0 insertions, 39 deletions
diff --git a/doc/design/assistant/android.mdwn b/doc/design/assistant/android.mdwn
index 65569e403..f81f23223 100644
--- a/doc/design/assistant/android.mdwn
+++ b/doc/design/assistant/android.mdwn
@@ -37,42 +37,3 @@ jobs when low on battery or run flat out when plugged in.
The app should be aware of network status, and avoid expensive data
transfers when not on wifi. This may need to be configurable.
-
-### FAT sucks
-
-The main media partition will use some awful FAT filesystem format from
-1982 that cannot support git-annex's symlinks. (Hopefully it can at least
-handle all of git's filenames.) Possible approaches to this follow.
-
-(May want to consider which of these would make a Windows port easier too.)
-
-#### bare git repo with file browser
-
-Keep only a bare git repo on Android. The app would then need to include
-a file browser to access the files in there, and adding a file would move
-it into the repo.
-
-Not ideal.
-
-Could be improved some by registering git-annex as a file handling app on
-Android, allowing you to "send to" git-annex.
-
-#### implement git smudge filters
-
-See [[todo/smudge]].
-
-Difficult. Would make git-annex generally better.
-
-#### keep files outside bare git repo
-
-Use a bare git repo but don't keep files in `annex/objects`, instead
-leave them outside the repo, and add some local mapping to find them.
-
-Problem: Would leave files unlocked to modification, which might lose a
-version git-annex dependend upon existing on the phone. (Maybe the phone
-would have to be always considered an untrusted repo, which probably
-makes sense anyway.)
-
-#### crazy `LD_PRELOAD` wrapper
-
-Need I say more? (Also, Android's linker may not even support it.)