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 | 515ab3de05f81253b94e7dd659f09c50724fb830 (patch) | |
tree | 5853f36678a033a13606412ac1d1d1fdc2f35b00 /Makefile | |
parent | 1e637844d58ed05e9b1c3fbffc5811b66bc0a0ad (diff) | |
download | flashrom-515ab3de05f81253b94e7dd659f09c50724fb830.tar.gz flashrom-515ab3de05f81253b94e7dd659f09c50724fb830.tar.bz2 flashrom-515ab3de05f81253b94e7dd659f09c50724fb830.zip |
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) |