From ba3f6680b9f8bad70d752f7218d14449fe24114d Mon Sep 17 00:00:00 2001 From: Laurent Vivier Date: Thu, 12 May 2005 21:06:04 +0000 Subject: [PATCH] Add bootx_init() prototype --- second/bootx.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/second/bootx.h b/second/bootx.h index 263d7e5..0099a8a 100644 --- a/second/bootx.h +++ b/second/bootx.h @@ -10,6 +10,8 @@ #ifndef __BOOTX_H__ #define __BOOTX_H__ +#include "misc.h" + /* On kernel entry: * * r3 = 0x426f6f58 ('BooX') @@ -120,4 +122,5 @@ typedef struct boot_infos */ #define BOOTX_COLORTABLE_SIZE (256UL*3UL*2UL) +extern void bootx_init(char* command_line, char* ramdisk_start, unsigned long ramdisk_size); #endif