Go to file
2024-10-21 16:29:50 +02:00
boot add: higher half kernel, NOT WORKING 2024-10-14 15:57:11 +02:00
config makefile: add rule: iso creation && run_iso 2024-09-07 11:56:18 +02:00
headers wip: page_tables allocation 2024-10-21 16:29:50 +02:00
libbozo feature: add a few helpers fn (is...) 2024-10-11 13:10:47 +02:00
src wip: page_tables allocation 2024-10-21 16:29:50 +02:00
.clang-format style: clang-format on all files 2024-09-18 22:30:11 +02:00
.gitignore feature: functional shell with help and merdella commands 2024-09-10 20:03:33 +02:00
Makefile fix: create -10Mo iso 2024-09-22 10:13:13 +02:00
README.md add: readme 2024-09-17 11:55:42 +02:00

KFS (Kernel From Scratch)

This project aims to explore how a kernel works by building our own, gaining hands-on experience with core concepts like memory management, interrupt, keyboard driver, etc

INSTALLATION

Cross compile the compile

THE DOCUMENTATION

export PREFIX="$HOME/opt/cross"
export TARGET=i386-elf
export PATH="$PREFIX/bin:$PATH"
mkdir $HOME/src
cd $HOME/src
tar xf [your binutils archive]
tar xf [your gcc archive]
tar xf [your gdb archive]
  • (protips use -j [nb core])
  • Compile binutils
cd $HOME/src
mkdir build-binutils

cd build-binutils
../binutils-x.y.z/configure --target=$TARGET --prefix="$PREFIX" --with-sysroot --disable-nls --disable-werror
make
make install
  • Compile gdb
cd $HOME/src
mkdir build-gdb

cd build-gdb
../gdb.x.y.z/configure --target=$TARGET --prefix="$PREFIX" --disable-werror
make all-gdb
make install-gdb
make
make install
  • Compile gcc
cd $HOME/src

# The $PREFIX/bin dir _must_ be in the PATH. We did that above.
which -- $TARGET-as || echo $TARGET-as is not in the PATH

mkdir build-gcc
cd build-gcc
../gcc-x.y.z/configure --target=$TARGET --prefix="$PREFIX" --disable-nls --enable-languages=c,c++ --without-headers
make all-gcc
make all-target-libgcc
make install-gcc
make install-target-libgcc

Compile and the start the kernel

make run