From a034dca42cc1638e4917e38b98e7dc6b434f2357 Mon Sep 17 00:00:00 2001 From: Patrick Georgi Date: Wed, 27 May 2009 14:19:31 +0000 Subject: Move coreboot_ram and coreboot_apc to CBFS. This allows to reduce the size of the bootblock (done for kontron/986lcd-m) Signed-off-by: Patrick Georgi Acked-by: Ronald G. Minnich git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4315 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- util/newconfig/config.g | 3 +++ 1 file changed, 3 insertions(+) (limited to 'util') diff --git a/util/newconfig/config.g b/util/newconfig/config.g index b8b8c16e9c..2bd4ca6c4b 100644 --- a/util/newconfig/config.g +++ b/util/newconfig/config.g @@ -2303,6 +2303,9 @@ def writemakefile(path): #failover is a hack that will go away soon. if (j != "failover") and (rommapping[j] != "/dev/null"): file.write("\t./cbfstool %s add-payload %s %s/payload $(CBFS_COMPRESS_FLAG)\n" % (i.name, rommapping[j], j,)) + if (j != "failover"): + file.write("\t./cbfstool %s add-stage %s/coreboot_ram %s/coreboot_ram $(CBFS_COMPRESS_FLAG)\n" % (i.name, j, j,)) + file.write("\tif [ -f %s/coreboot_apc ]; then ./cbfstool %s add-stage %s/coreboot_apc %s/coreboot_apc $(CBFS_COMPRESS_FLAG); fi\n" % (j, i.name, j, j,)) file.write("\t./cbfstool %s print\n" % i.name) file.write("\n") file.write("else\n\n") -- cgit v1.2.3