xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] tools: gpxe build fix
@ 2010-07-19 12:25 Christoph Egger
  2010-07-20  7:50 ` Simon Horman
  2010-07-21 15:41 ` Ian Jackson
  0 siblings, 2 replies; 4+ messages in thread
From: Christoph Egger @ 2010-07-19 12:25 UTC (permalink / raw)
  To: xen-devel

[-- Attachment #1: Type: text/plain, Size: 405 bytes --]


Hi!

On NetBSD, uname -m prints 'amd64'.
Attached patch makes gpxe aware of that.

Signed-off-by: Christoph Egger <Christoph.Egger@amd.com>

-- 
---to satisfy European Law for business letters:
Advanced Micro Devices GmbH
Einsteinring 24, 85609 Dornach b. Muenchen
Geschaeftsfuehrer: Alberto Bozzo, Andrew Bowd
Sitz: Dornach, Gemeinde Aschheim, Landkreis Muenchen
Registergericht Muenchen, HRB Nr. 43632

[-- Attachment #2: xen_tools_gpxe.diff --]
[-- Type: text/x-diff, Size: 1014 bytes --]

diff -r eec4447a500c tools/firmware/etherboot/patches/Makefile.patch
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tools/firmware/etherboot/patches/Makefile.patch	Mon Jul 19 14:22:14 2010 +0200
@@ -0,0 +1,12 @@
+--- a/src/Makefile.orig	2010-07-19 13:09:06.000000000 +0200
++++ b/src/Makefile	2010-07-19 13:04:11.000000000 +0200
+@@ -71,7 +71,8 @@ noargs : blib $(BIN)/NIC $(BIN)/gpxe.dsk
+ # If no architecture is specified in Config or on the command-line,
+ # use that of the build machine.
+ #
+-ARCH		?= $(shell uname -m | sed -e s,i[3456789]86,i386,)
++ARCH		?= $(shell uname -m | sed -e s,i[3456789]86,i386, \
++		-e s,amd64,x86_64,)
+ 
+ # handle x86_64 like i386, but set -m32 option for 32bit code only
+ ifeq ($(ARCH),x86_64)
diff -r eec4447a500c tools/firmware/etherboot/patches/series
--- a/tools/firmware/etherboot/patches/series	Mon Jul 19 12:58:28 2010 +0200
+++ b/tools/firmware/etherboot/patches/series	Mon Jul 19 14:22:14 2010 +0200
@@ -1,1 +1,2 @@
+Makefile.patch
 boot_prompt_option.patch

[-- Attachment #3: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

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

* Re: [PATCH] tools: gpxe build fix
  2010-07-19 12:25 [PATCH] tools: gpxe build fix Christoph Egger
@ 2010-07-20  7:50 ` Simon Horman
  2010-07-21 15:41 ` Ian Jackson
  1 sibling, 0 replies; 4+ messages in thread
From: Simon Horman @ 2010-07-20  7:50 UTC (permalink / raw)
  To: Christoph Egger; +Cc: xen-devel

On Mon, Jul 19, 2010 at 02:25:36PM +0200, Christoph Egger wrote:
> 
> Hi!
> 
> On NetBSD, uname -m prints 'amd64'.
> Attached patch makes gpxe aware of that.
> 
> Signed-off-by: Christoph Egger <Christoph.Egger@amd.com>
> 
> -- 
> ---to satisfy European Law for business letters:
> Advanced Micro Devices GmbH
> Einsteinring 24, 85609 Dornach b. Muenchen
> Geschaeftsfuehrer: Alberto Bozzo, Andrew Bowd
> Sitz: Dornach, Gemeinde Aschheim, Landkreis Muenchen
> Registergericht Muenchen, HRB Nr. 43632

> diff -r eec4447a500c tools/firmware/etherboot/patches/Makefile.patch
> --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
> +++ b/tools/firmware/etherboot/patches/Makefile.patch	Mon Jul 19 14:22:14 2010 +0200
> @@ -0,0 +1,12 @@
> +--- a/src/Makefile.orig	2010-07-19 13:09:06.000000000 +0200
> ++++ b/src/Makefile	2010-07-19 13:04:11.000000000 +0200
> +@@ -71,7 +71,8 @@ noargs : blib $(BIN)/NIC $(BIN)/gpxe.dsk
> + # If no architecture is specified in Config or on the command-line,
> + # use that of the build machine.
> + #
> +-ARCH		?= $(shell uname -m | sed -e s,i[3456789]86,i386,)
> ++ARCH		?= $(shell uname -m | sed -e s,i[3456789]86,i386, \
> ++		-e s,amd64,x86_64,)

How about  ... sed -e 's,\(i[3456789]86\|amd64\),i386,')


> + 
> + # handle x86_64 like i386, but set -m32 option for 32bit code only
> + ifeq ($(ARCH),x86_64)
> diff -r eec4447a500c tools/firmware/etherboot/patches/series
> --- a/tools/firmware/etherboot/patches/series	Mon Jul 19 12:58:28 2010 +0200
> +++ b/tools/firmware/etherboot/patches/series	Mon Jul 19 14:22:14 2010 +0200
> @@ -1,1 +1,2 @@
> +Makefile.patch
>  boot_prompt_option.patch

Is this a separate change?

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

* Re: [PATCH] tools: gpxe build fix
  2010-07-19 12:25 [PATCH] tools: gpxe build fix Christoph Egger
  2010-07-20  7:50 ` Simon Horman
@ 2010-07-21 15:41 ` Ian Jackson
  2010-07-21 16:02   ` Keir Fraser
  1 sibling, 1 reply; 4+ messages in thread
From: Ian Jackson @ 2010-07-21 15:41 UTC (permalink / raw)
  To: Christoph Egger; +Cc: xen-devel

Christoph Egger writes ("[Xen-devel] [PATCH] tools: gpxe build fix"):
> On NetBSD, uname -m prints 'amd64'.
> Attached patch makes gpxe aware of that.

Are there any other systems on which uname -m prints amd64 on which
this patch will break ?

I think calling a patch "Makefile.patch" is going to be annoying.
And patches in a series should not be named just after the file they
change as if only one patch touches each file.

How about "makefile-amd64.patch" ?

Also "gpxe build fix" is a hopeless commit message.

Ian.

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

* Re: [PATCH] tools: gpxe build fix
  2010-07-21 15:41 ` Ian Jackson
@ 2010-07-21 16:02   ` Keir Fraser
  0 siblings, 0 replies; 4+ messages in thread
From: Keir Fraser @ 2010-07-21 16:02 UTC (permalink / raw)
  To: Ian Jackson, Christoph Egger; +Cc: xen-devel@lists.xensource.com

On 21/07/2010 16:41, "Ian Jackson" <Ian.Jackson@eu.citrix.com> wrote:

> Christoph Egger writes ("[Xen-devel] [PATCH] tools: gpxe build fix"):
>> On NetBSD, uname -m prints 'amd64'.
>> Attached patch makes gpxe aware of that.
> 
> Are there any other systems on which uname -m prints amd64 on which
> this patch will break ?
> 
> I think calling a patch "Makefile.patch" is going to be annoying.
> And patches in a series should not be named just after the file they
> change as if only one patch touches each file.
> 
> How about "makefile-amd64.patch" ?
> 
> Also "gpxe build fix" is a hopeless commit message.

I ended up upgrading us to far more recent gpxe, where this whole issue has
simply disappeared.

 -- Keir

> Ian.
> 
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xensource.com
> http://lists.xensource.com/xen-devel

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

end of thread, other threads:[~2010-07-21 16:02 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-07-19 12:25 [PATCH] tools: gpxe build fix Christoph Egger
2010-07-20  7:50 ` Simon Horman
2010-07-21 15:41 ` Ian Jackson
2010-07-21 16:02   ` Keir Fraser

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