summaryrefslogtreecommitdiff
path: root/Makefile (follow)
Commit message (Collapse)AuthorAgeFilesLines
* libk: create a subset libc for kernel useDanny Holman2024-05-271-5/+12
| | | | | | Create a subset of the C library for use inside the kernel. Signed-off-by: Danny Holman <dholman@gymli.org>
* kernel: add a basic thread schedulerDanny Holman2024-03-281-0/+1
| | | | | | | Add a basic thread scheduler. This should allow the kernel to schedule threads according to the round robin algorithm. Signed-off-by: Danny Holman <dholman@gymli.org>
* arch: i386: kernel: add mostly finished PFA and paging systemDanny Holman2024-03-281-1/+0
| | | | | | | Add the mostly finished physical memory allocator and expose its functions to the paging system. Signed-off-by: Danny Holman <dholman@gymli.org>
* kernel: string: add a strcpy functionDanny Holman2024-02-241-0/+1
| | | | | | | Add an implmentation of strcpy. This function is used in several places in the kernel to copy strings between memory addresses. Signed-off-by: Danny Holman <dholman@gymli.org>
* README: update copyright lineDanny Holman2024-02-211-3/+3
| | | | | | Update the copyright year and contact email in the README file. Signed-off-by: Danny Holman <dholman@gymli.org>
* Makefile: add flags to qemu that activate the serial portDanny Holman2024-02-161-1/+1
| | | | Signed-off-by: Danny Holman <dholman@gymli.org>
* arch: i386: make: add source filesv0.05Danny Holman2023-11-261-5/+12
| | | | | | Add new source files to the x86 architecture build configuration. Signed-off-by: Danny Holman <dholman@gymli.org>
* Makefile: explicitly define CC variableDanny Holman2022-03-221-2/+4
| | | | | | | The CC variable is already defined by the make program, so use "CC:=" instead of "CC?=". This makes sure the proper cross compiler is in use. Signed-off-by: Danny Holman <dholman@gymli.org>
* Makefile: add dry run and debug targetsDanny Holman2022-01-151-0/+6
| | | | | | Add targets to perform a test run and debug run inside a VM. Signed-off-by: Danny Holman <dholman@gymli.org>
* arch: i386: add support for 8259 PICDanny Holman2021-09-281-1/+1
| | | | | | Add support for the 8259 programmable interrupt controller. Signed-off-by: Danny Holman <dholman@gymli.xyz>
* Makefile: clean up targetsDanny Holman2021-06-041-8/+11
| | | | | | Clean up the Makefile to be more clear and readable. Signed-off-by: Danny Holman <dholman@gymli.xyz>
* Makefile: include dependency filesDanny Holman2021-03-091-0/+2
| | | | | | | Add an include directive in the main Makefile that includes the dependency files generated by GCC. Signed-off-by: Danny Holman <dholman@gymli.xyz>
* Makefile: fix wrong -I directive to compilerDanny Holman2021-03-091-2/+1
| | | | | | | Fix a bug in which the architecture specific include directories are not properly included in the main Makefile. Signed-off-by: Danny Holman <dholman@gymli.xyz>
* x86: reorganize the i386 directoryDanny Holman2021-01-241-8/+11
| | | | | | Add structure to the internals of the x86 directory. Signed-off-by: Danny Holman <dholman@gymli.xyz>
* Initial commitDanny Holman2021-01-171-0/+72
Signed-off-by: Danny Holman <dholman@gymli.xyz>