diff options
author | Greg Watson <jarrah@users.sourceforge.net> | 2004-03-17 17:10:32 +0000 |
---|---|---|
committer | Greg Watson <jarrah@users.sourceforge.net> | 2004-03-17 17:10:32 +0000 |
commit | 9cfecd14900bdd697985a18af784dec25a3f44a1 (patch) | |
tree | 172cca89365dc550597b46b3850f19045db8c190 /src/boot/hardwaremain.c | |
parent | 43ba521bd94fc9ea21faf22f21b4d17085ca3841 (diff) | |
download | coreboot-9cfecd14900bdd697985a18af784dec25a3f44a1.tar.xz |
filo boot load support
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1421 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/boot/hardwaremain.c')
-rw-r--r-- | src/boot/hardwaremain.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/boot/hardwaremain.c b/src/boot/hardwaremain.c index 6231d1167e..fed5302261 100644 --- a/src/boot/hardwaremain.c +++ b/src/boot/hardwaremain.c @@ -217,6 +217,10 @@ void hardwaremain(int boot_complete) CONFIGURE(CONF_PASS_PRE_BOOT); +#if CONFIG_FS_STREAM == 1 + filo(lb_mem); +#else elfboot(lb_mem); +#endif } |