From 574c39663c71d68b20c8aea40a275ac3955d70a6 Mon Sep 17 00:00:00 2001 From: "Devecsery, David" Date: Tue, 26 Jan 2021 13:33:05 -0500 Subject: [PATCH] Update lab1.md --- instructions/lab1.md | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/instructions/lab1.md b/instructions/lab1.md index 0262c38..fd8726e 100644 --- a/instructions/lab1.md +++ b/instructions/lab1.md @@ -60,22 +60,6 @@ adds in debug symbols. Its much easier to work with than a "Release" build, the default CMAKE_BUILD_TYPE. The autograder (more later) will run your code in "Release" mode** -**NOTE3: There is a bug in `tools/mkfs.c` of the repository (refer to @119 on -Piazza). In order to fix, implement the changes below.** - -In the file `tools/mkfs.c` on line 156: - -```c -strncpy(de.name, argv[i], DIRSIZ); -``` - -should be: - -```c -strncpy(de.name, argv[i], DIRSIZ-1); -``` - - Once you've built xv6, you may launch your new kernel. We've provided a convenience script to help you launch it: -- 2.47.3