blob: ab5fde82bba1b5a85876a9134e438316eee6e5c7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
// MIT License, Copyright (c) 2020 Marvin Borner
#include <boot.h>
#include <cpu.h>
#include <fb.h>
#include <fs.h>
#include <ide.h>
#include <interrupts.h>
#include <keyboard.h>
#include <load.h>
#include <mem.h>
#include <mm.h>
#include <mouse.h>
#include <net.h>
#include <pci.h>
#include <random.h>
#include <rtc.h>
#include <serial.h>
#include <syscall.h>
#include <timer.h>
PROTECTED extern u32 __stack_chk_guard;
PROTECTED u32 __stack_chk_guard;
PROTECTED u32 tss_entry = 0;
PROTECTED u32 boot_drive = 0;
int kernel_main(struct boot_info *boot); // Decl
int kernel_main(struct boot_info *boot)
{
// Serial connection
serial_install();
serial_print("\nKernel was compiled at " __TIME__ " on " __DATE__ "\n");
serial_print("Serial connected.\n");
tss_entry = boot->tss;
boot_drive = boot->drive;
memory_install(boot);
memory_switch_dir(virtual_kernel_dir());
cpu_enable_features();
cpu_print();
srand(rtc_stamp());
__stack_chk_guard = rand();
// Install drivers
vfs_install();
device_install();
ata_install();
pci_install();
interrupts_install();
timer_install();
rtc_install();
keyboard_install();
mouse_install();
fb_install(boot->vid);
/* net_install(); */
// Enable drivers
sti();
keyboard_reset();
syscall_init();
proc_init();
return 1;
}
|