diff options
author | Jonathan Kimmitt <[email protected]> | 2020-01-16 15:05:27 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2020-01-16 15:05:27 +0000 |
commit | 2b040aa379496f524bef5a2575c0e06c34408044 (patch) | |
tree | 1337e50a4ccc1a210f4e16e8f66d724a6c948f6c | |
parent | 9ead904afef8d060c2cc5cee6bd8e8d223de8c40 (diff) | |
download | xv6-labs-2b040aa379496f524bef5a2575c0e06c34408044.tar.gz xv6-labs-2b040aa379496f524bef5a2575c0e06c34408044.tar.bz2 xv6-labs-2b040aa379496f524bef5a2575c0e06c34408044.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
-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" |