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
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
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