mirror of
https://review.coreboot.org/flashrom.git
synced 2025-07-01 14:11:15 +02:00
Support for Realtek RTL8139 network card flashing
Corresponding to flashrom svn r1002. Signed-off-by: Joerg Fischer <turboj@gmx.de> Acked-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
This commit is contained in:

committed by
Carl-Daniel Hailfinger

parent
6d1dea1ff0
commit
5665ef35a1
9
Makefile
9
Makefile
@ -110,6 +110,9 @@ CONFIG_DUMMY ?= yes
|
||||
# Always enable Dr. Kaiser for now.
|
||||
CONFIG_DRKAISER ?= yes
|
||||
|
||||
# Always enable Realtek NICs for now.
|
||||
CONFIG_NICREALTEK ?= yes
|
||||
|
||||
# Always enable Bus Pirate SPI for now.
|
||||
CONFIG_BUSPIRATESPI ?= yes
|
||||
|
||||
@ -181,6 +184,12 @@ PROGRAMMER_OBJS += drkaiser.o
|
||||
NEED_PCI := yes
|
||||
endif
|
||||
|
||||
ifeq ($(CONFIG_NICREALTEK), yes)
|
||||
FEATURE_CFLAGS += -D'NICREALTEK_SUPPORT=1'
|
||||
PROGRAMMER_OBJS += nicrealtek.o
|
||||
NEED_PCI := yes
|
||||
endif
|
||||
|
||||
ifeq ($(CONFIG_BUSPIRATESPI), yes)
|
||||
FEATURE_CFLAGS += -D'BUSPIRATE_SPI_SUPPORT=1'
|
||||
PROGRAMMER_OBJS += buspirate_spi.o
|
||||
|
Reference in New Issue
Block a user