[BACK]Return to kern_main.c CVS log [TXT][DIR] Up to [local] / funnyos / kern

File: [local] / funnyos / kern / kern_main.c (download)

Revision 1.3, Tue Nov 6 22:59:35 2007 UTC (16 years, 5 months ago) by init
Branch: MAIN
Changes since 1.2: +4 -2 lines

initialise system clock after devconfig phase

/*
 * $Id: kern_main.c,v 1.3 2007/11/06 22:59:35 init Exp $
 */
#include <sys/types.h>
#include <sys/kern_devconfig.h>
#include <sys/mem.h>
#include <sys/kern_time.h>

#include <libkern/printf.h>

extern void config_consinit(void);


void
main(void)
{
	/* set up boot console */
	config_consinit();

	/* initialize kmalloc */
	kmem_init();

	/* attach all devices described in arch/${ARCH}/config.c */
	devconfig_recurse();

	/* initialise system clock; this will start interrupts from timer */
	sysclock_init();

	while(1)
			;
}