diff --git a/src/sys/include/ubixos/init.h b/src/sys/include/ubixos/init.h index 95fe259..5d320b0 100644 --- a/src/sys/include/ubixos/init.h +++ b/src/sys/include/ubixos/init.h @@ -57,10 +57,8 @@ pit_init, atkbd_init, time_init, - /* net_init, ne2k_init, - */ devfs_init, ubixfs_init, fdc_init, @@ -72,6 +70,9 @@ /*** $Log$ + Revision 1.19 2004/07/19 02:08:27 reddawg + Cleaned out the rest of debuging code also temporarily disabled the ip stack to improve boot time + Revision 1.18 2004/07/17 03:10:18 reddawg Added asserts no problems thusfar diff --git a/src/sys/init/main.c b/src/sys/init/main.c index bddc8b4..34b03d4 100644 --- a/src/sys/init/main.c +++ b/src/sys/init/main.c @@ -39,8 +39,6 @@ #include #include -char kernelStack[0x2000]; - /***************************************************************************************** Desc: The Kernels Descriptor table: 0x00 - Dummy Entry @@ -115,6 +113,9 @@ /*** $Log$ + Revision 1.60 2004/07/21 22:01:24 reddawg + Fixed + Revision 1.59 2004/07/21 21:37:04 reddawg Changed startup code diff --git a/src/sys/init/start.S b/src/sys/init/start.S index e147172..89fc321 100644 --- a/src/sys/init/start.S +++ b/src/sys/init/start.S @@ -38,7 +38,7 @@ mov %eax,%fs mov %eax,%gs mov %eax,%ss - mov $kernelStack,%eax + mov $kStack,%eax addl $0x2000,%eax mov %eax,%esp mov %eax,%ebp @@ -50,9 +50,14 @@ next: call main +.data +.comm kStack,0x2000 /*** $Log$ + Revision 1.2 2004/07/21 22:01:24 reddawg + Fixed + Revision 1.1 2004/07/21 21:41:48 reddawg lol cant forget this file