From 2b040aa379496f524bef5a2575c0e06c34408044 Mon Sep 17 00:00:00 2001 From: Jonathan Kimmitt Date: Thu, 16 Jan 2020 15:05:27 +0000 Subject: [PATCH] Update ramdisk.c The qemu syntax for a ram disk was documented incorrectly. The documented syntax is here: https://qemu.weilnetz.de/doc/qemu-doc.html --- kernel/ramdisk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/ramdisk.c b/kernel/ramdisk.c index 9901294..eb60ee7 100644 --- a/kernel/ramdisk.c +++ b/kernel/ramdisk.c @@ -1,5 +1,5 @@ // -// ramdisk that uses the disk image loaded by qemu -rdinit fs.img +// ramdisk that uses the disk image loaded by qemu -initrd fs.img // #include "types.h"