From: Devecsery, David Date: Tue, 26 Jan 2021 18:33:05 +0000 (-0500) Subject: Update lab1.md X-Git-Url: https://git.devinivas.org/?a=commitdiff_plain;h=574c39663c71d68b20c8aea40a275ac3955d70a6;p=cs3210-lab1.git Update lab1.md --- 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: