From f2467dad6a3f61c10528df41ad97ded1654a1a13 Mon Sep 17 00:00:00 2001 From: WangRunji Date: Tue, 16 Apr 2019 13:11:29 +0800 Subject: [PATCH] add maintainers to README --- README.md | 26 +++++++++++++++++--------- 1 file changed, 17 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 7bc1057..7c5d6bd 100644 --- a/README.md +++ b/README.md @@ -10,8 +10,6 @@ Supported architectures: x86_64, RISCV32/64, AArch64, MIPS32 Tested boards: QEMU, HiFive Unleashed, x86_64 PC (i5/i7), Raspberry Pi 3B+ -[Dev docs](https://rucore.gitbook.io/rust-os-docs/) (in Chinese) - ![demo](./docs/2_OSLab/os2atc/demo.png) ## Building @@ -47,18 +45,28 @@ $ make run arch={riscv32,riscv64,x86_64,aarch64,mipsel} mode=release $ make run arch=x86_64 mode=release pci_passthru=0000:00:00.1 # for ixgbe real nic, find its pci (bus, dev, func) first ``` +## Maintainers + +| Module | Maintainer | +|--------|-----------------------| +| x86_64 | @wangrunji0408 | +| RISCV | @jiegec | +| ARM (Raspi3) | @equation314 | +| MIPS | @HarryChen @miskcoo | +| Memory, Process, File System | @wangrunji0408 | +| Network with drivers | @jiegec | +| GUI | @equation314 | + ## History This is a project of THU courses: -* Operating System (2018 Spring) -* Comprehensive Experiment of Computer System (2018 Summer) -* Operating System Train (2018 Autumn) -* Operating System (2019 Spring) - -Project wiki (internal access only): [OS](http://os.cs.tsinghua.edu.cn/oscourse/OS2018spring/projects/g11), [CECS](http://os.cs.tsinghua.edu.cn/oscourse/csproject2018/group05), [OST](http://os.cs.tsinghua.edu.cn/oscourse/OsTrain2018) +* [Operating System (2018 Spring) ](http://os.cs.tsinghua.edu.cn/oscourse/OS2018spring/projects/g11) +* [Comprehensive Experiment of Computer System (2018 Summer)](http://os.cs.tsinghua.edu.cn/oscourse/csproject2018/group05) +* [Operating System Train (2018 Autumn)](http://os.cs.tsinghua.edu.cn/oscourse/OsTrain2018) +* [Operating System (2019 Spring)](http://os.cs.tsinghua.edu.cn/oscourse/OS2019spring/projects) -Reports (in Chinese): [docs](./docs) +[Reports](./docs) and [Dev docs](https://rucore.gitbook.io/rust-os-docs/) (in Chinese) It's based on [BlogOS](https://github.com/phil-opp/blog_os) , a demo project in the excellent tutorial [Writing an OS in Rust (First Edition)](https://os.phil-opp.com/first-edition/).