From dd6cbf1fe0f6031ebd2de3ef306833a2c4ba2eb0 Mon Sep 17 00:00:00 2001 From: boreddevnl Date: Fri, 17 Apr 2026 00:06:09 +0200 Subject: [PATCH] DOC: Update usage.md with new make flags --- docs/build/usage.md | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/docs/build/usage.md b/docs/build/usage.md index 2b47b62..f23e014 100644 --- a/docs/build/usage.md +++ b/docs/build/usage.md @@ -33,14 +33,21 @@ To run BoredOS successfully (either in emulation or on bare metal), your target To test the generated ISO quickly without real hardware, use the QEMU emulator: +For MacOS: ```sh -make run +make run-mac +``` +For Linux: +```sh +make run-linux +``` +For Windows: +```sh +make run-windows ``` - This command invokes QEMU with specific arguments: - `-m 4G`: Allocates 4 Gigabytes of RAM. - `-cdrom boredos.iso`: Mounts the built OS image as a CD-ROM. -- `-netdev user...`: Sets up a basic NAT network interface for the OS's networking stack. - `-smp 4`: Enables 4 CPU cores. - `-drive file=disk.img...`: Attaches a raw disk image included in this release of BoredOS.