{"id":49204544,"url":"https://github.com/qualcomm/qcom-usb-kernel-drivers","last_synced_at":"2026-04-23T17:04:39.023Z","repository":{"id":339694100,"uuid":"1104877741","full_name":"qualcomm/qcom-usb-kernel-drivers","owner":"qualcomm","description":"Qualcomm kernel drivers provide logical representations of Qualcomm chipset-enabled mobile devices over USB connections. This repository includes source code, build scripts, and documentation for a set of device drivers designed for Qualcomm hardware platforms. The drivers support both Windows and Linux environments.","archived":false,"fork":false,"pushed_at":"2026-04-20T22:30:50.000Z","size":1901,"stargazers_count":26,"open_issues_count":10,"forks_count":7,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-04-21T00:33:48.711Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/qualcomm.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.txt","code_of_conduct":"CODE-OF-CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":".github/SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-11-26T20:21:48.000Z","updated_at":"2026-04-20T04:56:14.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/qualcomm/qcom-usb-kernel-drivers","commit_stats":null,"previous_names":["qualcomm/qcom-usb-kernel-drivers"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/qualcomm/qcom-usb-kernel-drivers","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qualcomm%2Fqcom-usb-kernel-drivers","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qualcomm%2Fqcom-usb-kernel-drivers/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qualcomm%2Fqcom-usb-kernel-drivers/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qualcomm%2Fqcom-usb-kernel-drivers/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/qualcomm","download_url":"https://codeload.github.com/qualcomm/qcom-usb-kernel-drivers/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qualcomm%2Fqcom-usb-kernel-drivers/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32189670,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-23T15:28:30.493Z","status":"ssl_error","status_checked_at":"2026-04-23T15:28:29.972Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-04-23T17:04:38.937Z","updated_at":"2026-04-23T17:04:39.015Z","avatar_url":"https://github.com/qualcomm.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Qualcomm USB Kernel Drivers\nQualcomm kernel drivers provide logical representations of Qualcomm chipset-enabled mobile devices over USB connections. This repository includes source code, build scripts, and documentation for a set of device drivers designed for Qualcomm hardware platforms. The drivers support both Windows and Linux environments.\nThe project is organized to facilitate easy compilation, testing, and integration into custom hardware solutions.\n\n## Key Features\n  - Supports Windows and Linux platforms.\n  - Supports X64/X86/ARM64 architectures.\n  - WHQL-certified on the latest Windows operating systems.\n  - Compatible with Qualcomm tools like QUTS, QXDM, PCAT, and more.\n  - Compatible with terminal emulators like PuTTY and Tera Term.\n    \n## Repository Structure\n\n```\n/\n├─ docs/                  # Architecture diagrams and design documents\n├─ src/                   # Qualcomm USB kernel driver for windows and linux platform\n├─ examples/              # samples scripts\n├─ README.md              # This file\n└─ ...                    # Other files and directories\n```\n\n## Build Instructions\n\n### Prerequisites\n\n#### Windows\n\n- Visual Studio 2019 (or later) with **Desktop development with C++** workload.\n- Windows Driver Kit for Windows 10, version 1903 (18362.1) or later.\n\n#### Linux\n\n- GNU Make, GCC/Clang.\n- Kernel headers for the target kernel version (`linux-headers-$(uname -r)`).\n  \n### Build Steps\n\n#### Windows\n1. Clone the repository\n   ```bash\n   git clone https://github.com/qualcomm/qcom-usb-kernel-drivers.git\n   ```\n2. Navigate to directory where the code was cloned\n   ```bash\n   cd /src/windows/\u003cproject-name\u003e\n   ```\n3. From the project root, open the .vcxproj file in Visual Studio.\n\n4. In Visual Studio, select `Build` \u003e `Build Solution` from the top menu.\n\nThe output binaries are generated in a path depends on the chosen build configuration. For example:\n\n    \u003cProjectRootDir\u003e\\x64\\Debug\\\n    \u003cProjectRootDir\u003e\\x64\\Release\\\n      \n#### Linux\n```bash\ncd src/linux\nmake\n```\n\n## Install / Uninstall\n\n#### Windows\n- Installation\n\n  Right click the `.inf` file in output folder and select **Install**.\n  Or install via command line `pnputil`:\n```bash\npnputil /add-driver \u003cbuild_path/driver_name.inf\u003e /install\n```\n- Uninstallation (Device Manager)\n1. Open **Device Manager**.\n2. Right click the target device and select **Uninstall device**.\n3. Check **Attempt to remove the driver for this device**.\n4. Click **Uninstall**.\n\n- Uninstallation (Command Line)\n\n1. Locate the **Published Name** of the installed driver package:\n  ```bash\n  pnputil /enum-drivers\n  ```\n2. Delete the driver from system\n  ```bash\n  pnputil /delete-driver oemxx.inf /uninstall /force\n  ```\n#### Linux command:\n  Navigate to folder `src/linux`\n    \n- Installation\n```bash\nsudo ./qcom_drivers.sh install\n```\n- Uninstallation\n```bash\nsudo ./qcom_drivers.sh uninstall\n```\nFor more guidance on build process, FAQ's and troubleshooting, please refer to [README](./src/linux/README.md) document. \n\n## Contributing\n\n1. Fork the repository.\n2. Create a feature branch (`git checkout -b feature/my-feature`).\n3. Make your changes and ensure they compile on all supported platforms.\n4. Submit a pull request with a clear description of the changes.\n\nPlease follow the existing coding style and run the appropriate static analysis tools before submitting.\n\n## Bug \u0026 Vulnerability reporting\n\nPlease review the [security](./SECURITY.md) before reporting vulnerabilities with the project\n\n## Contributor's License Agreement\n\nPlease review the Qualcomm product [license](./LICENSE.txt), [code of conduct](./CODE-OF-CONDUCT.md) \u0026 terms\nand conditions before contributing.\n\n## Contact\n\nFor questions, bug reports, or feature requests, please open an issue on GitHub or contact the maintainers\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqualcomm%2Fqcom-usb-kernel-drivers","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fqualcomm%2Fqcom-usb-kernel-drivers","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqualcomm%2Fqcom-usb-kernel-drivers/lists"}