Kernel/armv7 - Renamed to reduce confusion
[tpg/acess2.git] / Kernel / arch / arm7 / main.c
diff --git a/Kernel/arch/arm7/main.c b/Kernel/arch/arm7/main.c
deleted file mode 100644 (file)
index b6186bb..0000000
+++ /dev/null
@@ -1,50 +0,0 @@
-/*
- * Acess2
- *
- * ARM7 Entrypoint
- * arch/arm7/main.c
- */
-#include <acess.h>
-
-// === IMPORTS ===
-extern void    Interrupts_Setup(void);
-extern void    Arch_LoadBootModules(void);
-extern void    Heap_Install(void);
-extern void    Threads_Init(void);
-extern void    System_Init(const char *Commandline);
-
-// === PROTOTYPES ===
- int   kmain(void);
-
-// === CODE ===
-int kmain(void)
-{
-       LogF("Acess2 ARMv7 v"EXPAND_STR(KERNEL_VERSION)"\n");
-       LogF(" Build %i\n", BUILD_NUM);
-//     Interrupts_Setup();
-       
-       MM_SetupPhys();
-
-       LogF("Heap Setup...\n");
-       Heap_Install();
-
-       LogF("Threads Init...\n");
-       Threads_Init();
-       
-       LogF("VFS Init...\n");
-       VFS_Init();
-
-       // Boot modules?
-
-       //
-       LogF("Moving to arch-independent init\n");
-       System_Init("");
-       //TODO: 
-       LogF("End of kmain(), for(;;);\n");
-       for(;;);
-}
-
-void Arch_LoadBootModules(void)
-{
-}
-

UCC git Repository :: git.ucc.asn.au