From 6e3a29802906685ef7964ab2caa16f51ad1d4da3 Mon Sep 17 00:00:00 2001 From: "http://joeyh.name/" Date: Thu, 3 Jul 2014 20:10:41 +0000 Subject: [PATCH 1/3] Added a comment --- ..._b41666c032aeb2d0de35023328391edb._comment | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 doc/bugs/Android_fails_on_Google_Nexus_10_Jellybean/comment_1_b41666c032aeb2d0de35023328391edb._comment diff --git a/doc/bugs/Android_fails_on_Google_Nexus_10_Jellybean/comment_1_b41666c032aeb2d0de35023328391edb._comment b/doc/bugs/Android_fails_on_Google_Nexus_10_Jellybean/comment_1_b41666c032aeb2d0de35023328391edb._comment new file mode 100644 index 0000000000..cc0fcf30e4 --- /dev/null +++ b/doc/bugs/Android_fails_on_Google_Nexus_10_Jellybean/comment_1_b41666c032aeb2d0de35023328391edb._comment @@ -0,0 +1,25 @@ +[[!comment format=mdwn + username="http://joeyh.name/" + ip="209.250.56.55" + subject="comment 1" + date="2014-07-03T20:10:41Z" + content=""" +This is not an installation problem; the /data/app-lib message is a red herring. + +Is /sdcard/mediashare a directory that already existed? If so, perhaps it's some \"mediashare\" thing that has a even more crippled filesystem than usual. Seems possible, but I don't know. Want to rule it out.. + +The actual failure seems to be when git tries to write to its config.lock file, and changes its permissions. This is a recent change in git, commit daa22c6f8da466bd7a438f1bc27375fd737ffcf3, \"config: preserve config file permissions on edits\". + +[[!language C \"\"\" ++ if (fchmod(fd, st.st_mode & 07777) < 0) { ++ error(\"fchmod on %s failed: %s\", ++ lock->filename, strerror(errno)); ++ ret = CONFIG_NO_WRITE; ++ goto out_free; ++ } +\"\"\"]] + +This seems utterly innocuous; the config file has some mode, and this just sets that same mode back (excluding some high bit flags). But Android goes out of its way to make /sdcard the most craptacular filesystem in use on any Linux system, so I'm not really surprised that it might just refuse all fchmod even when it's a no-op. (This is the only fchmod call currently in git.) + +I've patched the bundled git to work around this. Will be a while until there is an updated autobuild.. +"""]] From 5dd552f5a4f3adb03fa3ece16f4fd4d0a535c50c Mon Sep 17 00:00:00 2001 From: cbaines Date: Thu, 3 Jul 2014 20:13:20 +0000 Subject: [PATCH 2/3] Added a comment --- ...comment_2_ec3ff6487c9e5c89c7e508d72518bd50._comment | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 doc/forum/public__44___read_only_annex_without_location_tracking/comment_2_ec3ff6487c9e5c89c7e508d72518bd50._comment diff --git a/doc/forum/public__44___read_only_annex_without_location_tracking/comment_2_ec3ff6487c9e5c89c7e508d72518bd50._comment b/doc/forum/public__44___read_only_annex_without_location_tracking/comment_2_ec3ff6487c9e5c89c7e508d72518bd50._comment new file mode 100644 index 0000000000..ad74e68660 --- /dev/null +++ b/doc/forum/public__44___read_only_annex_without_location_tracking/comment_2_ec3ff6487c9e5c89c7e508d72518bd50._comment @@ -0,0 +1,10 @@ +[[!comment format=mdwn + username="cbaines" + ip="82.19.50.118" + subject="comment 2" + date="2014-07-03T20:13:20Z" + content=""" +Thanks for your response. + +The method you describe sounds like it might just do. I'll have a try, and see if it works out :) +"""]] From 9a1f130294ba599a3bb14b43fb5ca87472cba6c9 Mon Sep 17 00:00:00 2001 From: "http://joeyh.name/" Date: Thu, 3 Jul 2014 20:13:57 +0000 Subject: [PATCH 3/3] Added a comment --- .../comment_2_07c0f9387433b7107e9def2bfbed3039._comment | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 doc/bugs/repo_creation_fails_on_android_4.4.3/comment_2_07c0f9387433b7107e9def2bfbed3039._comment diff --git a/doc/bugs/repo_creation_fails_on_android_4.4.3/comment_2_07c0f9387433b7107e9def2bfbed3039._comment b/doc/bugs/repo_creation_fails_on_android_4.4.3/comment_2_07c0f9387433b7107e9def2bfbed3039._comment new file mode 100644 index 0000000000..473bfb3087 --- /dev/null +++ b/doc/bugs/repo_creation_fails_on_android_4.4.3/comment_2_07c0f9387433b7107e9def2bfbed3039._comment @@ -0,0 +1,8 @@ +[[!comment format=mdwn + username="http://joeyh.name/" + ip="209.250.56.55" + subject="comment 2" + date="2014-07-03T20:13:57Z" + content=""" +Thanks, this is then a dup of [[bugs/Android_fails_on_Google_Nexus_10_Jellybean]]. +"""]]