os-k/ChangeLog

93 lines
4.2 KiB
Plaintext
Raw Normal View History

2019-02-06 15:34:39 +01:00
#=----------------------------------------------------------------------------=#
# GNU GPL OS/K #
# #
# Desc: Project ChangeLog #
# #
# #
# Copyright © 2018-2019 The OS/K Team #
# #
# This file is part of OS/K. #
# #
# OS/K is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
# the Free Software Foundation, either version 3 of the License, or #
# any later version. #
# #
# OS/K is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY# without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU General Public License for more details. #
# #
# You should have received a copy of the GNU General Public License #
# along with OS/K. If not, see <https://www.gnu.org/licenses/>. #
#=----------------------------------------------------------------------------=#
2019-05-05 16:25:27 +02:00
2018-10-00 @os-k-team <os-k-team@os-k.eu>
Started talking about making our own OS
2018-11-00 @os-k-team <os-k-team@os-k.eu>
Name decided & creation of os-k.eu
2018-12-06 @os-k-team <os-k-team@os-k.eu>
Actually started project, began MBR, decided directories organization, created
this file and others
2018-12-08 @os-k-team <os-k-team@os-k.eu>
* MBR : actually supports Long Mode Compatibility Verification
* A20 line Enabling : added
2018-12-21 @os-k-team <os-k-team@os-k.eu>
Boot in two stages
* First stage : 512B MBR code that loads second stage loader from FAT16
* Second stage : enables A20, switches into lm and write colored text =D
[...] Time Skip
2019-03-17 @os-k-team <os-k-team@os-k.eu>
Migration to GRUB
* Kernel : boots, prepared by the loader. Both are loaded by GRUB
* Multiboot : chose to use v1 because the v2 lacks on documentation
* Architecture Support : x86_64 ONLY
2019-03-25 @os-k-team <os-k-team@os-k.eu>
Memory and terminal
2019-05-05 23:37:05 +02:00
* Memory map and basic malloc function : functionnal
2019-05-05 16:25:27 +02:00
* Buffer library : implemented for terminal
* Stack : 8MB long and isn't anymore in conflict with the kernel space
* sprintf functions : created
2019-04-09 @os-k-team <os-k-team@os-k.eu>
* Terminal : now buffered (static)
* Whole Project Tree : big reorganization
* Makefile : suffered a lot, so we improved it
* (KeStartPanic) : doesn't need to lock the terminal
* Basic heap and memory allocator : created
2019-04-24 @os-k-team <os-k-team@os-k.eu>
Interrupts and I/O
* IDT, ISR exception handler : created
* RTC time based ticks : created but buggy
2019-05-05 23:37:05 +02:00
* Keyboard IRQ handling (TODO buffer BStdIn) : functionnal
2019-05-05 16:25:27 +02:00
2019-04-27 @os-k-team <os-k-team@os-k.eu>
IDT Overhaul
* IDT : can now register new IRQ handlers at runtime
* Exception handler : crashdumps with registers
2019-05-05 23:37:05 +02:00
* RTC time based ticks : functionnal
2019-05-06 22:05:22 +02:00
2019-05-07 18:16:53 +02:00
2019-05-06 @os-k-team <os-k-team@os-k.eu>
2019-05-06 22:05:22 +02:00
IDT Overhaul
* IDT : can now register new IRQ and Exception handlers at runtime
* Exception handler : now called early
2019-05-07 18:16:53 +02:00
2019-05-07 @os-k-team <os-k-team@os-k.eu>
* Exception handler : actual crashdumps register when panic
* PC Speaker : we can emit a little beep, and we have some music
* RTC : basic timer wait()
2019-05-08 01:01:53 +02:00
2019-05-08 @os-k-team <os-k-team@os-k.eu>
2019-05-08 17:34:58 +02:00
* Shell : basic shell that can beep, scroll up, scroll down and shutdwn, and
with a help command.
2019-05-08 01:01:53 +02:00
* Power management : implementation of shutdown on qemu, virtualbox etc
* Terminal : actual scroll up and down