projects
/
xen.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d309d41
)
tools/firmware/Makefile: CONFIG_PV_SHIM: enable only on x86_64
author
Ian Jackson
<iwj@amdahl.debian.org>
Fri, 12 Oct 2018 17:56:04 +0000
(17:56 +0000)
committer
Hans van Kranenburg
<hans@knorrie.org>
Thu, 1 Oct 2020 12:50:58 +0000
(13:50 +0100)
Previously this was *dis*abled for x86_*32*. But if someone should
run some of this Makefile on ARM, say, it ought not to be built
either.
Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
Gbp-Pq: Name 0040-tools-firmware-Makefile-CONFIG_PV_SHIM-enable-only-o.patch
tools/firmware/Makefile
patch
|
blob
|
history
diff --git
a/tools/firmware/Makefile
b/tools/firmware/Makefile
index c449fabfc81e3893abae16e5fd90735eb8280805..40e36d9a6f06af6a1cac58bea52e902cdd118792 100644
(file)
--- a/
tools/firmware/Makefile
+++ b/
tools/firmware/Makefile
@@
-1,7
+1,7
@@
XEN_ROOT = $(CURDIR)/../..
include $(XEN_ROOT)/tools/Rules.mk
-if
neq ($(XEN_TARGET_ARCH),x86_32
)
+if
eq ($(XEN_TARGET_ARCH),x86_64
)
CONFIG_PV_SHIM ?= y
endif