Al Stone
2006-Apr-12 17:50 UTC
[Xen-devel] [PATCH] don''t always need to build x86 firmware
In the tools part of xen, if you have bcc installed, ''make tools'' will try to compile all of the x86 firmware (ACPI, ROM BIOS, VGA BIOS). This patch turns that off if we''re building for ia64, where we don''t really need it (yet). It may be necessary to turn this off for PowerPC, too, but I don''t have one of those to test on. Tested with ''make tools'' on ia64 Debian GNU/Linux (unstable) Signed-off-by: Al Stone <ahs3@fc.hp.com> -- Ciao, al ---------------------------------------------------------------------- Al Stone Alter Ego: Open Source and Linux R&D Debian Developer Hewlett-Packard Company http://www.debian.org E-mail: ahs3@fc.hp.com ahs3@debian.org ---------------------------------------------------------------------- _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
Hollis Blanchard
2006-Apr-12 18:24 UTC
Re: [Xen-devel] [PATCH] don''t always need to build x86 firmware
On Wed, 2006-04-12 at 11:50 -0600, Al Stone wrote:> diff -r 5cc367720223 -r d5318d3a8ced tools/Makefile > --- a/tools/Makefile Tue Apr 11 18:54:18 2006 -0600 > +++ b/tools/Makefile Wed Apr 12 10:39:06 2006 -0600 > @@ -8,7 +8,9 @@ SUBDIRS += examples > SUBDIRS += examples > SUBDIRS += xentrace > SUBDIRS += xcutils > +ifneq ($(XEN_TARGET_ARCH),ia64) > SUBDIRS += firmware > +endif > SUBDIRS += security > SUBDIRS += console > SUBDIRS += xenmonInstead of this, could you have a look at converting tools/Makefile to use the subdirs-$(foo) syntax that the xen/ Makefiles are using? -- Hollis Blanchard IBM Linux Technology Center _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
Al Stone
2006-Apr-12 18:47 UTC
Re: [Xen-devel] [PATCH] don''t always need to build x86 firmware
On Wed, 2006-04-12 at 13:24 -0500, Hollis Blanchard wrote:> On Wed, 2006-04-12 at 11:50 -0600, Al Stone wrote: > > diff -r 5cc367720223 -r d5318d3a8ced tools/Makefile > > --- a/tools/Makefile Tue Apr 11 18:54:18 2006 -0600 > > +++ b/tools/Makefile Wed Apr 12 10:39:06 2006 -0600 > > @@ -8,7 +8,9 @@ SUBDIRS += examples > > SUBDIRS += examples > > SUBDIRS += xentrace > > SUBDIRS += xcutils > > +ifneq ($(XEN_TARGET_ARCH),ia64) > > SUBDIRS += firmware > > +endif > > SUBDIRS += security > > SUBDIRS += console > > SUBDIRS += xenmon > > Instead of this, could you have a look at converting tools/Makefile to > use the subdirs-$(foo) syntax that the xen/ Makefiles are using?Good idea. I''ll take a look. -- Ciao, al ---------------------------------------------------------------------- Al Stone Alter Ego: Open Source and Linux R&D Debian Developer Hewlett-Packard Company http://www.debian.org E-mail: ahs3@fc.hp.com ahs3@debian.org ---------------------------------------------------------------------- _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel