ron minnich wrote: > > Can someone comment on whether it's simply safe to change that to a > > fixed coreboot.cbfs filename? > > yes.
Great! > I can do it if you want, or Patrick can. Turns out I did it already but was unsure if it was safe. //Peter
v2 newconfig: romfs->cbfs Signed-off-by: Peter Stuge <[email protected]> Index: config.g =================================================================== --- config.g (revision 4113) +++ config.g (working copy) @@ -2278,15 +2278,15 @@ romsize = getoption("ROM_SIZE", image) # i.name? That can not be right, can it? - file.write("%sfs: %s cbfstool\n" %(i.name,i.name)); + file.write("coreboot.cbfs: %s cbfstool\n" % i.name); file.write("\trm -f coreboot.cbfs\n"); - file.write("\t./cbfstool %sfs create %s %s %s.bootblock\n" % (i.name, romsize, bootblocksize, i.name)) + file.write("\t./cbfstool coreboot.cbfs create %s %s %s.bootblock\n" % (romsize, bootblocksize, i.name)) for i in buildroms: for j in i.roms: #failover is a hack that will go away soon. if (j != "failover") and (rommapping[j] != "/dev/null"): file.write("\tif [ -f %s/cbfs-support ]; then ./cbfstool %sfs add-payload %s %s/payload `cat %s/cbfs-support`; fi\n" % (j, i.name, rommapping[j], j, j)) - file.write("\t ./cbfstool %sfs print\n" % i.name) + file.write("\t ./cbfstool coreboot.cbfs print\n") file.write(".PHONY: all clean cbfstool") for i in romimages.keys():
-- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

