j
: Next unread message k
: Previous unread message j a
: Jump to all threads
j l
: Jump to MailingList overview
Author: mcayland Date: Sat Aug 7 14:05:02 2010 New Revision: 837 URL: http://tracker.coreboot.org/trac/openbios/changeset/837
Log: 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 mark.cave-ayland@siriusit.co.uk
Modified: trunk/openbios-devel/arch/x86/openbios.c
Modified: trunk/openbios-devel/arch/x86/openbios.c ============================================================================== --- trunk/openbios-devel/arch/x86/openbios.c Sat Aug 7 14:02:42 2010 (r836) +++ trunk/openbios-devel/arch/x86/openbios.c Sat Aug 7 14:05:02 2010 (r837) @@ -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 @@ #endif device_end(); bind_func("platform-boot", boot ); + bind_func("(go)", go ); }
int openbios(void)