Skip to content

Commit 75501ac

Browse files
shasarortejas-sharma27rohimish-qc5656hcx
authored
Merge develop into main (#94)
* Added the entry of debian for unloading compressed kernel modules Signed-off-by: Tejas Sharma <tejashar@qti.qualcomm.com> * Removed the entries of dependency modules in conf file as it is handled by depmod Signed-off-by: Tejas Sharma <tejashar@qti.qualcomm.com> * Refine contributing guidelines and PR standards for open source contributors Signed-off-by: shasaror <shasaror@qti.qualcomm.com> * Removed the block which deletes mii.ko and usbnet.ko during uninstallation Signed-off-by: Tejas Sharma <tejashar@qti.qualcomm.com> * Added the logic to delete the ko files Signed-off-by: Tejas Sharma <tejashar@qti.qualcomm.com> * Added -k flag while decompressing xz file in order to preserve the compressed file as well Signed-off-by: Tejas Sharma <tejashar@qti.qualcomm.com> * Addressed comments Signed-off-by: shasaror <shasaror@qti.qualcomm.com> * Addressed comments Signed-off-by: shasaror <shasaror@qti.qualcomm.com> * Fixes for QDSS node friendly name Signed-off-by: rohimish <rohimish@qti.qualcomm.com> * Address comments removed things that increase chance of acceptance section. not required Signed-off-by: shasaror <shasaror@qti.qualcomm.com> * Fix utf-8 character issue Signed-off-by: shasaror <shasaror@qti.qualcomm.com> --------- Signed-off-by: Tejas Sharma <tejashar@qti.qualcomm.com> Signed-off-by: shasaror <shasaror@qti.qualcomm.com> Signed-off-by: rohimish <rohimish@qti.qualcomm.com> Co-authored-by: Tejas Sharma <tejashar@qti.qualcomm.com> Co-authored-by: rohimish <rohimish@qti.qualcomm.com> Co-authored-by: Chenxi Han <chehan@qti.qualcomm.com>
1 parent 9019284 commit 75501ac

4 files changed

Lines changed: 906 additions & 63 deletions

File tree

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
<!--
2+
Thank you for contributing to Qualcomm Open Source Project!
3+
Please read CONTRIBUTING.md before submitting:
4+
https://github.com/qualcomm/qcom-usb-kernel-drivers/blob/develop/CONTRIBUTING.md
5+
6+
Title format (Conventional Commits, full words):
7+
<type>/<scope>: <short summary>
8+
Examples:
9+
feature/qcom_usbnet: add retry logic for transient errors
10+
-->
11+
12+
## Description
13+
14+
<!--
15+
Describe **what** this PR changes and **why**. Bullet list is fine.
16+
-->
17+
18+
Fixes #<issue-number>
19+
20+
## Type of Change
21+
22+
<!-- Tick all that apply by replacing [ ] with [x]. -->
23+
24+
- [ ] Bug fix (non-breaking change which fixes an issue)
25+
- [ ] New feature (non-breaking change which adds functionality)
26+
- [ ] Hotfix (urgent fix targeted at a `release/x.y` branch)
27+
- [ ] Refactor (no functional change)
28+
- [ ] Performance improvement
29+
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
30+
- [ ] Documentation update
31+
- [ ] Test-only change
32+
- [ ] CI / build-pipeline change
33+
34+
## How has this been tested?
35+
36+
<!--
37+
Describe the tests you ran. Reviewers will ask for evidence - paste the
38+
relevant snippets here.
39+
-->
40+
41+
## Checklist
42+
43+
<!-- Replace [ ] with [x] for each item that's done. PRs missing items will be sent back for changes. -->
44+
45+
- [ ] **All required CI checks are green** on the latest commit of this PR
46+
- [ ] **Build succeeds** following the steps in the [README](../README.md) / [src/linux/README.md](../src/linux/README.md)
47+
- [ ] My code follows the [Code Style Guidelines](../CONTRIBUTING.md#code-style-guidelines) of this project
48+
- [ ] My branch follows the [naming convention](../CONTRIBUTING.md#branch-naming-conventions): `<branch-prefix>/<area>/<description>`
49+
- [ ] PR title follows the Conventional Commits format with our full-word types (`feature` / `bugfix` / `hotfix` / `docs`)
50+
- [ ] I have performed a **self-review** of my own code
51+
- [ ] I have added **code comments** in areas that are complex or hard to understand
52+
- [ ] My changes generate **no new compiler warnings**
53+
- [ ] I have added **tests** for my fix or feature (or noted why tests are not feasible)
54+
- [ ] New and existing **tests pass locally** with my changes
55+
- [ ] My branch is **rebased onto the latest `develop`** (or `release/x.y` for hotfix) - no merge commits
56+
- [ ] Every commit has `Signed-off-by:` (DCO) - see [CONTRIBUTING.md](../CONTRIBUTING.md#commit-message-guidelines)
57+
- [ ] I have **linked** the relevant issue if any (`Fixes #...`)
58+
- [ ] Any dependent changes have been merged and published in downstream modules

0 commit comments

Comments
 (0)