diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2022-11-12 16:21:03 +0100 |
---|---|---|
committer | Paul Fagerburg <pfagerburg@chromium.org> | 2022-11-14 15:54:09 +0000 |
commit | e095c462dcf04a038ec4c1de8a8cf82e1441b31d (patch) | |
tree | 2b5371e1d0e3a77a146316da51790eb35ee80fb4 /src/device/Kconfig | |
parent | 6e85740236d203eb6be6367f242bb673bfa14849 (diff) |
device/Kconfig: Don't allow native mode in x86_64
This option is not working so don't advertise it.
Change-Id: I910162756a567289b2484a5445360a3197ae848c
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/69506
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Martin L Roth <gaumless@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 a41f261041..34600adfe8 100644 --- a/src/device/Kconfig +++ b/src/device/Kconfig @@ -197,7 +197,7 @@ choice config PCI_OPTION_ROM_RUN_REALMODE prompt "Native mode" bool - depends on ARCH_X86 + depends on ARCH_X86 && !ARCH_RAMSTAGE_X86_64 help If you select this option, PCI Option ROMs will be executed natively on the CPU in real mode. No CPU emulation is involved, |