From 5665ef35a192ed62ab8966416d2d0e9b724acf24 Mon Sep 17 00:00:00 2001 From: Joerg Fischer Date: Fri, 21 May 2010 21:54:07 +0000 Subject: Support for Realtek RTL8139 network card flashing Corresponding to flashrom svn r1002. Signed-off-by: Joerg Fischer Acked-by: Carl-Daniel Hailfinger --- Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 6a9beb5..dff5e91 100644 --- a/Makefile +++ b/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 -- cgit v1.1