diff options
author | Jonathan Kimmitt <[email protected]> | 2020-01-16 15:05:27 +0000 |
---|---|---|
committer | Frans Kaashoek <[email protected]> | 2020-08-10 13:59:40 -0400 |
commit | b557e7c32e935b9bb2f5d8ed8503de52f43cf87f (patch) | |
tree | 96b7caf53f80a04b680761400ae82114f46167c4 /kernel | |
parent | ffcb883adff508497f71fae6ca72a8fa70483edc (diff) | |
download | xv6-labs-b557e7c32e935b9bb2f5d8ed8503de52f43cf87f.tar.gz xv6-labs-b557e7c32e935b9bb2f5d8ed8503de52f43cf87f.tar.bz2 xv6-labs-b557e7c32e935b9bb2f5d8ed8503de52f43cf87f.zip |
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
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/ramdisk.c | 2 |
1 files changed, 1 insertions, 1 deletions
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" |