diff options
author | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2012-12-07 16:55:12 -0800 |
---|---|---|
committer | Ronald G. Minnich <rminnich@gmail.com> | 2012-12-08 06:46:14 +0100 |
commit | 91f1423cac0460ab79492a9c167765359b9dd3e2 (patch) | |
tree | 08d04c715a1d53563138eed391f022eeaa1b4323 /src/device/Kconfig | |
parent | 4c4dd93be7fc7d7ae0d5802fe15f8e5e533a6872 (diff) |
Fix Yabel compilation on non-x86 platforms
Mostly preventing inb/outb being used on non-x86
Change-Id: I0434df4ce477c262337672867dc6ce398ff95279
Signed-off-by: Stefan Reinauer <reinauer@google.com>
Reviewed-on: http://review.coreboot.org/2002
Tested-by: build bot (Jenkins)
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'src/device/Kconfig')
-rw-r--r-- | src/device/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/device/Kconfig b/src/device/Kconfig index 32928b8ebe..849cc1511c 100644 --- a/src/device/Kconfig +++ b/src/device/Kconfig @@ -157,7 +157,7 @@ config YABEL_VIRTMEM_LOCATION config YABEL_DIRECTHW prompt "Direct hardware access" bool - depends on PCI_OPTION_ROM_RUN_YABEL + depends on PCI_OPTION_ROM_RUN_YABEL && ARCH_X86 help YABEL consists of two parts: It uses x86emu for the CPU emulation and additionally provides a PC system emulation that filters bad device |