From 88020a6fc35709a5f08a9e86c04a1ba3eb3df47d Mon Sep 17 00:00:00 2001 From: Jack Halford Date: Sun, 4 Feb 2018 19:48:13 +0100 Subject: [PATCH] Update README.md --- kernel-rs/README.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/kernel-rs/README.md b/kernel-rs/README.md index 42f1a8e3..20331f3e 100644 --- a/kernel-rs/README.md +++ b/kernel-rs/README.md @@ -4,8 +4,13 @@ based on [Writing an OS in rust](https://os.phil-opp.com/) ## dependencies for assembly and boot -grub is the default bootloader, we need `ld` and `nasm` to compile the bootcode -for archlinux `pacman -S make grub2 xorriso mtools binutils` + - `nasm` compiles the bootcode + - `ld` links the bootcode + - `grub-mkrescue` builds the iso + - `xargo` builds rust code + - `qemu` runs the iso + +on archlinux `pacman -S make grub2 xorriso mtools binutils gcc qemu` ## rust setup