Merge branch 'master' of git.juju.re:juju/JuliOS
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Julien CLEMENT 2021-12-07 19:01:23 +01:00
commit c54cb174de
2 changed files with 17 additions and 0 deletions

View File

@ -41,5 +41,6 @@ clean:
$(RM) $(KERNEL)
$(RM) julios.iso
$(RM) -r iso
$(RM) -r target
.PHONY: $(INSTALL_ROOT) install clean all run debug $(LIB_JULIOS)

View File

@ -1,3 +1,19 @@
# JuliOS
Just an Unstable, Lame and Innefective Operating System
# Build requirements
* rust nightly
* rust-src (`rustup component add rust-src`)
* grub2
* xorriso
# Build
```sh
make # The kernel and an ISO
make run # Run qemu on the ISO
make debug # Run bochs on the ISO
make clean # Clean everythin
```