Kyösti Mälkki ([email protected]) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/799
-gerrit commit 9c292cd1e75804fc75904f30529da3a34707f11c Author: Kyösti Mälkki <[email protected]> Date: Fri Mar 16 18:12:33 2012 +0200 Undo bootblock renaming in sconfig Change-Id: Iae26be8cefe7db11eeb8e62fce6f3b8bc9c1f4ed Signed-off-by: Kyösti Mälkki <[email protected]> --- util/sconfig/main.c | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/util/sconfig/main.c b/util/sconfig/main.c index 181be38..a55db26 100644 --- a/util/sconfig/main.c +++ b/util/sconfig/main.c @@ -581,7 +581,14 @@ int main(int argc, char** argv) { while (h->next) { h = h->next; translate_name(h->name, 0); +#if 0 fprintf(autogen, "\tinit_%s();\n", h->name); +#else + char *s = h->name; + while (*s && (*s != '_')) s++; + *s = 0; + fprintf(autogen, "\tbootblock_%s_init();\n", h->name); +#endif } fprintf(autogen, "\treturn 0;\n}\n"); -- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

