Brett Weiland 2062e70707 SMP fixed for CPUs with defective cores
modified:   README.md
	modified:   src/.gdb_history
	modified:   src/bootloader/enter_kernel.asm
	modified:   src/bootloader/gdt.asm
	modified:   src/debug/gdbinit.gdb
	modified:   src/include/int.h
	modified:   src/include/paging.h
	modified:   src/include/smp.h
	modified:   src/include/smp_sync.h
	modified:   src/indigo_os
	modified:   src/kernel/int.c
	modified:   src/kernel/kernel.c
	modified:   src/kernel/klog.c
	modified:   src/kernel/madt.c
	modified:   src/kernel/page.c
	modified:   src/kernel/panic.c
	modified:   src/kernel/printf.c
	modified:   src/kernel/smp.c
	modified:   src/kernel/smp_trampoline.asm
	modified:   .gitignore
	deleted:    src/.gdb_history
2021-09-12 12:55:07 -05:00
2021-03-24 15:38:09 -05:00
2021-08-24 14:32:12 -05:00
2021-08-24 14:32:12 -05:00
2021-03-19 10:54:25 -05:00

IndigoOS

IndigoOS (name likely to change) will be a unix-like operating system for x86-64 computers. I'm hoping to impliment many things a modern operating system would have, including a desktop enviornment, pre-emptive multithreading, ASLR, and memory protection. I'd also like to port games such as DOOM and Quake.

Project scope

While I'm loving this project, I do want it to be "done" at some point so I can work on other things. Because of this, my OS will be very simple, monolithic, and may not have all the bells and wistles of other osdev projects. I'm not planning on implimenting my own libc, and when I get to user space, will end up porting a few programs instead of writing my own (such as Xorg or QT). With all that out of the way, check out the features.

Planned Features

  • SMP multi-core support
  • Preemptive multithreading
  • VFS abstraction for filesystem modules
  • Unix-like file structure (/proc, /sys, /dev)
  • Port of ether X-org or wayland, combined with a complete WM
  • Basic network stack
  • ex2 filesystem built in
  • Pseudoterminals
  • Ports of other software I like, such as bash, vim, some old 3d games

Project status

This project will likely go very slow and take multiple years, as I'm dealing with things such as college and adulting. If there are blatently obvious bugs, or things look unfinished, I'm still working on them. Additionally, there's some pretty messy code. I've improved over the durentation of this project, so expect those things to be changed some time down the line.

What I'm working on now

  1. Ensuring palloc() and malloc() are smp safe (current)
  2. Creating kernel space threads with primative scheduler
  3. VFS filesystem
  4. ACPI, PCI
  5. ext2 filesystem
  6. Userspace processes!!!
  7. IO buffering, process waitlists
  8. Improve scheduler
  9. Let's not get too ahead of ourselves...
Description
An AMD64 operating system built from the ground up, including bootloader. Unfinished; further development depends on a return of interest and excess time.
Readme
Languages
C 85.1%
Assembly 10.4%
Makefile 1.8%
Python 1.6%
Shell 1%