mirror of
https://review.coreboot.org/flashrom.git
synced 2025-04-26 22:52:34 +02:00
print_wiki.c: print programmers of type OTHER too
Corresponding to flashrom svn r1633. Signed-off-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at> Acked-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at>
This commit is contained in:
parent
4b24a2d70b
commit
2c421199ab
16
print_wiki.c
16
print_wiki.c
@ -373,6 +373,22 @@ static void print_supported_devs_wiki()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
printf("\n|}\n\n|}\n");
|
printf("\n|}\n\n|}\n");
|
||||||
|
|
||||||
|
printf("\n== Other programmers ==\n\n"
|
||||||
|
"{%s", th_start);
|
||||||
|
printf("! align=\"left\" | Programmer\n"
|
||||||
|
"! align=\"left\" | Note\n\n");
|
||||||
|
|
||||||
|
for (i = 0; i < PROGRAMMER_INVALID; i++) {
|
||||||
|
static int c = 0;
|
||||||
|
const struct programmer_entry prog = programmer_table[i];
|
||||||
|
if (prog.type == OTHER && prog.devs.note != NULL) {
|
||||||
|
c = !c;
|
||||||
|
printf("|- bgcolor=\"#%s\"\n", (c) ? "eeeeee" : "dddddd");
|
||||||
|
printf("| %s || %s", prog.name, prog.devs.note);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
printf("\n|}\n\n|}\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
void print_supported_wiki(void)
|
void print_supported_wiki(void)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user