Disable the kernel in all the "empty" preset templates.
[bertos.git] / boards / at91sam7s-ek / templates / empty / main.c
index f5c8b3051f6e991c402da710b51136bf650f950d..0c8aefc4cf533ffa566b87e18c0fa0a729edf9ed 100644 (file)
@@ -43,7 +43,6 @@
 #include <hw/hw_led.h>
 #include <drv/timer.h>
 #include <drv/ser.h>
-#include <kern/proc.h>
 
 static Serial out;
 
@@ -62,12 +61,6 @@ static void init(void)
        ser_setbaudrate(&out, 115200);
        /* Initialize LED driver */
        LED_INIT();
-
-       /*
-        * Kernel initialization: processes (allow to create and dispatch
-        * processes using proc_new()).
-        */
-       proc_init();
 }
 
 int main(void)