Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions Kernel/Core/Kernel.c
Original file line number Diff line number Diff line change
Expand Up @@ -172,17 +172,14 @@ void RemapPIC() {
void KernelMain(uint32_t magic, uint32_t info) {
ClearScreen();
PrintKernel("[SUCCESS] VoidFrame Kernel - Version 0.0.1-alpha loaded\n");

GdtInit();
IdtInstall();
SyscallInit();
PicInstall();
MemoryInit();
ProcessInit();
CheckPid0Magic("After ProcessInit in KernelMain");
// Create the security manager process (PID 1) - this is critical
uint32_t security_pid = CreateSecureProcess(SecureKernelIntegritySubsystem, PROC_PRIV_SYSTEM);
CheckPid0Magic("After CreateSecureProcess (Security Manager) in KernelMain");
if (!security_pid) {
Panic("\nCannot create SecureKernelIntegritySubsystem() - Critical security failure\n");
}
Expand Down
Loading