Re: [LGUEST] Look in object dir for .config

2007-05-03 Thread Rusty Russell
On Thu, 2007-05-03 at 14:54 +1000, Tony Breeds wrote:
> From: Tony Breeds <[EMAIL PROTECTED]>
> 
> [LGUEST] Look in object dir for .config
> 
> If you build with make O= then .config isn't in ../../, this patch
> goes partway to making sure that you don't dirty the source tree.
> 
> Signed-off-by: Tony Breeds <[EMAIL PROTECTED]>

Thanks Tony.  Will forward to Andrew.

Cheers,
Rusty.

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [LGUEST] Look in object dir for .config

2007-05-03 Thread Rusty Russell
On Thu, 2007-05-03 at 14:54 +1000, Tony Breeds wrote:
 From: Tony Breeds [EMAIL PROTECTED]
 
 [LGUEST] Look in object dir for .config
 
 If you build with make O= then .config isn't in ../../, this patch
 goes partway to making sure that you don't dirty the source tree.
 
 Signed-off-by: Tony Breeds [EMAIL PROTECTED]

Thanks Tony.  Will forward to Andrew.

Cheers,
Rusty.

-
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[LGUEST] Look in object dir for .config

2007-05-02 Thread Tony Breeds
From: Tony Breeds <[EMAIL PROTECTED]>

[LGUEST] Look in object dir for .config

If you build with make O= then .config isn't in ../../, this patch
goes partway to making sure that you don't dirty the source tree.

Signed-off-by: Tony Breeds <[EMAIL PROTECTED]>

---
 Documentation/lguest/Makefile |9 -
 1 file changed, 8 insertions(+), 1 deletion(-)

--- Documentation/lguest/Makefile.orig  2007-05-03 14:23:07.0 +1000
+++ Documentation/lguest/Makefile   2007-05-03 14:25:27.0 +1000
@@ -1,8 +1,15 @@
 # This creates the demonstration utility "lguest" which runs a Linux guest.
 
+# For those people that have a separate object dir, look there for .config
+KBUILD_OUTPUT := ../..
+ifdef O
+  ifeq ("$(origin O)", "command line")
+KBUILD_OUTPUT := $(O)
+  endif
+endif
 # We rely on CONFIG_PAGE_OFFSET to know the highest address we can put
 # the lguest binary.
-include ../../.config
+include $(KBUILD_OUTPUT)/.config
 LGUEST_GUEST_TOP := ($(CONFIG_PAGE_OFFSET) - 0x0800)
 
 CFLAGS:=-Wall -Wmissing-declarations -Wmissing-prototypes -O3 \

Yours Tony

  linux.conf.auhttp://linux.conf.au/ || http://lca2008.linux.org.au/
  Jan 28 - Feb 02 2008 The Australian Linux Technical Conference!
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[LGUEST] Look in object dir for .config

2007-05-02 Thread Tony Breeds
From: Tony Breeds [EMAIL PROTECTED]

[LGUEST] Look in object dir for .config

If you build with make O= then .config isn't in ../../, this patch
goes partway to making sure that you don't dirty the source tree.

Signed-off-by: Tony Breeds [EMAIL PROTECTED]

---
 Documentation/lguest/Makefile |9 -
 1 file changed, 8 insertions(+), 1 deletion(-)

--- Documentation/lguest/Makefile.orig  2007-05-03 14:23:07.0 +1000
+++ Documentation/lguest/Makefile   2007-05-03 14:25:27.0 +1000
@@ -1,8 +1,15 @@
 # This creates the demonstration utility lguest which runs a Linux guest.
 
+# For those people that have a separate object dir, look there for .config
+KBUILD_OUTPUT := ../..
+ifdef O
+  ifeq ($(origin O), command line)
+KBUILD_OUTPUT := $(O)
+  endif
+endif
 # We rely on CONFIG_PAGE_OFFSET to know the highest address we can put
 # the lguest binary.
-include ../../.config
+include $(KBUILD_OUTPUT)/.config
 LGUEST_GUEST_TOP := ($(CONFIG_PAGE_OFFSET) - 0x0800)
 
 CFLAGS:=-Wall -Wmissing-declarations -Wmissing-prototypes -O3 \

Yours Tony

  linux.conf.auhttp://linux.conf.au/ || http://lca2008.linux.org.au/
  Jan 28 - Feb 02 2008 The Australian Linux Technical Conference!
-
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/