From c0cf9521134f56b8b9bb77b90304659f95d0cb2a Mon Sep 17 00:00:00 2001 From: apio Date: Sun, 22 Dec 2024 19:27:11 +0100 Subject: [PATCH] docs: Clarify the wording in dependencies.md --- docs/dependencies.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/dependencies.md b/docs/dependencies.md index c0ab951e..7ee4bb24 100644 --- a/docs/dependencies.md +++ b/docs/dependencies.md @@ -22,10 +22,10 @@ The script provided by the project to run the system, `tools/run.sh`, assumes th That being said, there's no requirement to use QEMU. If you want to use a different virtualization program, such as Oracle VirtualBox or VMWare, just use `tools/build-iso.sh` instead of `run.sh` and use the built `Luna.iso` in those programs. ## Source dependencies -Every part of Luna is written from scratch and depends only on its own libraries and programs, with two small exceptions: +TLDR: Luna does not depend on any third-party library. + +Every part of Luna is written from scratch and depends only on its own libraries and programs, with two small exceptions (included here for crediting and licensing purposes, but there is no need to download and build them separately): The bootloader, BOOTBOOT. It is available at [gitlab.com/bztsrc/bootboot](https://gitlab.com/bztsrc/bootboot), under the MIT license. It is automatically pulled and built from source by `tools/setup.sh`. -[libc/src/strtod.cpp](../libc/src/strtod.cpp). Written by Yasuhiro Matsumoto, adapted from https://gist.github.com/mattn/1890186 and available under a public domain license. - -There is no need for you to install any of these before building the system. +[libc/src/strtod.cpp](../libc/src/strtod.cpp). Written by Yasuhiro Matsumoto, adapted from https://gist.github.com/mattn/1890186 and available under a public domain license.