Add bootx_init() prototype

This commit is contained in:
Laurent Vivier 2005-05-12 21:06:04 +00:00
parent 969f6c2afa
commit ba3f6680b9

View File

@ -10,6 +10,8 @@
#ifndef __BOOTX_H__ #ifndef __BOOTX_H__
#define __BOOTX_H__ #define __BOOTX_H__
#include "misc.h"
/* On kernel entry: /* On kernel entry:
* *
* r3 = 0x426f6f58 ('BooX') * r3 = 0x426f6f58 ('BooX')
@ -120,4 +122,5 @@ typedef struct boot_infos
*/ */
#define BOOTX_COLORTABLE_SIZE (256UL*3UL*2UL) #define BOOTX_COLORTABLE_SIZE (256UL*3UL*2UL)
extern void bootx_init(char* command_line, char* ramdisk_start, unsigned long ramdisk_size);
#endif #endif