-
Notifications
You must be signed in to change notification settings - Fork 133
v0.10: Prepare release #463
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
40058e6
xpadneo, licensing: Add driver relicensing tracking document
kakra b3b372f
xpadneo, licensing: Record consent from Ben Schattinger
kakra 03ace63
xpadneo, licensing: Record consent from Erik Hajnal
kakra fe962af
xpadneo, licensing: Record consent from Dugan Chen
kakra e294c40
xpadneo, licensing: Record consent from yjun
kakra 2a8f506
xpadneo, licensing: Record consent from John Mather
kakra 6137bd0
xpadneo, licensing: Do not chase consent from PiMaker
kakra 8e78740
xpadneo, CI: Add Github workflow to check commits
kakra 7213c9a
xpadneo: Merge relicensing tracking and finish relicensing
kakra 4fd727e
xpadneo, meta: Add AppStream metainfo with hardware modalias
Michael-Lloyd 8c88e69
xpadneo, installer: Add metainfo as optional install target
kakra File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| name: Kernel Coding Style Check | ||
|
|
||
| on: [pull_request, push] | ||
|
|
||
| jobs: | ||
kakra marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| check-style: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout repository | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| fetch-depth: 0 | ||
|
|
||
| - name: Download checkpatch.pl | ||
| run: wget https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/plain/scripts/checkpatch.pl | ||
|
|
||
| - name: Run checkpatch.pl | ||
| run: perl checkpatch.pl --ignore BAD_SIGN_OFF,FILE_PATH_CHANGES,FUNCTION_ARGUMENTS,FSF_MAILING_ADDRESS,LINUX_VERSION_CODE,SPLIT_STRING --no-tree <(git format-patch -U10 --stdout origin/master) | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,8 +1,30 @@ | ||
| # License notice | ||
| <!-- SPDX-License-Identifier: GPL-2.0-only --> | ||
|
|
||
| xpadneo aims to remain compatible with the Linux kernel licensing requirements. | ||
| # Contributing and licensing | ||
|
|
||
| By submitting a contribution, you agree that your code may be licensed under GPL-2.0-only in addition to the project's | ||
| primary license. | ||
| xpadneo uses file-level licensing via SPDX identifiers. | ||
|
|
||
| If you do not agree with this, please do not submit a pull request. | ||
|
|
||
| ## License scope | ||
|
|
||
| - Kernel driver code (files linked into the kernel module, especially `hid-xpadneo/src/**`) is licensed under | ||
| **GPL-2.0-only**. | ||
| - Non-driver content (for example documentation, examples, tooling, and helper scripts) is generally licensed under | ||
| **GPL-3.0-or-later**, unless a file states otherwise. | ||
|
|
||
|
|
||
| ## Your contribution | ||
|
|
||
| By submitting a contribution, you agree that your changes are licensed under the license specified by the SPDX header | ||
| in each file you modify. | ||
|
|
||
| If you add a new file, you must add an SPDX license identifier at the top of that file and choose the license | ||
| appropriate for its scope. | ||
|
|
||
|
|
||
| ## Reference | ||
|
|
||
| See `LICENSE.md` and the full license texts in: | ||
|
|
||
| - `LICENSES/LICENSE.gpl-2.0.txt` | ||
| - `LICENSES/LICENSE.gpl-3.0.txt` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,53 @@ | ||
| <!-- SPDX-License-Identifier: GPL-2.0-only --> | ||
|
|
||
| # Licensing | ||
|
|
||
| This repository contains components under different licenses. | ||
|
|
||
|
|
||
| ## Summary | ||
|
|
||
| - Kernel driver code (linked into the kernel module), especially files under: | ||
| - `hid-xpadneo/src/**` | ||
| is licensed under **GPL-2.0-only**. | ||
|
|
||
| - Non-driver content is generally GPL-3.0-or-later **unless file headers specify otherwise**. This includes: | ||
| - Documentation (`docs/**`) | ||
| - Examples (`examples/**`) | ||
| - Tooling and helper scripts (`tools/**`, `scripts/**`) | ||
|
|
||
|
|
||
| ## Canonical license texts | ||
|
|
||
| The full license texts are provided in: | ||
|
|
||
| - `LICENSES/LICENSE.gpl-2.0.txt` | ||
| - `LICENSES/LICENSE.gpl-3.0.txt` | ||
|
|
||
|
|
||
| ## File-level license identifiers (SPDX) | ||
|
|
||
| This project uses SPDX license identifiers in file headers. | ||
|
|
||
| - For C / header files: | ||
| - `// SPDX-License-Identifier: GPL-2.0-only` | ||
| - or `// SPDX-License-Identifier: GPL-3.0-or-later` | ||
| - For Markdown files: | ||
| - `<!-- SPDX-License-Identifier: ... -->` | ||
|
|
||
| The SPDX identifier in each file is the authoritative license marker for that file. | ||
|
|
||
|
|
||
| ## Notes on scope | ||
|
|
||
| The GPL-2.0-only scope is intentionally limited to code that is part of the kernel module. | ||
| Documentation and other non-module assets are out of that scope and can remain GPL-3.0-or-later. | ||
|
|
||
|
|
||
| ## Contributor guidance | ||
|
|
||
| By submitting contributions, you agree that your changes are licensed under the license indicated by the SPDX header | ||
| of the file(s) you modify. | ||
|
|
||
| If a new file is added, include an SPDX license identifier at the top of the file and choose the appropriate license | ||
| for its scope. |
Large diffs are not rendered by default.
Oops, something went wrong.
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,5 @@ | ||
| <!-- SPDX-License-Identifier: GPL-2.0-only --> | ||
|
|
||
| # Changes since v0.8 up to v0.9 | ||
|
|
||
| *Quote of the day:* | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,5 @@ | ||
| <!-- SPDX-License-Identifier: GPL-3.0-or-later --> | ||
|
|
||
| ## Troubleshooting | ||
|
|
||
| ### Gamepad Does Not Connect Properly | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.