First upload
[CS310.git] / README
blob7dda1ff4fa24b1e8ad8dd699c1b8489c47985b6c
1 xv6 is a re-implementation of Dennis Ritchie's and Ken Thompson's Unix
2 Version 6 (v6).  xv6 loosely follows the structure and style of v6,
3 but is implemented for a modern RISC-V multiprocessor using ANSI C.
5 ACKNOWLEDGMENTS
7 xv6 is inspired by John Lions's Commentary on UNIX 6th Edition (Peer
8 to Peer Communications; ISBN: 1-57398-013-7; 1st edition (June 14,
9 2000)). See also https://pdos.csail.mit.edu/6.828/, which
10 provides pointers to on-line resources for v6.
12 The following people have made contributions: Russ Cox (context switching,
13 locking), Cliff Frey (MP), Xiao Yu (MP), Nickolai Zeldovich, and Austin
14 Clements.
16 We are also grateful for the bug reports and patches contributed by
17 Takahiro Aoyagi, Silas Boyd-Wickizer, Anton Burtsev, Ian Chen, Dan
18 Cross, Cody Cutler, Mike CAT, Tej Chajed, Asami Doi, eyalz800, Nelson
19 Elhage, Saar Ettinger, Alice Ferrazzi, Nathaniel Filardo, flespark,
20 Peter Froehlich, Yakir Goaron,Shivam Handa, Matt Harvey, Bryan Henry,
21 jaichenhengjie, Jim Huang, Matúš Jókay, Alexander Kapshuk, Anders
22 Kaseorg, kehao95, Wolfgang Keller, Jungwoo Kim, Jonathan Kimmitt,
23 Eddie Kohler, Vadim Kolontsov , Austin Liew, l0stman, Pavan
24 Maddamsetti, Imbar Marinescu, Yandong Mao, , Matan Shabtay, Hitoshi
25 Mitake, Carmi Merimovich, Mark Morrissey, mtasm, Joel Nider,
26 OptimisticSide, Greg Price, Jude Rich, Ayan Shafqat, Eldar Sehayek,
27 Yongming Shen, Fumiya Shigemitsu, Cam Tenny, tyfkda, Warren Toomey,
28 Stephen Tu, Rafael Ubal, Amane Uehara, Pablo Ventura, Xi Wang, Keiichi
29 Watanabe, Nicolas Wolovick, wxdao, Grant Wu, Jindong Zhang, Icenowy
30 Zheng, ZhUyU1997, and Zou Chang Wei.
32 The code in the files that constitute xv6 is
33 Copyright 2006-2020 Frans Kaashoek, Robert Morris, and Russ Cox.
35 ERROR REPORTS
37 Please send errors and suggestions to Frans Kaashoek and Robert Morris
38 (kaashoek,rtm@mit.edu). The main purpose of xv6 is as a teaching
39 operating system for MIT's 6.S081, so we are more interested in
40 simplifications and clarifications than new features.
42 BUILDING AND RUNNING XV6
44 You will need a RISC-V "newlib" tool chain from
45 https://github.com/riscv/riscv-gnu-toolchain, and qemu compiled for
46 riscv64-softmmu. Once they are installed, and in your shell
47 search path, you can run "make qemu".