diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2009-05-15 17:02:34 +0000 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2009-05-15 17:02:34 +0000 |
commit | f3db85c9998f7eed1d310dafe7ebb53497f98388 (patch) | |
tree | 5853f36678a033a13606412ac1d1d1fdc2f35b00 /Makefile | |
parent | da3e916c6947fae1b02359fa2f14bd3c467a37a7 (diff) | |
download | flashrom-f3db85c9998f7eed1d310dafe7ebb53497f98388.zip flashrom-f3db85c9998f7eed1d310dafe7ebb53497f98388.tar.gz |
Refactor parts of the 3COM NIC code
Move the reusable PCI specific parts into pcidev.c, they'll be usable
for other NIC code (Realtek, VIA, ...) and also for SATA/IDE controller
cards as external programmers (for every PCI device which can program
EEPROMs basically).
Also add print_supported_pcidevs() to show the supported PCI devices
(currently only NICs, soon more) in the 'flashrom -L' output.
Corresponding to flashrom svn r515.
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -33,7 +33,7 @@ OBJS = chipset_enable.o board_enable.o udelay.o jedec.o stm50flw0x0x.o \ sst49lfxxxc.o sst_fwhub.o layout.o cbtable.o flashchips.o physmap.o \ flashrom.o w39v080fa.o sharplhf00l04.o w29ee011.o spi.o it87spi.o \ ichspi.o w39v040c.o sb600spi.o wbsio_spi.o m29f002.o internal.o \ - dummyflasher.o nic3com.o + dummyflasher.o pcidev.o nic3com.o all: pciutils dep $(PROGRAM) |