]> git.proxmox.com Git - mirror_lxc.git/blob - CONTRIBUTING
CONTRIBUTING: Update reference to kernel coding style
[mirror_lxc.git] / CONTRIBUTING
1 Contributing to this project
2 ----------------------------
3
4 This project accepts contributions. In order to contribute, you should
5 pay attention to a few things:
6
7 1 - your code must follow the coding style rules
8 2 - the format of the submission must Github pull requests
9 3 - your work must be signed
10
11
12 Coding Style:
13 -------------
14
15 The coding style follows the Linux kernel coding style.
16
17 The Linux kernel coding style guide can be found within the kernel tree:
18
19 Documentation/process/coding-style.rst
20
21 It can be accessed online too:
22
23 https://www.kernel.org/doc/html/v4.10/process/coding-style.html
24
25 Submitting Modifications:
26 -------------------------
27
28 The contributions must be Github pull requests.
29
30 Licensing for new files:
31 ------------------------
32
33 LXC is made of files shipped under a few different licenses.
34
35 Anything that ends up being part of the LXC library needs to be released
36 under LGPLv2.1+ or a license compatible with it (though the latter will
37 only be accepted for cases where the code originated elsewhere and was
38 imported into LXC).
39
40 Language bindings for the libraries need to be released under LGPLv2.1+.
41
42 Anything else (non-libaries) needs to be Free Software and needs to be
43 allowed to link with LGPLv2.1+ code (if needed). LXC upstream prefers
44 LGPLv2.1+ or GPLv2 for those.
45
46 When introducing a new file into the project, please make sure it has a
47 copyright header making clear under which license it's being released
48 and if it doesn't match the criteria described above, please explain
49 your decision on the lxc-devel mailing-list when submitting your patch.
50
51 Developer Certificate of Origin:
52 --------------------------------
53
54 To improve tracking of contributions to this project we will use a
55 process modeled on the modified DCO 1.1 and use a "sign-off" procedure.
56
57 The sign-off is a simple line at the end of the explanation for the
58 patch, which certifies that you wrote it or otherwise have the right
59 to pass it on as an open-source patch. The rules are pretty simple:
60 if you can certify the below:
61
62 By making a contribution to this project, I certify that:
63
64 (a) The contribution was created in whole or in part by me and I have
65 the right to submit it under the open source license indicated in
66 the file; or
67
68 (b) The contribution is based upon previous work that, to the best of
69 my knowledge, is covered under an appropriate open source License
70 and I have the right under that license to submit that work with
71 modifications, whether created in whole or in part by me, under
72 the same open source license (unless I am permitted to submit
73 under a different license), as indicated in the file; or
74
75 (c) The contribution was provided directly to me by some other person
76 who certified (a), (b) or (c) and I have not modified it.
77
78 (d) The contribution is made free of any other party's intellectual
79 property claims or rights.
80
81 (e) I understand and agree that this project and the contribution are
82 public and that a record of the contribution (including all
83 personal information I submit with it, including my sign-off) is
84 maintained indefinitely and may be redistributed consistent with
85 this project or the open source license(s) involved.
86
87
88 then you just add a line saying
89
90 Signed-off-by: Random J Developer <random@developer.org>
91
92 You can do it by using option -s or --signoff when you commit
93
94 git commit --signoff ...
95
96 using your real name (sorry, no pseudonyms or anonymous contributions.)
97
98 In addition we support the following DCOs which maintainers can use to indicate
99 that a patch is acceptable:
100
101 Acked-by: Random J Developer <random@developer.org>
102 Reviewed-by: Random J Developer <random@developer.org>
103
104 If you are contributing as a group who is implementing a feature together such
105 that it cannot be reasonably attributed to a single developer please use:
106
107 Co-developed-by: Random J Developer 1 <random_1@developer.org>
108 Co-developed-by: Random J Developer 2 <random_1@developer.org>