diff options
author | Ward Vandewege <ward@gnu.org> | 2009-05-13 20:08:28 +0000 |
---|---|---|
committer | Myles Watson <mylesgw@gmail.com> | 2009-05-13 20:08:28 +0000 |
commit | a064b5239dd8cda663af5d99603ff21492ca52d7 (patch) | |
tree | c8d523b4a62afbf4f6845ed575f2ee1ca820d6bd /util/newconfig | |
parent | 5eceb32a79d4298a9f57bbe9fd5e06a83db0ce95 (diff) | |
download | coreboot-a064b5239dd8cda663af5d99603ff21492ca52d7.tar.xz |
Add support for human-friendly component string types for the cbfstool add
command.
Make use of it in config.g (Myles)
Signed-off-by: Ward Vandewege <ward@gnu.org>
Acked-by: Myles Watson <mylesgw@gmail.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4282 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/newconfig')
-rw-r--r-- | util/newconfig/config.g | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/newconfig/config.g b/util/newconfig/config.g index 853f0dcc45..f2b8df17a9 100644 --- a/util/newconfig/config.g +++ b/util/newconfig/config.g @@ -2298,7 +2298,7 @@ def writemakefile(path): file.write("\t./cbfstool %s create %s %s %s.bootblock\n" %(i.name, romsize, bootblocksize, i.name)) for j in pciroms: - file.write("\t./cbfstool %s add %s pci%04x,%04x.rom 48\n" % (i.name, j.name, j.pci_vid, j.pci_did)) + file.write("\t./cbfstool %s add %s pci%04x,%04x.rom optionrom\n" % (i.name, j.name, j.pci_vid, j.pci_did)) for j in i.roms: #failover is a hack that will go away soon. if (j != "failover") and (rommapping[j] != "/dev/null"): |