[Lguest] + fix-drivers-lguest-makefile-entry.patch added to -mm tree

Rusty Russell rusty at rustcorp.com.au
Thu Jan 24 09:01:04 EST 2008


On Thursday 24 January 2008 08:06:23 akpm at linux-foundation.org wrote:
> The patch titled
>      fix drivers/lguest Makefile entry
> has been added to the -mm tree.  Its filename is
>      fix-drivers-lguest-makefile-entry.patch

This fix is wrong.  The correct fix is below, but it turns out that when 
you apply it another annoying detail prevents the !PARAVIRT && CONFIG_LGUEST
from working anyway.

IMHO these aren't worth holding the release up for, but if you're still
patching, these would be nice.

So here is 1/2:
===
Subject: fix drivers/lguest Makefile entry
Date: Fri, 18 Jan 2008 00:16:43 -0200
From: Glauber de Oliveira Costa <gcosta at redhat.com>

Parts depend on CONFIG_LGUEST, not just CONFIG_LGUEST_GUEST

Signed-off-by: Glauber de Oliveira Costa <gcosta at redhat.com>
Signed-off-by: Rusty Russell <rusty at rustcorp.com.au>
---
 drivers/Makefile |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/Makefile b/drivers/Makefile
index ee1b6a5..58a17e9 100644
--- a/drivers/Makefile
+++ b/drivers/Makefile
@@ -73,7 +73,7 @@ obj-$(CONFIG_ISDN)		+= isdn/
 obj-$(CONFIG_EDAC)		+= edac/
 obj-$(CONFIG_MCA)		+= mca/
 obj-$(CONFIG_EISA)		+= eisa/
-obj-$(CONFIG_LGUEST_GUEST)	+= lguest/
+obj-y				+= lguest/
 obj-$(CONFIG_CPU_FREQ)		+= cpufreq/
 obj-$(CONFIG_CPU_IDLE)		+= cpuidle/
 obj-$(CONFIG_MMC)		+= mmc/



More information about the Lguest mailing list