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> 


git-svn-id: svn://coreboot.org/openbios/trunk/openbios-devel@837 f158a5a8-5612-0410-a976-696ce0be7e32
This commit is contained in:
Mark Cave-Ayland
2010-08-07 12:05:02 +00:00
committed by Mark Cave-Ayland
parent c62d099b4b
commit 3fad9a0185

View File

@@ -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)