aboutsummaryrefslogtreecommitdiff
path: root/src/boot/hardwaremain.c
diff options
context:
space:
mode:
authorPeter Stuge <peter@stuge.se>2009-04-14 07:40:01 +0000
committerPeter Stuge <peter@stuge.se>2009-04-14 07:40:01 +0000
commit483b7bbd7703ebe100ea7b10393e18712bbafc95 (patch)
treee789cebd812f01966e5a85fde02d3dafb147ac45 /src/boot/hardwaremain.c
parent3935b19d9fb46ef8b57a1f2817d20113aa867920 (diff)
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 <peter@stuge.se> Acked-by: Ronald G. Minnich <rminnich@gmail.com> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4113 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/boot/hardwaremain.c')
-rw-r--r--src/boot/hardwaremain.c8
1 files changed, 4 insertions, 4 deletions
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 <part/hard_reset.h>
#include <part/init_timer.h>
#include <boot/elf.h>
-#include <romfs.h>
+#include <cbfs.h>
#if HAVE_ACPI_RESUME == 1
#include <arch/acpi.h>
#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