1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-04-27 23:22:37 +02:00

Compile gfxnvidia by default, but disallow write/erase

Corresponding to flashrom svn r1117.

Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
This commit is contained in:
Carl-Daniel Hailfinger 2010-07-29 14:41:46 +00:00
parent 41bea03aa5
commit bf3af2995f
2 changed files with 5 additions and 2 deletions

View File

@ -128,8 +128,8 @@ endif
# Always enable 3Com NICs for now. # Always enable 3Com NICs for now.
CONFIG_NIC3COM ?= yes CONFIG_NIC3COM ?= yes
# Disable NVIDIA graphics cards for now, write/erase don't work properly. # Enable NVIDIA graphics cards. Note: write and erase do not work properly.
CONFIG_GFXNVIDIA ?= no CONFIG_GFXNVIDIA ?= yes
# Always enable SiI SATA controllers for now. # Always enable SiI SATA controllers for now.
CONFIG_SATASII ?= yes CONFIG_SATASII ?= yes

View File

@ -82,6 +82,9 @@ int gfxnvidia_init(void)
buses_supported = CHIP_BUSTYPE_PARALLEL; buses_supported = CHIP_BUSTYPE_PARALLEL;
/* Write/erase doesn't work. */
programmer_may_write = 0;
return 0; return 0;
} }