Author: hailfinger Date: Fri Oct 8 00:21:45 2010 New Revision: 1200 URL: http://flashrom.org/trac/flashrom/changeset/1200
Log: 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 [email protected] instead. Signed-off-by: Carl-Daniel Hailfinger <[email protected]> Acked-by: Uwe Hermann <[email protected]> Modified: trunk/flashrom.8 trunk/pcidev.c trunk/print.c Modified: trunk/flashrom.8 ============================================================================== --- trunk/flashrom.8 Thu Oct 7 01:48:34 2010 (r1199) +++ trunk/flashrom.8 Fri Oct 8 00:21:45 2010 (r1200) @@ -476,6 +476,9 @@ .B " http://www.flashrom.org/trac/flashrom/newticket" .sp or on the flashrom mailing list at +.B "<[email protected]>" +.sp +We recommend to subscribe first at .sp .B " http://www.flashrom.org/mailman/listinfo/flashrom" .sp @@ -492,73 +495,75 @@ .br Please see the individual files. .SH AUTHORS -Andrew Morgan <[email protected]> +Andrew Morgan .br Carl-Daniel Hailfinger .br -Claus Gindhart <[email protected]> +Claus Gindhart .br -David Borg <[email protected]> +David Borg .br -David Hendricks <[email protected]> +David Hendricks .br -Dominik Geyer <[email protected]> +Dominik Geyer .br Eric Biederman .br -Giampiero Giancipoli <[email protected]> +Giampiero Giancipoli .br -Helge Wagner <[email protected]> +Helge Wagner .br -Idwer Vollering <[email protected]> +Idwer Vollering .br -Joe Bao <[email protected]> +Joe Bao .br -Jörg Fischer <[email protected]> +Jörg Fischer .br -Joshua Roys <[email protected]> +Joshua Roys .br -Luc Verhaegen <[email protected]> +Luc Verhaegen .br Li-Ta Lo .br -Markus Boas <[email protected]> +Markus Boas .br -Mattias Mattsson <[email protected]> +Mattias Mattsson .br -Michael Karcher <[email protected]> +Michael Karcher .br -Nikolay Petukhov <[email protected]> +Nikolay Petukhov .br -Patrick Georgi <[email protected]> +Patrick Georgi .br -Peter Lemenkov <[email protected]> +Peter Lemenkov .br -Peter Stuge <[email protected]> +Peter Stuge .br -Reinder E.N. de Haan <[email protected]> +Reinder E.N. de Haan .br -Ronald G. Minnich <[email protected]> +Ronald G. Minnich .br -Ronald Hoogenboom <[email protected]> +Ronald Hoogenboom .br -Sean Nelson <[email protected]> +Sean Nelson .br -Stefan Reinauer <[email protected]> +Stefan Reinauer .br -Stefan Wildemann <[email protected]> +Stefan Wildemann .br -Stephan Guilloux <[email protected]> +Stephan Guilloux .br -Steven James <[email protected]> +Steven James .br -Uwe Hermann <[email protected]> +Uwe Hermann .br Wang Qingpei .br Yinghai Lu .br -some others +some others, please see the flashrom svn changelog for details. +.br +All authors can be reached via e-mail at <[email protected]>. .PP This manual page was written by Uwe Hermann <[email protected]> and Carl-Daniel Hailfinger. Modified: trunk/pcidev.c ============================================================================== --- trunk/pcidev.c Thu Oct 7 01:48:34 2010 (r1199) +++ trunk/pcidev.c Fri Oct 8 00:21:45 2010 (r1200) @@ -134,7 +134,7 @@ msg_pinfo("PCI devices:\n"); for (i = 0; devs[i].vendor_name != NULL; i++) { - msg_pinfo("%s %s [%02x:%02x]%s\n", devs[i].vendor_name, + msg_pinfo("%s %s [%04x:%04x]%s\n", devs[i].vendor_name, devs[i].device_name, devs[i].vendor_id, devs[i].device_id, (devs[i].status == NT) ? " (untested)" : ""); Modified: trunk/print.c ============================================================================== --- trunk/print.c Thu Oct 7 01:48:34 2010 (r1199) +++ trunk/print.c Fri Oct 8 00:21:45 2010 (r1200) @@ -238,6 +238,7 @@ 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 @@ 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", _______________________________________________ flashrom mailing list [email protected] http://www.flashrom.org/mailman/listinfo/flashrom
