mirror of
https://review.coreboot.org/flashrom.git
synced 2025-04-30 08:23:42 +02:00
Mark the following boards as OK
- ASUS M3A78-EM (reported by Christian Heinz <christian.ch.heinz@gmail.com>) http://www.flashrom.org/pipermail/flashrom/2009-September/000629.html - MSI MS-7368 (K9AG Neo2-Digital) (reported by Joshua Roys <roysjosh@gmail.com>) http://www.flashrom.org/pipermail/flashrom/2009-September/000632.html - GIGABYTE GA-MA770T-UD3P (reported by Kevin Sopp <baraclese@googlemail.com>) http://www.flashrom.org/pipermail/flashrom/2009-September/000529.html - Elitegroup P6VAP-A+ Tested by Uwe Hermann <uwe@hermann-uwe.de> on hardware. Maximum supported chip size in this board is 256 KB. Small changes in print.c were required to adjust for longer board names. Corresponding to flashrom svn r734. Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
This commit is contained in:
parent
45835c4092
commit
5714614c7f
@ -1064,6 +1064,7 @@ const struct board_info boards_ok[] = {
|
|||||||
{ "ASUS", "M2A-VM", },
|
{ "ASUS", "M2A-VM", },
|
||||||
{ "ASUS", "M2N-E", },
|
{ "ASUS", "M2N-E", },
|
||||||
{ "ASUS", "M2V", },
|
{ "ASUS", "M2V", },
|
||||||
|
{ "ASUS", "M3A78-EM", },
|
||||||
{ "ASUS", "P2B", },
|
{ "ASUS", "P2B", },
|
||||||
{ "ASUS", "P2B-D", },
|
{ "ASUS", "P2B-D", },
|
||||||
{ "ASUS", "P2B-DS", },
|
{ "ASUS", "P2B-DS", },
|
||||||
@ -1075,6 +1076,7 @@ const struct board_info boards_ok[] = {
|
|||||||
{ "ASUS", "P6T Deluxe V2", },
|
{ "ASUS", "P6T Deluxe V2", },
|
||||||
{ "A-Trend", "ATC-6220", },
|
{ "A-Trend", "ATC-6220", },
|
||||||
{ "BCOM", "WinNET100", },
|
{ "BCOM", "WinNET100", },
|
||||||
|
{ "Elitegroup", "P6VAP-A+", },
|
||||||
{ "GIGABYTE", "GA-6BXC", },
|
{ "GIGABYTE", "GA-6BXC", },
|
||||||
{ "GIGABYTE", "GA-6BXDU", },
|
{ "GIGABYTE", "GA-6BXDU", },
|
||||||
{ "GIGABYTE", "GA-6ZMA", },
|
{ "GIGABYTE", "GA-6ZMA", },
|
||||||
@ -1083,6 +1085,7 @@ const struct board_info boards_ok[] = {
|
|||||||
{ "GIGABYTE", "GA-EX58-UD4P", },
|
{ "GIGABYTE", "GA-EX58-UD4P", },
|
||||||
{ "GIGABYTE", "GA-MA78GPM-DS2H", },
|
{ "GIGABYTE", "GA-MA78GPM-DS2H", },
|
||||||
{ "GIGABYTE", "GA-MA790GP-DS4H", },
|
{ "GIGABYTE", "GA-MA790GP-DS4H", },
|
||||||
|
{ "GIGABYTE", "GA-MA770T-UD3P", },
|
||||||
{ "Intel", "EP80759", },
|
{ "Intel", "EP80759", },
|
||||||
{ "Jetway", "J7F4K1G5D-PB", },
|
{ "Jetway", "J7F4K1G5D-PB", },
|
||||||
{ "MSI", "MS-6570 (K7N2)", },
|
{ "MSI", "MS-6570 (K7N2)", },
|
||||||
@ -1091,6 +1094,7 @@ const struct board_info boards_ok[] = {
|
|||||||
{ "MSI", "MS-7236 (945PL Neo3)", },
|
{ "MSI", "MS-7236 (945PL Neo3)", },
|
||||||
{ "MSI", "MS-7255 (P4M890M)", },
|
{ "MSI", "MS-7255 (P4M890M)", },
|
||||||
{ "MSI", "MS-7345 (P35 Neo2-FIR)", },
|
{ "MSI", "MS-7345 (P35 Neo2-FIR)", },
|
||||||
|
{ "MSI", "MS-7368 (K9AG Neo2-Digital)", },
|
||||||
{ "NEC", "PowerMate 2000", },
|
{ "NEC", "PowerMate 2000", },
|
||||||
{ "PC Engines", "Alix.1c", },
|
{ "PC Engines", "Alix.1c", },
|
||||||
{ "PC Engines", "Alix.2c2", },
|
{ "PC Engines", "Alix.2c2", },
|
||||||
|
4
print.c
4
print.c
@ -181,7 +181,7 @@ void print_supported_boards_helper(const struct board_info *b, const char *msg)
|
|||||||
for (j = 0; j < 25 - strlen(b[i].vendor); j++)
|
for (j = 0; j < 25 - strlen(b[i].vendor); j++)
|
||||||
printf(" ");
|
printf(" ");
|
||||||
printf("%s", b[i].name);
|
printf("%s", b[i].name);
|
||||||
for (j = 0; j < 23 - strlen(b[i].name); j++)
|
for (j = 0; j < 28 - strlen(b[i].name); j++)
|
||||||
printf(" ");
|
printf(" ");
|
||||||
printf("\n");
|
printf("\n");
|
||||||
}
|
}
|
||||||
@ -204,7 +204,7 @@ void print_supported_boards(void)
|
|||||||
for (j = 0; j < 25 - strlen(b[i].vendor_name); j++)
|
for (j = 0; j < 25 - strlen(b[i].vendor_name); j++)
|
||||||
printf(" ");
|
printf(" ");
|
||||||
printf("%s", b[i].board_name);
|
printf("%s", b[i].board_name);
|
||||||
for (j = 0; j < 25 - strlen(b[i].board_name); j++)
|
for (j = 0; j < 30 - strlen(b[i].board_name); j++)
|
||||||
printf(" ");
|
printf(" ");
|
||||||
if (b[i].lb_vendor != NULL)
|
if (b[i].lb_vendor != NULL)
|
||||||
printf("-m %s:%s\n", b[i].lb_vendor, b[i].lb_part);
|
printf("-m %s:%s\n", b[i].lb_vendor, b[i].lb_part);
|
||||||
|
@ -119,6 +119,7 @@ const struct board_info_url boards_url[] = {
|
|||||||
{ "ASUS", "M2A-VM", "http://www.asus.com.tw/products.aspx?l1=3&l2=101&l3=496&l4=0&model=1568&modelmenu=1" },
|
{ "ASUS", "M2A-VM", "http://www.asus.com.tw/products.aspx?l1=3&l2=101&l3=496&l4=0&model=1568&modelmenu=1" },
|
||||||
{ "ASUS", "M2N-E", "http://www.asus.com/products.aspx?l1=3&l2=101&l3=308&l4=0&model=1181&modelmenu=1" },
|
{ "ASUS", "M2N-E", "http://www.asus.com/products.aspx?l1=3&l2=101&l3=308&l4=0&model=1181&modelmenu=1" },
|
||||||
{ "ASUS", "M2V", "http://asus.com/Product.aspx?P_ID=OqYlEDFfF6ZqZGvp" },
|
{ "ASUS", "M2V", "http://asus.com/Product.aspx?P_ID=OqYlEDFfF6ZqZGvp" },
|
||||||
|
{ "ASUS", "M3A78-EM", "http://www.asus.com/product.aspx?P_ID=KjpYqzmAd9vsTM2D" },
|
||||||
{ "ASUS", "P2B", "http://www.motherboard.cz/mb/asus/P2B.htm" },
|
{ "ASUS", "P2B", "http://www.motherboard.cz/mb/asus/P2B.htm" },
|
||||||
{ "ASUS", "P2B-D", "ftp://ftp.asus.com.tw/pub/ASUS/mb/slot1/440bx/p2b-d/" },
|
{ "ASUS", "P2B-D", "ftp://ftp.asus.com.tw/pub/ASUS/mb/slot1/440bx/p2b-d/" },
|
||||||
{ "ASUS", "P2B-DS", "ftp://ftp.asus.com.tw/pub/ASUS/mb/slot1/440bx/p2b-ds/" },
|
{ "ASUS", "P2B-DS", "ftp://ftp.asus.com.tw/pub/ASUS/mb/slot1/440bx/p2b-ds/" },
|
||||||
@ -130,6 +131,7 @@ const struct board_info_url boards_url[] = {
|
|||||||
{ "ASUS", "P6T Deluxe V2", "http://www.asus.com/product.aspx?P_ID=iRlP8RG9han6saZx" },
|
{ "ASUS", "P6T Deluxe V2", "http://www.asus.com/product.aspx?P_ID=iRlP8RG9han6saZx" },
|
||||||
{ "A-Trend", "ATC-6220", "http://www.motherboard.cz/mb/atrend/atc6220.htm" },
|
{ "A-Trend", "ATC-6220", "http://www.motherboard.cz/mb/atrend/atc6220.htm" },
|
||||||
{ "BCOM", "WinNET100", "http://www.coreboot.org/BCOM_WINNET100" },
|
{ "BCOM", "WinNET100", "http://www.coreboot.org/BCOM_WINNET100" },
|
||||||
|
{ "Elitegroup", "P6VAP-A+", "http://www.ecs.com.tw/ECSWebSite/Products/ProductsDetail.aspx?detailid=117&CategoryID=1&DetailName=Specification&MenuID=1&LanID=0" },
|
||||||
{ "GIGABYTE", "GA-6BXC", "http://www.gigabyte.com.tw/Products/Motherboard/Products_Spec.aspx?ClassValue=Motherboard&ProductID=1445&ProductName=GA-6BXC" },
|
{ "GIGABYTE", "GA-6BXC", "http://www.gigabyte.com.tw/Products/Motherboard/Products_Spec.aspx?ClassValue=Motherboard&ProductID=1445&ProductName=GA-6BXC" },
|
||||||
{ "GIGABYTE", "GA-6BXDU", "http://www.gigabyte.com.tw/Products/Motherboard/Products_Spec.aspx?ProductID=1429" },
|
{ "GIGABYTE", "GA-6BXDU", "http://www.gigabyte.com.tw/Products/Motherboard/Products_Spec.aspx?ProductID=1429" },
|
||||||
{ "GIGABYTE", "GA-6ZMA", "http://www.gigabyte.de/Support/Motherboard/BIOS_Model.aspx?ProductID=3289" },
|
{ "GIGABYTE", "GA-6ZMA", "http://www.gigabyte.de/Support/Motherboard/BIOS_Model.aspx?ProductID=3289" },
|
||||||
@ -137,6 +139,7 @@ const struct board_info_url boards_url[] = {
|
|||||||
{ "GIGABYTE", "GA-EP35-DS3L", "http://www.gigabyte.com.tw/Products/Motherboard/Products_Overview.aspx?ProductID=2778" },
|
{ "GIGABYTE", "GA-EP35-DS3L", "http://www.gigabyte.com.tw/Products/Motherboard/Products_Overview.aspx?ProductID=2778" },
|
||||||
{ "GIGABYTE", "GA-MA790GP-DS4H", "http://www.gigabyte.com.tw/Products/Motherboard/Products_Spec.aspx?ProductID=2887" },
|
{ "GIGABYTE", "GA-MA790GP-DS4H", "http://www.gigabyte.com.tw/Products/Motherboard/Products_Spec.aspx?ProductID=2887" },
|
||||||
{ "GIGABYTE", "GA-MA78GPM-DS2H", "http://www.gigabyte.com.tw/Products/Motherboard/Products_Spec.aspx?ProductID=2859" },
|
{ "GIGABYTE", "GA-MA78GPM-DS2H", "http://www.gigabyte.com.tw/Products/Motherboard/Products_Spec.aspx?ProductID=2859" },
|
||||||
|
{ "GIGABYTE", "GA-MA770T-UD3P", "http://www.gigabyte.com.tw/Products/Motherboard/Products_Spec.aspx?ProductID=3096" },
|
||||||
{ "Intel", "EP80759", NULL },
|
{ "Intel", "EP80759", NULL },
|
||||||
{ "Jetway", "J7F4K1G5D-PB", "http://www.jetway.com.tw/jetway/system/productshow2.asp?id=389&proname=J7F4K1G5D-P" },
|
{ "Jetway", "J7F4K1G5D-PB", "http://www.jetway.com.tw/jetway/system/productshow2.asp?id=389&proname=J7F4K1G5D-P" },
|
||||||
{ "MSI", "MS-6570 (K7N2)", "http://www.msi-computer.de/index.php?func=proddesc&prod_no=519&maincat_no=1" },
|
{ "MSI", "MS-6570 (K7N2)", "http://www.msi-computer.de/index.php?func=proddesc&prod_no=519&maincat_no=1" },
|
||||||
@ -145,6 +148,7 @@ const struct board_info_url boards_url[] = {
|
|||||||
{ "MSI", "MS-7236 (945PL Neo3)", "http://www.msi.com/index.php?func=proddesc&maincat_no=1&prod_no=1173" },
|
{ "MSI", "MS-7236 (945PL Neo3)", "http://www.msi.com/index.php?func=proddesc&maincat_no=1&prod_no=1173" },
|
||||||
{ "MSI", "MS-7255 (P4M890M)", "http://www.tcsbahamas.com/P4M89.htm" },
|
{ "MSI", "MS-7255 (P4M890M)", "http://www.tcsbahamas.com/P4M89.htm" },
|
||||||
{ "MSI", "MS-7345 (P35 Neo2-FIR)","http://www.msi.com/index.php?func=prodcpusupport&maincat_no=1&cat2_no=170&cat3_no=&prod_no=1261" },
|
{ "MSI", "MS-7345 (P35 Neo2-FIR)","http://www.msi.com/index.php?func=prodcpusupport&maincat_no=1&cat2_no=170&cat3_no=&prod_no=1261" },
|
||||||
|
{ "MSI", "MS-7368 (K9AG Neo2-Digital)", "http://www.msi.com/index.php?func=proddesc&maincat_no=1&prod_no=1241" },
|
||||||
{ "NEC", "PowerMate 2000", "http://support.necam.com/mobilesolutions/hardware/Desktops/pm2000/celeron/" },
|
{ "NEC", "PowerMate 2000", "http://support.necam.com/mobilesolutions/hardware/Desktops/pm2000/celeron/" },
|
||||||
{ "PC Engines", "Alix.1c", "http://pcengines.ch/alix1c.htm" },
|
{ "PC Engines", "Alix.1c", "http://pcengines.ch/alix1c.htm" },
|
||||||
{ "PC Engines", "Alix.2c2", "http://pcengines.ch/alix2c2.htm" },
|
{ "PC Engines", "Alix.2c2", "http://pcengines.ch/alix2c2.htm" },
|
||||||
|
Loading…
x
Reference in New Issue
Block a user