diff options
author | Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> | 2010-10-07 22:21:45 +0000 |
---|---|---|
committer | Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> | 2010-10-07 22:21:45 +0000 |
commit | a36e1ecb48aee22cc19da46d2d01ac70dd16bc28 (patch) | |
tree | 347cc269e44d00b30c2dc8f2eff0995592d4c8a0 /print.c | |
parent | 620dd805e9eed31207390de4f97c21f6c57c897f (diff) | |
download | flashrom-a36e1ecb48aee22cc19da46d2d01ac70dd16bc28.zip flashrom-a36e1ecb48aee22cc19da46d2d01ac70dd16bc28.tar.gz |
List the devices for all supported programmers in "flashrom -L" output
Fix PCI device ID printing.
Remove personal e-mail addresses from the man page, point people to
flashrom@flashrom.org instead.
Corresponding to flashrom svn r1200.
Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
Diffstat (limited to 'print.c')
-rw-r--r-- | print.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -238,6 +238,7 @@ void print_supported(void) printf("\nSupported devices for the %s programmer:\n", programmer_table[PROGRAMMER_DUMMY].name); /* FIXME */ + printf("Dummy device, does nothing and logs all accesses\n"); #endif #if CONFIG_NIC3COM == 1 printf("\nSupported devices for the %s programmer:\n", @@ -286,21 +287,25 @@ void print_supported(void) printf("\nSupported devices for the %s programmer:\n", programmer_table[PROGRAMMER_SERPROG].name); /* FIXME */ + printf("All programmer devices speaking the serprog protocol\n"); #endif #if CONFIG_BUSPIRATE_SPI == 1 printf("\nSupported devices for the %s programmer:\n", programmer_table[PROGRAMMER_BUSPIRATE_SPI].name); /* FIXME */ + printf("Dangerous Prototypes Bus Pirate\n"); #endif #if CONFIG_DEDIPROG == 1 printf("\nSupported devices for the %s programmer:\n", programmer_table[PROGRAMMER_DEDIPROG].name); /* FIXME */ + printf("Dediprog SF100\n"); #endif #if CONFIG_RAYER_SPI == 1 printf("\nSupported devices for the %s programmer:\n", programmer_table[PROGRAMMER_RAYER_SPI].name); /* FIXME */ + printf("RayeR parallel port programmer\n"); #endif #if CONFIG_NICINTEL_SPI == 1 printf("\nSupported devices for the %s programmer:\n", |