summaryrefslogtreecommitdiffstats
path: root/print_wiki.c
diff options
context:
space:
mode:
authorStefan Tauner <stefan.tauner@alumni.tuwien.ac.at>2015-03-01 22:04:38 +0000
committerStefan Tauner <stefan.tauner@alumni.tuwien.ac.at>2015-03-01 22:04:38 +0000
commit74dc73f6907ea159c0d5d221309e266528ea6134 (patch)
tree15dba04ff8d31e6a4dce586a520311cc9e58f1d7 /print_wiki.c
parentadadca66f2ce2cb03ece016ab07fef604283c667 (diff)
downloadflashrom-74dc73f6907ea159c0d5d221309e266528ea6134.tar.gz
flashrom-74dc73f6907ea159c0d5d221309e266528ea6134.tar.bz2
flashrom-74dc73f6907ea159c0d5d221309e266528ea6134.zip
Add a bunch of new/tested stuff and various small changes 23
Tested mainboards: OK: - Elitegroup GF7050VT-M Reported by Alex - Fujitsu D2724-A1x (used in ESPRIMO E5625) Reported by Rainer Spillmann - Teclast X98 Air 3G Reported by Antonio Ospite Flash chips: - Fix MX25L6405(D) definition by splitting it. Reported by Reggie McMurtrey - Add Macronix MX25L..08E family and rearrange MX25L6436E. - Pm49FL004 to PREW (+EW) Reported by Georg Sauthoff Miscellaneous: - Add board enable for abit KN9 Ultra. - Mark ARM-USB-OCD as working OK. - Use "mobile devices" instead of "laptops" in output. - Tiny other stuff. Corresponding to flashrom svn r1886. Signed-off-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at> Acked-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at>
Diffstat (limited to 'print_wiki.c')
-rw-r--r--print_wiki.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/print_wiki.c b/print_wiki.c
index 2936dbf86..d2fb5e28d 100644
--- a/print_wiki.c
+++ b/print_wiki.c
@@ -133,15 +133,15 @@ static const char *test_state_to_template(enum test_state test_state)
}
#if CONFIG_INTERNAL == 1
-static const char laptop_intro[] = "\n== Supported laptops/notebooks ==\n\n\
-In general, flashing laptops is more difficult because laptops\n\n\
+static const char laptop_intro[] = "\n== Supported mobile devices (laptops, tablets etc.) ==\n\n\
+In general, flashing mobile devices is more difficult because they\n\n\
* often use the flash chip for stuff besides the BIOS,\n\
* often have special protection stuff which has to be handled by flashrom,\n\
* often use flash translation circuits which need drivers in flashrom.\n\n\
<div style=\"margin-top:0.5em; padding:0.5em 0.5em 0.5em 0.5em; \
background-color:#ff6666; align:right; border:1px solid #000000;\">\n\
'''IMPORTANT:''' At this point we recommend to '''not''' use flashrom on \
-untested laptops unless you have a means to recover from a flashing that goes \
+untested mobile devices unless you have a means to recover from a flashing that goes \
wrong (a working backup flash chip and/or good soldering skills).\n</div>\n";
static void print_supported_chipsets_wiki(int cols)
@@ -275,10 +275,10 @@ static void print_supported_boards_wiki_helper(const char *devicetype, int cols,
static void print_supported_boards_wiki(void)
{
printf("%s", board_intro);
- print_supported_boards_wiki_helper("boards", 2, boards_known);
+ print_supported_boards_wiki_helper("mainboards", 2, boards_known);
printf("%s", laptop_intro);
- print_supported_boards_wiki_helper("laptops", 1, laptops_known);
+ print_supported_boards_wiki_helper("mobile devices", 1, laptops_known);
}
#endif