diff options
| author | Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at> | 2012-02-17 20:03:37 +0000 | 
|---|---|---|
| committer | Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at> | 2012-02-17 20:03:37 +0000 | 
| commit | 4c5665f9ab4286710d4ae3998532bd8f1fb225a6 (patch) | |
| tree | 2efd9c1c9e14f8330e6c28c776b4c977176b6dd3 | |
| parent | d708fadb4bbf8129d97c7652f715a2a8c51eb5bc (diff) | |
| download | flashrom-4c5665f9ab4286710d4ae3998532bd8f1fb225a6.tar.gz flashrom-4c5665f9ab4286710d4ae3998532bd8f1fb225a6.tar.bz2 flashrom-4c5665f9ab4286710d4ae3998532bd8f1fb225a6.zip  | |
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)
Corresponding to flashrom svn r1502.
Signed-off-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at>
Acked-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at>
| -rw-r--r-- | dmi.c | 3 | ||||
| -rw-r--r-- | print.c | 1 | ||||
| -rw-r--r-- | print_wiki.c | 1 | 
3 files changed, 4 insertions, 1 deletions
@@ -71,7 +71,8 @@ static const struct {  } 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"}, @@ -798,6 +798,7 @@ const struct board_info boards_known[] = {  	B("HP",		"ProLiant DL165 G6",	1, "http://h10010.www1.hp.com/wwpc/us/en/sm/WF05a/15351-15351-3328412-241644-3328421-3955644.html", 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-3328898-3459241.html?dnr=1", "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=c00060658&lang=en&cc=us", NULL),  	B("HP",		"Vectra VL420 SFF",	1, "http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?objectID=c00060661&lang=en&cc=us", NULL),  	B("HP",		"xw4400 (0A68h)",	0, "http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?objectID=c00775230", "ICH7 with SPI lock down, BIOS lock, flash block detection (SST25VF080B); see http://paste.flashrom.org/view.php?id=686"), diff --git a/print_wiki.c b/print_wiki.c index 0213c741..377154d9 100644 --- a/print_wiki.c +++ b/print_wiki.c @@ -220,6 +220,7 @@ static void print_supported_chips_wiki(int cols)  		if (!strncmp(f->vendor, "Unknown", 7) ||  		    !strncmp(f->vendor, "Programmer", 10) ||  		    !strncmp(f->name, "unknown", 7)) +			continue;  		chipcount++;  	}  | 
