virtualization.lists.linux-foundation.org archive mirror
 help / color / mirror / Atom feed
* [Q]lguest git repo location?
@ 2007-08-04 14:14 pradeep singh
  2007-08-04 15:14 ` pradeep singh
  2007-08-06  0:46 ` Rusty Russell
  0 siblings, 2 replies; 4+ messages in thread
From: pradeep singh @ 2007-08-04 14:14 UTC (permalink / raw)
  To: virtualization-list

HI Rusty,

I wanted to play with lguest. As it was recently merge upstream by
Linus, i took a look and the location looks like driver/lguest*.

Unfortunately my local git repo cannot get the 2.6.23-rc2 changes from
upstream somehow :-/.[duh... says "Cannot get the repository state
from http://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git"].
i do not know what i am doing wrong.

Coming back to point -
Do you maintain a lguest git repository somewhere? So that i can clone
it and experiment with it?

Thanks a lot for lguest.

Regards,
-- 
Pradeep

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Q]lguest git repo location?
  2007-08-04 14:14 [Q]lguest git repo location? pradeep singh
@ 2007-08-04 15:14 ` pradeep singh
  2007-08-06  0:46 ` Rusty Russell
  1 sibling, 0 replies; 4+ messages in thread
From: pradeep singh @ 2007-08-04 15:14 UTC (permalink / raw)
  To: virtualization-list

apologies, everybody. :(
My bad... missed something really trivial.
Now i have got it fixed and i am on lguest.

Sorry once again for the trouble.

thanks
--pradeep

On 8/4/07, pradeep singh <pradeep.rautela@gmail.com> wrote:
> HI Rusty,
>
> I wanted to play with lguest. As it was recently merge upstream by
> Linus, i took a look and the location looks like driver/lguest*.
>
> Unfortunately my local git repo cannot get the 2.6.23-rc2 changes from
> upstream somehow :-/.[duh... says "Cannot get the repository state
> from http://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git"].
> i do not know what i am doing wrong.
>
> Coming back to point -
> Do you maintain a lguest git repository somewhere? So that i can clone
> it and experiment with it?
>
> Thanks a lot for lguest.
>
> Regards,
> --
> Pradeep
>


-- 
Pradeep

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Q]lguest git repo location?
  2007-08-04 14:14 [Q]lguest git repo location? pradeep singh
  2007-08-04 15:14 ` pradeep singh
@ 2007-08-06  0:46 ` Rusty Russell
  2007-08-06  6:57   ` pradeep singh
  1 sibling, 1 reply; 4+ messages in thread
From: Rusty Russell @ 2007-08-06  0:46 UTC (permalink / raw)
  To: pradeep singh; +Cc: virtualization-list

On Sat, 2007-08-04 at 19:44 +0530, pradeep singh wrote:
> HI Rusty,
> 
> I wanted to play with lguest. As it was recently merge upstream by
> Linus, i took a look and the location looks like driver/lguest*.
> 
> Unfortunately my local git repo cannot get the 2.6.23-rc2 changes from
> upstream somehow :-/.[duh... says "Cannot get the repository state
> from http://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git"].
> i do not know what i am doing wrong.
> 
> Coming back to point -
> Do you maintain a lguest git repository somewhere? So that i can clone
> it and experiment with it?

Hi Pradeep!

	I don't keep a git repository; I keep some patches which fits my
working style better.  However, the 2.6.23-rc2 tree should work with
this one patch:
==
Lguest drivers need to default to "Y" otherwise they're never selected
for new builds.  We don't bother prompting, because they're less than
4k combined.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>

---
 drivers/lguest/Kconfig |    2 ++
 1 file changed, 2 insertions(+)

===================================================================
--- a/drivers/lguest/Kconfig
+++ b/drivers/lguest/Kconfig
@@ -21,8 +21,10 @@ config LGUEST_GUEST
 
 config LGUEST_NET
 	tristate
+	default y
 	depends on LGUEST_GUEST && NET
 
 config LGUEST_BLOCK
 	tristate
+	default y
 	depends on LGUEST_GUEST && BLOCK

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Q]lguest git repo location?
  2007-08-06  0:46 ` Rusty Russell
@ 2007-08-06  6:57   ` pradeep singh
  0 siblings, 0 replies; 4+ messages in thread
From: pradeep singh @ 2007-08-06  6:57 UTC (permalink / raw)
  To: Rusty Russell; +Cc: virtualization-list

Thank you Rusty.

Best Regards
--pradeep
On 8/6/07, Rusty Russell <rusty@rustcorp.com.au> wrote:
> On Sat, 2007-08-04 at 19:44 +0530, pradeep singh wrote:
> > HI Rusty,
> >
> > I wanted to play with lguest. As it was recently merge upstream by
> > Linus, i took a look and the location looks like driver/lguest*.
> >
> > Unfortunately my local git repo cannot get the 2.6.23-rc2 changes from
> > upstream somehow :-/.[duh... says "Cannot get the repository state
> > from http://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git"].
> > i do not know what i am doing wrong.
> >
> > Coming back to point -
> > Do you maintain a lguest git repository somewhere? So that i can clone
> > it and experiment with it?
>
> Hi Pradeep!
>
>         I don't keep a git repository; I keep some patches which fits my
> working style better.  However, the 2.6.23-rc2 tree should work with
> this one patch:
> ==
> Lguest drivers need to default to "Y" otherwise they're never selected
> for new builds.  We don't bother prompting, because they're less than
> 4k combined.
>
> Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
>
> ---
>  drivers/lguest/Kconfig |    2 ++
>  1 file changed, 2 insertions(+)
>
> ===================================================================
> --- a/drivers/lguest/Kconfig
> +++ b/drivers/lguest/Kconfig
> @@ -21,8 +21,10 @@ config LGUEST_GUEST
>
>  config LGUEST_NET
>         tristate
> +       default y
>         depends on LGUEST_GUEST && NET
>
>  config LGUEST_BLOCK
>         tristate
> +       default y
>         depends on LGUEST_GUEST && BLOCK
>
>
>


-- 
Pradeep

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2007-08-06  6:57 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-08-04 14:14 [Q]lguest git repo location? pradeep singh
2007-08-04 15:14 ` pradeep singh
2007-08-06  0:46 ` Rusty Russell
2007-08-06  6:57   ` pradeep singh

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).