From 801a0a1403523b134b48623f4885f42083779432 Mon Sep 17 00:00:00 2001 From: Stefan Lankes Date: Wed, 1 May 2024 19:32:24 +0200 Subject: [PATCH] remove part of a specialiazed hypervisor the current version of eduOS runs on the common hypervisor qemu --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9ede84e..fb8ef61 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ ## Introduction eduOS-rs is a Unix-like operating system based on a monolithic architecture for educational purposes. -It is developed for the course [Operating Systems][acsos] at RWTH Aachen University and includes a modified hypervisor that simplifies the boot process to increase the intelligibility of the OS. +It is developed for the course [Operating Systems][acsos] at RWTH Aachen University. eduOS-rs is derived from following tutorials and software distributions: 1. Philipp Oppermann's [excellent series of blog posts][opp]. @@ -51,7 +51,7 @@ Linux users should install common developer tools. For instance, on Ubuntu 22.04 the following command installs the required tools: ```sh -$ apt-get install -y git nasm qemu-system-x86 build-essential +$ apt-get install -y git qemu-system-x86 build-essential ``` ### Common for macOS, Windows and Linux