Changeset 1393


Ignore:
Timestamp:
07/26/11 16:33:46 (10 months ago)
Author:
stefanct
Message:

add a bunch of new/tested stuff and various small changes 6

  • fix urls, typos, whitespace etc.
  • fix counting of supported chips in the wiki output

Signed-off-by: Stefan Tauner <stefan.tauner@…>
the last one is
Acked-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@…>
everything else is
Acked-by: Stefan Tauner <stefan.tauner@…>

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/flashrom.c

    r1392 r1393  
    17141714                ret = 1; 
    17151715        } 
    1716         /* It would be favorable if we could also check for correct terminaion 
     1716        /* It would be favorable if we could also check for correct termination 
    17171717         * of the following arrays, but we don't know their sizes in here... 
    17181718         * For 'flashchips' we check the first element to be non-null. In the 
  • trunk/print.c

    r1386 r1393  
    517517        B("EPoX",       "EP-8RDA3+",            1, "http://www.epox.com/product.asp?ID=EP-8RDA3plus", NULL), 
    518518        B("EPoX",       "EP-BX3",               1, "http://www.epox.com/product.asp?ID=EP-BX3", NULL), 
    519         B("EVGA",       "132-CK-NF78",          1, "http://http://www.evga.com/articles/385.asp", NULL), 
     519        B("EVGA",       "132-CK-NF78",          1, "http://www.evga.com/articles/385.asp", NULL), 
    520520        B("EVGA",       "270-WS-W555-A2 (Classified SR-2)", 1, "http://www.evga.com/products/moreInfo.asp?pn=270-WS-W555-A2", NULL), 
    521521        B("FIC",        "VA-502",               0, "ftp://ftp.fic.com.tw/motherboard/manual/socket7/va-502/", "No public report found. Owned by Uwe Hermann <uwe@hermann-uwe.de>. Seems the PCI subsystem IDs are identical with the Tekram P6Pro-A5. May work now."), 
     
    581581        B("Intel",      "SE440BX-2",            0, "http://downloadcenter.intel.com/SearchResult.aspx?lang=eng&ProductFamily=Desktop+Boards&ProductLine=Discontinued+Motherboards&ProductProduct=Intel%C2%AE+SE440BX-2+Motherboard", "Probably won't work, see http://www.coreboot.org/pipermail/flashrom/2010-July/003952.html"), 
    582582        B("IWILL",      "DK8-HTX",              1, "http://web.archive.org/web/20060507170150/http://www.iwill.net/product_2.asp?p_id=98", NULL), 
    583         B("Jetway",     "J7F4K1G5D-PB",         1, "http://www.jetway.com.tw/jetway/system/productshow2.asp?id=389&proname=J7F4K1G5D-P", NULL), 
     583        B("Jetway",     "J-7BXAN",              1, "http://www.jetway.com.tw/evisn/download/d7BXAS.htm", NULL), 
     584        B("Jetway",     "J7F4K1G5D-PB",         1, "http://www.jetway.com.tw/jw/ipcboard_view.asp?productid=282&proname=J7F4K1G5D", NULL), 
    584585        B("Kontron",    "986LCD-M",             1, "http://de.kontron.com/products/boards+and+mezzanines/embedded+motherboards/miniitx+motherboards/986lcdmmitx.html", NULL), 
    585586        B("Lanner",     "EM-8510C",             1, NULL, NULL), 
     
    603604        B("MSI",        "MS-7025 (K8N Neo2 Platinum)", 1, "http://www.msi.com/product/mb/K8N-Neo2-Platinum.html", NULL), 
    604605        B("MSI",        "MS-7046",              1, "http://www.heimir.de/ms7046/", NULL), 
    605         B("MSI",        "MS-7061 (KM3M-V/KM4M-V/KM4AM-V)", 1, "http://www.msi.com/service/search/?kw=7061&type=product", NULL), 
     606        B("MSI",        "MS-7061 (KM4M-V/KM4AM-V)", 1, "http://www.msi.com/service/search/?kw=7061&type=product", NULL), 
    606607        B("MSI",        "MS-7065",              1, "http://browse.geekbench.ca/geekbench2/view/53114", NULL), 
    607608        B("MSI",        "MS-7135 (K8N Neo3)",   1, "http://www.msi.com/product/mb/K8N-Neo3.html", NULL), 
  • trunk/print_wiki.c

    r1357 r1393  
    206206        char *s; 
    207207 
    208         for (f = flashchips; f->name != NULL; f++) 
     208        for (f = flashchips; f->name != NULL; f++) { 
     209                /* Don't count "unknown XXXX SPI chip" entries. */ 
     210                if (!strncmp(f->name, "unknown", 7)) 
     211                        continue; 
    209212                chipcount++; 
     213        } 
    210214 
    211215        printf("\n== Supported chips ==\n\nTotal amount of supported " 
Note: See TracChangeset for help on using the changeset viewer.