* [PATCH] Documentation: update sparse.txt to list actual location @ 2005-06-12 21:49 Jesper Juhl 2005-06-13 5:48 ` Dave Jones 0 siblings, 1 reply; 5+ messages in thread From: Jesper Juhl @ 2005-06-12 21:49 UTC (permalink / raw) To: linux-kernel The information on where to get sparse is outdated. It is now maintained in a git tree and I was unable to find anywhere to download tarballs. This patch updates Documentation/sparse.txt to match current reality. Signed-off-by: Jesper Juhl <juhl-lkml@dif.dk> --- Documentation/sparse.txt | 15 +++++++++++---- 1 files changed, 11 insertions(+), 4 deletions(-) --- linux-2.6.12-rc6-mm1-orig/Documentation/sparse.txt 2005-03-02 08:37:53.000000000 +0100 +++ linux-2.6.12-rc6-mm1/Documentation/sparse.txt 2005-06-12 23:44:43.000000000 +0200 @@ -51,13 +51,20 @@ or you don't get any checking at all. Where to get sparse ~~~~~~~~~~~~~~~~~~~ -With BK, you can just get it from +With git, you can get it from - bk://sparse.bkbits.net/sparse + rsync://rsync.kernel.org/pub/scm/linux/kernel/git/torvalds/sparse.git/ -and DaveJ has tar-balls at +like this: - http://www.codemonkey.org.uk/projects/bitkeeper/sparse/ + $ mkdir -p sparse/.git + $ cd sparse + $ rsync -a --delete --verbose --stats --progress \ + rsync://rsync.kernel.org/pub/scm/linux/kernel/git/torvalds/sparse.git/ \ + .git + $ git-pull-script \ + rsync://rsync.kernel.org/pub/scm/linux/kernel/git/torvalds/sparse.git + $ git-read-tree -m HEAD && git-checkout-cache -q -f -u -a Once you have it, just do ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] Documentation: update sparse.txt to list actual location 2005-06-12 21:49 [PATCH] Documentation: update sparse.txt to list actual location Jesper Juhl @ 2005-06-13 5:48 ` Dave Jones 2005-06-13 7:37 ` Jesper Juhl 0 siblings, 1 reply; 5+ messages in thread From: Dave Jones @ 2005-06-13 5:48 UTC (permalink / raw) To: Jesper Juhl; +Cc: linux-kernel On Sun, Jun 12, 2005 at 11:49:30PM +0200, Jesper Juhl wrote: > -and DaveJ has tar-balls at > +like this: > > - http://www.codemonkey.org.uk/projects/bitkeeper/sparse/ + http://www.codemonkey.org.uk/projects/git-snapshots/sparse/ Dave ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] Documentation: update sparse.txt to list actual location 2005-06-13 5:48 ` Dave Jones @ 2005-06-13 7:37 ` Jesper Juhl 2005-06-13 16:45 ` Dave Jones 0 siblings, 1 reply; 5+ messages in thread From: Jesper Juhl @ 2005-06-13 7:37 UTC (permalink / raw) To: Dave Jones, Jesper Juhl, linux-kernel On 6/13/05, Dave Jones <davej@redhat.com> wrote: > On Sun, Jun 12, 2005 at 11:49:30PM +0200, Jesper Juhl wrote: > > > -and DaveJ has tar-balls at > > +like this: > > > > - http://www.codemonkey.org.uk/projects/bitkeeper/sparse/ > > + http://www.codemonkey.org.uk/projects/git-snapshots/sparse/ > Ahh, great, I'll update the patch later today. Thanks. -- Jesper Juhl <jesper.juhl@gmail.com> Don't top-post http://www.catb.org/~esr/jargon/html/T/top-post.html Plain text mails only, please http://www.expita.com/nomime.html ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] Documentation: update sparse.txt to list actual location 2005-06-13 7:37 ` Jesper Juhl @ 2005-06-13 16:45 ` Dave Jones 2005-06-13 18:40 ` Jesper Juhl 0 siblings, 1 reply; 5+ messages in thread From: Dave Jones @ 2005-06-13 16:45 UTC (permalink / raw) To: Jesper Juhl; +Cc: Jesper Juhl, linux-kernel On Mon, Jun 13, 2005 at 09:37:37AM +0200, Jesper Juhl wrote: > On 6/13/05, Dave Jones <davej@redhat.com> wrote: > > On Sun, Jun 12, 2005 at 11:49:30PM +0200, Jesper Juhl wrote: > > > > > -and DaveJ has tar-balls at > > > +like this: > > > > > > - http://www.codemonkey.org.uk/projects/bitkeeper/sparse/ > > > > + http://www.codemonkey.org.uk/projects/git-snapshots/sparse/ > > > Ahh, great, I'll update the patch later today. Thanks. I'm about to jump on a plane, and be net.dead for the best part of the next week, with sporadic internet access, which is obviously the best time to start cron running a hastily hacked up script. If it blows up horribly, I'll get to it when I get back on Sunday, but it should be fine.. I hope :-) Dave ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] Documentation: update sparse.txt to list actual location 2005-06-13 16:45 ` Dave Jones @ 2005-06-13 18:40 ` Jesper Juhl 0 siblings, 0 replies; 5+ messages in thread From: Jesper Juhl @ 2005-06-13 18:40 UTC (permalink / raw) To: Dave Jones; +Cc: Jesper Juhl, Jesper Juhl, akpm, linux-kernel On Mon, 13 Jun 2005, Dave Jones wrote: > On Mon, Jun 13, 2005 at 09:37:37AM +0200, Jesper Juhl wrote: > > On 6/13/05, Dave Jones <davej@redhat.com> wrote: > > > On Sun, Jun 12, 2005 at 11:49:30PM +0200, Jesper Juhl wrote: > > > > > > > -and DaveJ has tar-balls at > > > > +like this: > > > > > > > > - http://www.codemonkey.org.uk/projects/bitkeeper/sparse/ > > > > > > + http://www.codemonkey.org.uk/projects/git-snapshots/sparse/ > > > > > Ahh, great, I'll update the patch later today. Thanks. > > I'm about to jump on a plane, and be net.dead for the > best part of the next week, with sporadic internet access, > which is obviously the best time to start cron running > a hastily hacked up script. > > If it blows up horribly, I'll get to it when I get back on Sunday, > but it should be fine.. I hope :-) > Have a nice trip. I've updated the patch to include the new location of your tarballs. Signed-off-by: Jesper Juhl <juhl-lkml@dif.dk> --- Documentation/sparse.txt | 21 +++++++++++++++++---- 1 files changed, 17 insertions(+), 4 deletions(-) --- linux-2.6.12-rc6-mm1-orig/Documentation/sparse.txt 2005-03-02 08:37:53.000000000 +0100 +++ linux-2.6.12-rc6-mm1/Documentation/sparse.txt 2005-06-13 20:30:09.000000000 +0200 @@ -51,13 +51,26 @@ Where to get sparse ~~~~~~~~~~~~~~~~~~~ -With BK, you can just get it from +With git, you can get it from - bk://sparse.bkbits.net/sparse + rsync://rsync.kernel.org/pub/scm/linux/kernel/git/torvalds/sparse.git/ -and DaveJ has tar-balls at +like this: - http://www.codemonkey.org.uk/projects/bitkeeper/sparse/ + $ mkdir -p sparse/.git + $ cd sparse + $ rsync -a --delete --verbose --stats --progress \ + rsync://rsync.kernel.org/pub/scm/linux/kernel/git/torvalds/sparse.git/ \ + .git + $ git-pull-script \ + rsync://rsync.kernel.org/pub/scm/linux/kernel/git/torvalds/sparse.git + $ git-read-tree -m HEAD && git-checkout-cache -q -f -u -a + + +If you do not wish to keep the entire git tree around, then DaveJ has +tarballs at + + http://www.codemonkey.org.uk/projects/git-snapshots/sparse/ Once you have it, just do ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2005-06-13 18:35 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2005-06-12 21:49 [PATCH] Documentation: update sparse.txt to list actual location Jesper Juhl 2005-06-13 5:48 ` Dave Jones 2005-06-13 7:37 ` Jesper Juhl 2005-06-13 16:45 ` Dave Jones 2005-06-13 18:40 ` Jesper Juhl
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.