aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: e5236b5777b1d37cf840befd5b82c33351bd83c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Basic setup for OSdev

These files are well commented and are meant to remind you how to actually develop an OS. read from osdev.org to learn more.
## Requirements
- git
- make
- tar
- xz
- curl
- C compiler (preferrably gcc)
- texinfo
- gmp
- mpfr
- libmpc
- nasm
- xorriso
- mtools
- qemu  (to run)
- bochs (for testing)

## Install dependencies
Void:
```sh
$ xbps-install git make tar xz curl gcc texinfo gmp mpfr libmpc nasm xorriso mtools
```

## Configure and build
```sh
$ ./configure.sh
$ make
```