summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRobert Morris <[email protected]>2019-06-13 06:57:38 -0400
committerRobert Morris <[email protected]>2019-06-13 06:57:38 -0400
commit4adf01692539c57c7612f105ecf3e8b5291ae018 (patch)
treecfbf3e46a2a967e3dc4e82349b876bec42f39af3 /Makefile
parentde9d72c9086ec935d5b2b889f50ff611135f80fa (diff)
downloadxv6-labs-4adf01692539c57c7612f105ecf3e8b5291ae018.tar.gz
xv6-labs-4adf01692539c57c7612f105ecf3e8b5291ae018.tar.bz2
xv6-labs-4adf01692539c57c7612f105ecf3e8b5291ae018.zip
eliminate ramdisk
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 0 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 7580ad5..88130e1 100644
--- a/Makefile
+++ b/Makefile
@@ -23,7 +23,6 @@ OBJS = \
$K/sleeplock.o \
$K/file.o \
$K/pipe.o \
- $K/ramdisk.o \
$K/exec.o \
$K/sysfile.o \
$K/kernelvec.o \
@@ -163,7 +162,6 @@ ifndef CPUS
CPUS := 3
endif
QEMUOPTS = -machine virt -kernel $K/kernel -m 3G -smp $(CPUS) -nographic
-QEMUOPTS += -initrd fs.img
QEMUOPTS += -drive file=fs.img,if=none,format=raw,id=x0 -device virtio-blk-device,drive=x0,bus=virtio-mmio-bus.0
qemu: $K/kernel fs.img