Author: stefanct Date: Fri Feb 17 21:03:37 2012 New Revision: 1502 URL: http://flashrom.org/trac/flashrom/changeset/1502
Log: Add a bunch of new/tested stuff and various small changes 11
Tested Mainboards: NOT OK: - HP dc7800 http://paste.flashrom.org/view.php?id=1084
- add "Low Profile Desktop" to our dmi whitelist - fix print_wiki (broken since r1488)
Signed-off-by: Stefan Tauner stefan.tauner@student.tuwien.ac.at Acked-by: Stefan Tauner stefan.tauner@student.tuwien.ac.at
Modified: trunk/dmi.c trunk/print.c trunk/print_wiki.c
Modified: trunk/dmi.c ============================================================================== --- trunk/dmi.c Fri Feb 17 15:51:15 2012 (r1501) +++ trunk/dmi.c Fri Feb 17 21:03:37 2012 (r1502) @@ -71,7 +71,8 @@ } dmi_chassis_types[] = { {0x01, 2, "Other"}, {0x02, 2, "Unknown"}, - {0x03, 0, "Desktop",}, + {0x03, 0, "Desktop"}, + {0x04, 0, "Low Profile Desktop"}, {0x06, 0, "Mini Tower"}, {0x07, 0, "Tower"}, {0x08, 1, "Portable"},
Modified: trunk/print.c ============================================================================== --- trunk/print.c Fri Feb 17 15:51:15 2012 (r1501) +++ trunk/print.c Fri Feb 17 21:03:37 2012 (r1502) @@ -798,6 +798,7 @@ B("HP", "ProLiant DL165 G6", 1, "http://h10010.www1.hp.com/wwpc/us/en/sm/WF05a/15351-15351-3328412-241644-332...", NULL), B("HP", "ProLiant N40L", 1, NULL, NULL), B("HP", "Puffer2-UL8E", 1, "http://h10025.www1.hp.com/ewfrf/wc/document?docname=c00300023", NULL), + B("HP", "dc7800", 0, "http://h10010.www1.hp.com/wwpc/us/en/sm/WF06a/12454-12454-64287-321860-33288...", "ICH9DO with SPI lock down, BIOS lock, PR, read-only descriptor, locked ME region."), B("HP", "Vectra VL400", 1, "http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?objectID=c0006...", NULL), B("HP", "Vectra VL420 SFF", 1, "http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?objectID=c0006...", NULL), B("HP", "xw4400 (0A68h)", 0, "http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?objectID=c0077...", "ICH7 with SPI lock down, BIOS lock, flash block detection (SST25VF080B); see http://paste.flashrom.org/view.php?id=686"),
Modified: trunk/print_wiki.c ============================================================================== --- trunk/print_wiki.c Fri Feb 17 15:51:15 2012 (r1501) +++ trunk/print_wiki.c Fri Feb 17 21:03:37 2012 (r1502) @@ -220,6 +220,7 @@ if (!strncmp(f->vendor, "Unknown", 7) || !strncmp(f->vendor, "Programmer", 10) || !strncmp(f->name, "unknown", 7)) + continue; chipcount++; }