Is it possible to update the GIT repo git://repo.or.cz/grub2.git to be in sync with BZR repo. Since grub2 changed from svn to bzr it has not been updated. BZR is very, very slow to update. It downloads about 3 MB for very few changes.
These are the changes that bzr did, for which it downloaded 3 MB of data (for what?). [kes...@keshav-laptop grub2_BZR]$ bzr diff -r2249..2250 === modified file 'ChangeLog' --- ChangeLog 2010-03-06 20:49:59 +0000 +++ ChangeLog 2010-03-07 22:02:13 +0000 @@ -1,3 +1,7 @@ +2010-03-07 Vladimir Serbinenko <phco...@gmail.com> + + * genmoddep.awk: Output all missing symbols and not only first. + 2010-03-06 Vladimir Serbinenko <phco...@gmail.com> * NEWS: Put the date of 1.98 release. === modified file 'genmoddep.awk' --- genmoddep.awk 2009-11-21 16:33:52 +0000 +++ genmoddep.awk 2010-03-07 22:02:13 +0000 @@ -32,13 +32,12 @@ else if ($1 != "__gnu_local_gp") { printf "%s in %s is not defined\n", $1, module >"/dev/stderr"; error++; - exit; } } # Output the result. END { - if (error == 1) + if (error >= 1) exit 1; for (mod in modtab) { [kes...@keshav-laptop grub2_BZR]$ I connect to net using GPRS and I get only about 3-5 kbps speed. It took 20 mins to just update from rev 2249 to 2250. What exactly is bzr downloading for such a small patch? I used "bzr pull" . Git is much faster, it wouldn't take 30 seconds for git to update download and update the above patch if grub2 was git repo. I request you guys to re-enable the above mentioned git repo, or tell me some way to make bzr faster like git (for GPRS speeds). Thank you. May be helpful :- http://github.com/kfish/git-bzr _______________________________________________ Grub-devel mailing list Grub-devel@gnu.org http://lists.gnu.org/mailman/listinfo/grub-devel