/kfs

kernel from scratch

Primary LanguageC++Apache License 2.0Apache-2.0

build a cross-compiler

@see https://wiki.osdev.org/GCC_Cross-Compiler

    export PREFIX="$HOME/opt/cross"
    # use i386 architecture
    export TARGET=i386-elf
    export PATH="$PREFIX/bin:$PATH"
    

build the kernel

    ./build.sh