From acbeecfe56441ee79dc03759dce50d45f36c3792 Mon Sep 17 00:00:00 2001 From: Andrey Konovalov Date: Wed, 14 Jun 2017 13:08:56 +0200 Subject: docs: move contributing section from README to docs/ --- README.md | 6 ++---- docs/contributing.md | 3 +++ 2 files changed, 5 insertions(+), 4 deletions(-) create mode 100644 docs/contributing.md diff --git a/README.md b/README.md index 96f8e4e88..f0676c280 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,8 @@ List of [found bugs](https://github.com/google/syzkaller/wiki/Found-Bugs). How to [report Linux kernel bugs](https://github.com/google/syzkaller/wiki/How-to-report-kernel-bugs). +How to [contribute](docs/contributing.md). + ## Usage The following components are needed to use syzkaller: @@ -246,10 +248,6 @@ Here are some things to check if there are problems running syzkaller. - [Linux Plumbers 2016 talk slides](https://docs.google.com/presentation/d/1iAuTvzt_xvDzS2misXwlYko_VDvpvCmDevMOq2rXIcA/edit?usp=sharing) - [syzkaller: the next gen kernel fuzzer](https://www.slideshare.net/DmitryVyukov/syzkaller-the-next-gen-kernel-fuzzer) (basics of operations, tutorial on how to run syzkaller and how to extend it to fuzz new drivers) -## Contributing - -If you want to contribute to the project, you need to [sign Google CLA](https://cla.developers.google.com/) and add yourself to [AUTHORS](AUTHORS)/[CONTRIBUTORS](CONTRIBUTORS) files in the first pull request. Extending/improving [system call descriptions](sys/sys.txt) is always a good idea. If you want to work on something non-trivial, please briefly describe it on [syzkaller@googlegroups.com](https://groups.google.com/forum/#!forum/syzkaller) mailing list first so that there is agreement on high level approach and no duplication of work between contributors. - ## Disclaimer This is not an official Google product. diff --git a/docs/contributing.md b/docs/contributing.md new file mode 100644 index 000000000..88c80b5d1 --- /dev/null +++ b/docs/contributing.md @@ -0,0 +1,3 @@ +## Contributing + +If you want to contribute to the project, you need to [sign Google CLA](https://cla.developers.google.com/) and add yourself to [AUTHORS](AUTHORS)/[CONTRIBUTORS](CONTRIBUTORS) files in the first pull request. Extending/improving [system call descriptions](sys/sys.txt) is always a good idea. If you want to work on something non-trivial, please briefly describe it on [syzkaller@googlegroups.com](https://groups.google.com/forum/#!forum/syzkaller) mailing list first so that there is agreement on high level approach and no duplication of work between contributors. -- cgit mrf-deployment