projects
/
xen.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
056e64f
)
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
Maximilian Engelhardt
<maxi@daemonizer.de>
Thu, 23 Mar 2023 19:40:49 +0000
(19:40 +0000)
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 0014-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 69f63b1fe698d6245834278bce9de3dd4ea7a594..6f9034ff5431013323185d5070dfce00a5b42488 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