diff options
author | Joey Hess <joey@kitenet.net> | 2012-09-10 22:04:33 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2012-09-10 22:04:33 -0400 |
commit | e588383e09259ddb06a661ce73a583b6e7257ce6 (patch) | |
tree | 8fbe7a47f839aaade81a220d98ef11acfb85d657 | |
parent | 4dc736a3f1547a97ebf0f8fdad841b65798dc205 (diff) | |
parent | a33aac4d4c30f65eb581d92ab6e39b147c236474 (diff) |
Merge branch 'master' of ssh://git-annex.branchable.com
8 files changed, 108 insertions, 0 deletions
diff --git a/doc/bugs/Large_unannex_operations_result_in_stale_symlinks_and_data_loss/comment_5_6a318edfe45c80343d017dc7b4837acb._comment b/doc/bugs/Large_unannex_operations_result_in_stale_symlinks_and_data_loss/comment_5_6a318edfe45c80343d017dc7b4837acb._comment new file mode 100644 index 000000000..fbc30f17b --- /dev/null +++ b/doc/bugs/Large_unannex_operations_result_in_stale_symlinks_and_data_loss/comment_5_6a318edfe45c80343d017dc7b4837acb._comment @@ -0,0 +1,8 @@ +[[!comment format=mdwn + username="https://www.google.com/accounts/o8/id?id=AItOawlup4hyZo4eCjF8T85vfRXMKBxGj9bMdl0" + nickname="Ben" + subject="comment 5" + date="2012-09-09T20:47:04Z" + content=""" +That sounds far more reasonable. +"""]] diff --git a/doc/design/assistant/android/comment_2_3dd386ac1b757c73d14f14377b9eedd4._comment b/doc/design/assistant/android/comment_2_3dd386ac1b757c73d14f14377b9eedd4._comment new file mode 100644 index 000000000..3ff46ca06 --- /dev/null +++ b/doc/design/assistant/android/comment_2_3dd386ac1b757c73d14f14377b9eedd4._comment @@ -0,0 +1,8 @@ +[[!comment format=mdwn + username="https://www.google.com/accounts/o8/id?id=AItOawlhIMPGF1E0XEJKV6j6-PFzAxA1-nIlydo" + nickname="Bernhard" + subject="re @ gdr-go2 " + date="2012-09-10T19:34:00Z" + content=""" +`mount` requires root and you'll have still the 4gb limit for your image by FAT. some phones (e.g. galaxy nexus) already use `ext4` for `/sdcard` though. +"""]] diff --git a/doc/design/assistant/android/comment_3_5dca47a4599d6e88d19193701c5a571b._comment b/doc/design/assistant/android/comment_3_5dca47a4599d6e88d19193701c5a571b._comment new file mode 100644 index 000000000..8f60efdb0 --- /dev/null +++ b/doc/design/assistant/android/comment_3_5dca47a4599d6e88d19193701c5a571b._comment @@ -0,0 +1,46 @@ +[[!comment format=mdwn + username="https://www.google.com/accounts/o8/id?id=AItOawlhIMPGF1E0XEJKV6j6-PFzAxA1-nIlydo" + nickname="Bernhard" + subject="GHC and Android" + date="2012-09-10T21:58:28Z" + content=""" +I played around a bit with GHC and Android today. It isn't really a result, but maybe useful for someone out there. + +I have a Debian `chroot` environment on my Android device (howto: <http://www.saurik.com/id/10/>). In the Debian box: + + $ cat arm.hs + main = do + putStrLn \"Hello ARM\" + $ ghc -static --make arm.hs + Linking arm ... + $ ldd arm + libgmp.so.3 => /usr/lib/libgmp.so.3 (0x40233000) + libm.so.6 => /lib/libm.so.6 (0x400c8000) + libffi.so.5 => /usr/lib/libffi.so.5 (0x401b1000) + librt.so.1 => /lib/librt.so.1 (0x40171000) + libdl.so.2 => /lib/libdl.so.2 (0x40180000) + libgcc_s.so.1 => /lib/libgcc_s.so.1 (0x4018b000) + libc.so.6 => /lib/libc.so.6 (0x40282000) + /lib/ld-linux.so.3 (0x400a2000) + libpthread.so.0 => /lib/libpthread.so.0 (0x4007e000) + +well, that isn't really static. tell the linker to build a static binary (those are arguments to `ld`): + + $ ghc --make arm.hs -optl-static -optl-pthread + [1 of 1] Compiling Main ( arm.hs, arm.o ) + Linking arm ... + $ file arm + arm: ELF 32-bit LSB executable, ARM, version 1 (SYSV), statically linked, for GNU/Linux 2.6.18, not stripped + $ ldd arm + not a dynamic executable + $ ./arm + Hello ARM + +now, get this (quite big) binary into the normal android environment, using `adb`, `SSHDroid` or whatever: + + % cd /data/local/tmp # assuming destination of file transfer + % ./arm + arm: mkTextEncoding: invalid argument (Invalid argument) + +looking in the source of `System.IO` it seems like an `iconv` issue. So, there's still some dynamic dependency in there... *sigh* +"""]] diff --git a/doc/design/assistant/blog/day_76__pairing/comment_5_11f332fe2050d8c1416e71f9e85ba280._comment b/doc/design/assistant/blog/day_76__pairing/comment_5_11f332fe2050d8c1416e71f9e85ba280._comment new file mode 100644 index 000000000..5c93d3d3e --- /dev/null +++ b/doc/design/assistant/blog/day_76__pairing/comment_5_11f332fe2050d8c1416e71f9e85ba280._comment @@ -0,0 +1,8 @@ +[[!comment format=mdwn + username="https://www.google.com/accounts/o8/id?id=AItOawmubB1Sj2rwFoVdZYvGV0ACaQUJQyiJXJI" + nickname="Paul" + subject="comment 5" + date="2012-09-10T14:54:17Z" + content=""" +chunksize=2m was defined. I tried again, and the transfers again didn't seem to start. Then I did `killall git-annex`, cleaned the files from the box.com account, and tried again. This time it seems to be working, but the webapp isn't showing progress. Memory usage also stays reasonable, and doesn't seem to grow. Maybe it was just bad handling of unexpected repository state? +"""]] diff --git a/doc/design/assistant/blog/day_76__pairing/comment_6_973aeb656b78eca97474ea1a3f5b57b7._comment b/doc/design/assistant/blog/day_76__pairing/comment_6_973aeb656b78eca97474ea1a3f5b57b7._comment new file mode 100644 index 000000000..120a87845 --- /dev/null +++ b/doc/design/assistant/blog/day_76__pairing/comment_6_973aeb656b78eca97474ea1a3f5b57b7._comment @@ -0,0 +1,12 @@ +[[!comment format=mdwn + username="http://joeyh.name/" + ip="4.153.8.30" + subject="comment 6" + date="2012-09-10T17:31:20Z" + content=""" +Re transfer progress not being shown, that's expected as upload progress displays are not yet implemented in the webapp. + +I can't think of a way git-annex would care what was in your box.com repo. It just makes directories as needed, and will overwrite existing files in the rare case they already exist. And ignore any non-git-annex files. + +Are you sure it was git-annex's memory use blowing up, and not the memory use of the davfs2 daemon? +"""]] diff --git a/doc/design/assistant/blog/day_76__pairing/comment_7_03d2b3343f34377a4d6171e06b7609f6._comment b/doc/design/assistant/blog/day_76__pairing/comment_7_03d2b3343f34377a4d6171e06b7609f6._comment new file mode 100644 index 000000000..5aea18576 --- /dev/null +++ b/doc/design/assistant/blog/day_76__pairing/comment_7_03d2b3343f34377a4d6171e06b7609f6._comment @@ -0,0 +1,8 @@ +[[!comment format=mdwn + username="https://www.google.com/accounts/o8/id?id=AItOawmubB1Sj2rwFoVdZYvGV0ACaQUJQyiJXJI" + nickname="Paul" + subject="comment 7" + date="2012-09-10T17:35:48Z" + content=""" +Positive. I was grepping for git-annex from ps for the mem usage. +"""]] diff --git a/doc/design/assistant/deltas/comment_1_bdb477af913c9782c0e8509e6b294b6e._comment b/doc/design/assistant/deltas/comment_1_bdb477af913c9782c0e8509e6b294b6e._comment new file mode 100644 index 000000000..3361de4bf --- /dev/null +++ b/doc/design/assistant/deltas/comment_1_bdb477af913c9782c0e8509e6b294b6e._comment @@ -0,0 +1,8 @@ +[[!comment format=mdwn + username="https://www.google.com/accounts/o8/id?id=AItOawkfHTPsiAcHEEN7Xl7WxiZmYq-vX7azxFY" + nickname="Vincent" + subject="zsync?" + date="2012-09-10T12:35:45Z" + content=""" +zsync.moria.org.uk may have broken some of the ground here. +"""]] diff --git a/doc/todo/windows_support/comment_5_444fc7251f57db241b6e80abae41851c._comment b/doc/todo/windows_support/comment_5_444fc7251f57db241b6e80abae41851c._comment new file mode 100644 index 000000000..8f76ee258 --- /dev/null +++ b/doc/todo/windows_support/comment_5_444fc7251f57db241b6e80abae41851c._comment @@ -0,0 +1,10 @@ +[[!comment format=mdwn + username="https://me.yahoo.com/a/dASECLNzvckz4VwqUGYsvthiplY.#d2c27" + nickname="A. D. Sicks" + subject="comment 5" + date="2012-09-09T23:48:21Z" + content=""" +Haskell has C++ binding, so it should be possible to port it to .net/Mono with a VB GUI for Windows users. Windows has a primitive form of symlinks called shortcuts. Perhaps shortcut support in Windows could replace the use of symlinks. I've used shortcuts since XP to put my home Windows directory on another partition and never had a hitch... + +If anyone is interested in working on this, hit me up. I would like to use this in my XP vbox to have access to files on my host OS...I have a student edition of Visual Studio 2005 to do an open source port... +"""]] |