Allow setting of rom_address where needed.

Signed-off-by: Ronald G. Minnich <rminnich@gmail.com>
Acked-by: Ronald G. Minnich <rminnich@gmail.com>



git-svn-id: svn://coreboot.org/repository/coreboot-v3@938 f3766cd6-281f-0410-b1cd-43a5c92072e9
This commit is contained in:
Ronald G. Minnich 2008-10-20 15:21:19 +00:00
commit 36d976d16c

View file

@ -666,6 +666,10 @@ static void coreboot_emit_special(FILE *e, struct node *tree)
enabled = 0;
}
if (streq(prop->name, "rom_address")){
fprintf(f, "\t.rom_address = %s,\n", prop->val.val);
}
if (streq(prop->name, "config")){
fprintf(f, "\t.device_configuration = &%s,\n", clean(tree->label, 1));
}