Skip to content

Latest commit

 

History

History
41 lines (29 loc) · 711 Bytes

README.md

File metadata and controls

41 lines (29 loc) · 711 Bytes

Kernel From Scratch pt1

This project is an introduction to kernel development and the first part of a series to develop a functional kernel.

What we learned

We wrote a little article summarizing what we learned during the development of this project. Click here if you are interested !

Getting Started

Prerequisites

To run this project locally, you must have installed:

  • binutils
  • nasm
  • gcc
  • grub-common
  • make
  • xorriso

Installation

  1. Clone this repository
git clone https://github.com/42corozco/KFS.git
  1. Build the ISO
cd KFS
make 
  1. Run it with qemu
make run

Cross-Compiler for École 42