summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorFrans Kaashoek <[email protected]>2018-08-30 13:25:54 -0400
committerFrans Kaashoek <[email protected]>2018-08-30 13:25:54 -0400
commit7f3528bcb36aee13c29cd3355a904c3c513c9a2b (patch)
tree1d77722868d4200650d9ac65e5af5597586738ac /Makefile
parent210a0f0b30eb1af49b6ed42339b1fcc8582ba653 (diff)
downloadxv6-labs-7f3528bcb36aee13c29cd3355a904c3c513c9a2b.tar.gz
xv6-labs-7f3528bcb36aee13c29cd3355a904c3c513c9a2b.tar.bz2
xv6-labs-7f3528bcb36aee13c29cd3355a904c3c513c9a2b.zip
x
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index c707dec..adb1978 100644
--- a/Makefile
+++ b/Makefile
@@ -82,7 +82,7 @@ ASFLAGS = -m32 -gdwarf-2 -Wa,-divide
# FreeBSD ld wants ``elf_i386_fbsd''
LDFLAGS += -m $(shell $(LD) -V | grep elf_i386 2>/dev/null | head -n 1)
-xv6.img: bootblock kernel fs.img
+xv6.img: bootblock kernel
dd if=/dev/zero of=xv6.img count=10000
dd if=bootblock of=xv6.img conv=notrunc
dd if=kernel of=xv6.img seek=1 conv=notrunc