On Monday, March 2, 2015 at 5:49:45 PM UTC-5, Kobalt Kitsuné wrote: > Hey y'all, I'm still at it trying to port Firefox OS to my galaxy tab, > but I am having a problem with my manifest.xml file. See, whenever I try > to run ./config.sh, it starts fetching the repositories and gets to > about 116 out of 118 projects before it freezes on me. So, I was > wondering if anyone knows a way I can check to see which repos are > causing the problem without having to comb through the entire manifest. > > I get no errors in the terminal, and it looks like it is fetching the > repos at random from the .xml file, so it makes it difficult for me to > pinpoint the problem.
In my experience the repo command which checks out the repositories is pretty bad with respect to letting the user know what's going on. On multiple occasions I've had to go digging in the repo code to find out why it's hanging. In your B2G dir you can open up .repo/repo/subcmds/sync.py and add a few print statements to see how far it's getting. What you're describing sounds very similar to a problem I ran into at one point where it was trying to GC the git repos and hanging. I fixed that by commenting out the "self._GCProjects(projects)" line in the above file. Not saying that will fix it for you but hopefully it gives you an idea of what kind of stuff to try. kats _______________________________________________ dev-b2g mailing list [email protected] https://lists.mozilla.org/listinfo/dev-b2g
