From b713d2e35c5336da81f5fbc83393961d1d8aa7bd Mon Sep 17 00:00:00 2001 From: Carl-Daniel Hailfinger Date: Sun, 8 May 2011 00:24:18 +0000 Subject: Intel NIC with parallel flash support Tested-by: Maciej Pijanka Corresponding to flashrom svn r1297. Signed-off-by: Carl-Daniel Hailfinger Tested-by: Anton Kochkov Acked-by: Anton Kochkov --- Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index fce2708..e3c1154 100644 --- a/Makefile +++ b/Makefile @@ -178,6 +178,9 @@ CONFIG_NICREALTEK ?= yes # Disable National Semiconductor NICs until support is complete and tested. CONFIG_NICNATSEMI ?= no +# Always enable Intel NICs for now. +CONFIG_NICINTEL ?= yes + # Always enable SPI on Intel NICs for now. CONFIG_NICINTEL_SPI ?= yes @@ -297,6 +300,12 @@ PROGRAMMER_OBJS += nicnatsemi.o NEED_PCI := yes endif +ifeq ($(CONFIG_NICINTEL), yes) +FEATURE_CFLAGS += -D'CONFIG_NICINTEL=1' +PROGRAMMER_OBJS += nicintel.o +NEED_PCI := yes +endif + ifeq ($(CONFIG_NICINTEL_SPI), yes) FEATURE_CFLAGS += -D'CONFIG_NICINTEL_SPI=1' PROGRAMMER_OBJS += nicintel_spi.o -- cgit v1.1