Also, we don't need to call it in multiboot(), since we already need
to call it in early bootstrap to properly deliver the "no multiboot"
message if necessary.
pushl %ebx
pushl %eax
- call bmk_init
+ call bmk_cons_clear
popl %eax
/* only multiboot is supported for now */
}
void
-bmk_init(void)
+bmk_cons_clear(void)
{
int x;
void bmk_halt(const char *) __attribute__((noreturn));
-void bmk_init(void);
-
struct multiboot_info;
void bmk_multiboot(struct multiboot_info *);
{
unsigned long cmdlinelen;
- bmk_init(); /* XXX: convert to cons_clear */
bmk_printf_init(bmk_cons_putc, NULL);
bmk_core_init(BMK_THREAD_STACK_PAGE_ORDER, PAGE_SIZE);