24 lines
353 B
Markdown
24 lines
353 B
Markdown
# FoundryOS
|
|
|
|
## Cloning and building
|
|
|
|
Here are some simple steps to get started:
|
|
|
|
```sh
|
|
git clone https://git.zxq5.dev/OsDev/FoundryOS.git
|
|
cargo run
|
|
```
|
|
|
|
## Running in GDB:
|
|
```sh
|
|
USE_GDB=1 cargo run
|
|
```
|
|
|
|
### Build dependencies
|
|
|
|
* libisoburn: creates ISO images to be booted from.
|
|
* qemu: to run the kernel.
|
|
|
|
Optionally,
|
|
|
|
* GDB: for debugging the kernel. |