From 3fad9a0185bb138a4ae6670a957b101ed613fff8 Mon Sep 17 00:00:00 2001 From: Mark Cave-Ayland Date: Sat, 7 Aug 2010 12:05:02 +0000 Subject: [PATCH] Bind the (go) function into the C equivalent go function arch/x86/boot.c (this should re-enable load/boot with the new unified loader). Signed-off-by: Mark Cave-Ayland git-svn-id: svn://coreboot.org/openbios/trunk/openbios-devel@837 f158a5a8-5612-0410-a976-696ce0be7e32 --- arch/x86/openbios.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/arch/x86/openbios.c b/arch/x86/openbios.c index 832607c..bc388c1 100644 --- a/arch/x86/openbios.c +++ b/arch/x86/openbios.c @@ -18,8 +18,8 @@ #include "libopenbios/sys_info.h" #include "openbios.h" #include "relocate.h" +#include "boot.h" -void boot(void); void collect_sys_info(struct sys_info *info); #define DICTIONARY_SIZE (256*1024) /* 256K for the dictionary */ @@ -71,6 +71,7 @@ arch_init( void ) #endif device_end(); bind_func("platform-boot", boot ); + bind_func("(go)", go ); } int openbios(void)