aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/boot.asm
AgeCommit message (Collapse)Author
2020-04-29Fixed several warnings, errors and dumb bugsMarvin Borner
2020-04-28Maaaany fixes...Marvin Borner
Sorry for the increasingly worse-getting commit messages :D
2020-04-25Small cleanup and formattingMarvin Borner
2020-04-19Applied tidy command...Marvin Borner
Idk why I forgot it for several commits :D
2020-04-17Added multiboot smbios tableMarvin Borner
idk why, but grub doesn't seem to find a smbios table in qemu. I tried a local dump of my pc's smbios but this doesn't work either.. *thinking*
2020-04-17OMG I feel very dumb now...Marvin Borner
I forgot to actually pass the address to the parser! Why tf doesn't GCC tell me that? :D
2020-04-17Started implementing multiboot2 standardMarvin Borner
2020-04-14Switched to grubMarvin Borner
This really isn't what I wanted because grub is very big and bloaty but my own bootloader was very poorly written and I really want to implement a filesystem like ext2 which wouldn't work with my own bootloader. Furthermore this commit fixes many small issues including the one occurring due to the statically linked user binary (I just removed the linking for now).
2020-03-27Added and applied tidy commandMarvin Borner
2020-01-26Magic commitMarvin Borner
Some things work, others don't.
2020-01-16Quite a different approach to userspace pagingMarvin Borner
Hope this works soon!
2020-01-02Switched to CMakeMarvin Borner
Still needs some polishing but it kinda works (wasn't easy though)
2019-12-21Many debugging/serial improvementsMarvin Borner
Sorry for the little information, but I did many things :)
2019-12-21Some userspace improvementsMarvin Borner
GAS is bad, NASM is awesome.
2019-12-04More-working syscall logic (parameters work!)Marvin Borner
2019-11-30Working userspace!Marvin Borner
2019-11-25Debug, debug and even more debugging!Marvin Borner
2019-11-20Began two-stage hdd bootloader and os installerMarvin Borner
2019-11-10Added semi-working bootloaderMarvin Borner
2019-11-08Began implementation of non-grub bootloaderMarvin Borner
2019-10-31Some user mode improvementsMarvin Borner
2019-10-31Implemented basic syscalls and user modeMarvin Borner
Doesn't completely work right now
2019-10-30Started implementation of initrd based vfsMarvin Borner
2019-10-27Improved boot process and color schemeMarvin Borner
2019-10-25Rewrite of paging and alloc functionsMarvin Borner
Still not working though :/
2019-10-16Fixed framebuffer activationMarvin Borner
2019-10-15No more errors!Marvin Borner
Still not working
2019-10-12Paging and heap rewriteMarvin Borner
VESA drawing causes a Page fault because it tries to use a pointer to the framebuffer which was created before the paging has been initialized. If the resolution is set after the paging has been initialized the CPU throws a triple fault because the int32 call can not happen with paging turned on. To be fixed soon!
2019-10-03Improved some thingsMarvin Borner
2019-09-28Switched back to normal aligned kernelMarvin Borner
I had some problems with paging but maybe I will revert again later
2019-09-26Added higher half kernel with pagingMarvin Borner
2019-09-26Added working support for segment:offset pointerMarvin Borner
2019-09-25Started integrating vesa resolution finderMarvin Borner
2019-09-24Added working VESA driverMarvin Borner
Note to myself: Use Real/Protected mode correctly :)
2019-09-24First successful VESA attemptMarvin Borner
2019-09-23Further tried developing a working VESA driver (failing)Marvin Borner
2019-09-21Added ACPI based shutdown commandMarvin Borner
2019-09-19Started development of vesa graphic driverMarvin Borner
2019-09-19Added sleep command/actionMarvin Borner
2019-09-19Moved source to kernel directoryMarvin Borner