kern

diff src/main.c @ 88:a398bf73fe93

- added the partition table parsing code - starting with the filesystem
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 08 Dec 2011 13:34:47 +0200
parents a6513dc35f04
children
line diff
     1.1 --- a/src/main.c	Wed Dec 07 17:10:37 2011 +0200
     1.2 +++ b/src/main.c	Thu Dec 08 13:34:47 2011 +0200
     1.3 @@ -6,6 +6,7 @@
     1.4  #include "segm.h"
     1.5  #include "intr.h"
     1.6  #include "ata.h"
     1.7 +#include "fs.h"
     1.8  #include "rtc.h"
     1.9  #include "timer.h"
    1.10  #include "mem.h"
    1.11 @@ -38,6 +39,8 @@
    1.12  
    1.13  	/* initialize ATA disks */
    1.14  	init_ata();
    1.15 +	/* initialize the filesystem */
    1.16 +	init_fs();
    1.17  
    1.18  	/* initialize the timer and RTC */
    1.19  	init_timer();