From 65ae86894b0587318471c0a87b2333e0f7618092 Mon Sep 17 00:00:00 2001 From: hailfinger Date: Sat, 20 Feb 2016 22:04:39 +0000 Subject: Automatically disable atapromise on non-x86 We do not support PCI port I/O on non-x86 (yet). Atapromise needs PCI port I/O. Signed-off-by: Carl-Daniel Hailfinger Acked-by: Stefan Tauner git-svn-id: https://code.coreboot.org/svn/flashrom/trunk@1935 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index e430bad..d77c701 100644 --- a/Makefile +++ b/Makefile @@ -396,6 +396,11 @@ UNSUPPORTED_FEATURES += CONFIG_ATAHPT=yes else override CONFIG_ATAHPT = no endif +ifeq ($(CONFIG_ATAPROMISE), yes) +UNSUPPORTED_FEATURES += CONFIG_ATAPROMISE=yes +else +override CONFIG_ATAPROMISE = no +endif ifeq ($(CONFIG_SATAMV), yes) UNSUPPORTED_FEATURES += CONFIG_SATAMV=yes else -- cgit v1.2.1