2006-04-26 15:08:19 +00:00
|
|
|
/* tag: openbios loader prototypes for x86
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 2004 Stefan Reinauer
|
|
|
|
|
*
|
|
|
|
|
* See the file "COPYING" for further information about
|
|
|
|
|
* the copyright and warranty status of this work.
|
|
|
|
|
*/
|
|
|
|
|
|
2009-08-04 20:37:32 +00:00
|
|
|
/* linux_load.c */
|
2006-04-26 15:08:19 +00:00
|
|
|
int linux_load(struct sys_info *info, const char *file, const char *cmdline);
|
|
|
|
|
|
2009-08-04 20:37:32 +00:00
|
|
|
/* context.c */
|
|
|
|
|
extern struct context *__context;
|
2006-04-26 15:08:19 +00:00
|
|
|
unsigned int start_elf(unsigned long entry_point, unsigned long param);
|
2009-08-04 20:37:32 +00:00
|
|
|
|
|
|
|
|
/* boot.c */
|
|
|
|
|
extern struct sys_info sys_info;
|
2010-04-02 13:29:12 +00:00
|
|
|
extern void boot(void);
|
|
|
|
|
extern void go(void);
|