# Developer Certification of Origin (DCO) (/contributing/dco)



Overview [#overview]

To ensure all licensing criteria are met for every repository of the
LVGL project, we apply a process called DCO (Developer's Certificate of
Origin).

The text of DCO can be read here: [https://developercertificate.org/](https://developercertificate.org/).

By contributing to any repositories of the LVGL project you agree that
your contribution complies with the DCO.

If your contribution fulfills the requirements of the DCO, no further
action is needed. If you are unsure feel free to ask us in a comment,
e.g. in your submitted [Pull Request](/contributing/pull_requests).

Accepted Licenses and Copyright Notices [#accepted-licenses-and-copyright-notices]

To make the DCO easier to digest, here are some practical guides about
specific cases:

Your own work [#your-own-work]

The simplest case is when the contribution is solely your own work. In
this case you can just send a Pull Request without worrying about any
licensing issues.

Using code from an online source [#using-code-from-an-online-source]

If the code you would like to add is based on an article, post or
comment on a website (e.g. StackOverflow) the license and/or rules of
that site should be followed.

For example in case of StackOverflow a notice like this can be used:

```c title=" " lineNumbers=1
/* The original version of this code-snippet was published on StackOverflow.
 * Post: http://stackoverflow.com/questions/12345
 * Author: http://stackoverflow.com/users/12345/username
 * The following parts of the snippet were changed:
 * - Check this or that
 * - Optimize performance here and there
 */
 ... code snippet here ...
```

Using MIT-licensed code [#using-mit-licensed-code]

As LVGL is MIT licensed, other MIT licensed code can be integrated
without issues. The MIT license requires a copyright notice be added to
the derived work. Any derivative work based on MIT licensed code must
copy the original work's license file or text.

Use GPL-licensed code [#use-gpl-licensed-code]

The GPL license is not compatible with the MIT license. Therefore, LVGL
cannot accept GPL licensed code.
