Rework bootblock size handling:
- don't pretend to create a bootblock as large as the ROM in Kconfig (it's 64k at most) - don't pretend to accept a bootblocksize value in cbfstool create (it ignored it) - patch up the build systems to keep it working Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de> Acked-by: Myles Watson <mylesgw@gmail.com> Acked-by: Peter Stuge <peter@stuge.se> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4934 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
@@ -2295,8 +2295,8 @@ def writemakefile(path):
|
||||
for j in i.roms:
|
||||
file.write(" %s/coreboot.rom " % j)
|
||||
file.write("> %s.bootblock\n\n" %i.name)
|
||||
file.write("\t./cbfs/cbfstool %s create %s %s %s.bootblock\n"
|
||||
%(i.name, romsize, bootblocksize, i.name))
|
||||
file.write("\t./cbfs/cbfstool %s create %s %s.bootblock\n"
|
||||
%(i.name, romsize, i.name))
|
||||
for j in pciroms:
|
||||
file.write("\t./cbfs/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:
|
||||
|
Reference in New Issue
Block a user