From 483b7bbd7703ebe100ea7b10393e18712bbafc95 Mon Sep 17 00:00:00 2001 From: Peter Stuge Date: Tue, 14 Apr 2009 07:40:01 +0000 Subject: v2/src romfs->cbfs rename This also has the config tool changes in v2/util. Rename romfs.[ch]->cbfs.[ch] and sed romfs->cbfs romtool->cbfstool ROMFS->CBFS Signed-off-by: Peter Stuge Acked-by: Ronald G. Minnich git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4113 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/boot/hardwaremain.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/boot/hardwaremain.c') diff --git a/src/boot/hardwaremain.c b/src/boot/hardwaremain.c index aaf82fa30d..99c4d3079c 100644 --- a/src/boot/hardwaremain.c +++ b/src/boot/hardwaremain.c @@ -36,7 +36,7 @@ it with the version available from LANL. #include #include #include -#include +#include #if HAVE_ACPI_RESUME == 1 #include #endif @@ -112,11 +112,11 @@ void hardwaremain(int boot_complete) * write our configuration tables. */ lb_mem = write_tables(); -#if CONFIG_ROMFS == 1 +#if CONFIG_CBFS == 1 # if USE_FALLBACK_IMAGE == 1 - void (*pl)(void) = romfs_load_payload(lb_mem, "fallback/payload"); + void (*pl)(void) = cbfs_load_payload(lb_mem, "fallback/payload"); # else - void (*pl)(void) = romfs_load_payload(lb_mem, "normal/payload"); + void (*pl)(void) = cbfs_load_payload(lb_mem, "normal/payload"); # endif #endif -- cgit v1.2.3