On Thursday 24 January 2008 08:06:23 [EMAIL PROTECTED] 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 <[EMAIL PROTECTED]>

Parts depend on CONFIG_LGUEST, not just CONFIG_LGUEST_GUEST

Signed-off-by: Glauber de Oliveira Costa <[EMAIL PROTECTED]>
Signed-off-by: Rusty Russell <[EMAIL PROTECTED]>
---
 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/
_______________________________________________
Lguest mailing list
[email protected]
https://ozlabs.org/mailman/listinfo/lguest

Reply via email to