feat(kernel): enable x86 USB HID#18076
Open
sirredbeard wants to merge 1 commit into
Open
Conversation
Enable the standard USB HID transport as a module in the x86_64 kernel configuration. The x86_64 configuration already builds the generic HID core. Building usbhid as a module makes the standard USB HID transport available while keeping it out of the base kernel image. The arm64 configuration already enables USB HID.
|
Azure Pipelines: There may be pipelines that require an authorized user to comment /azp run to run. |
Contributor
There was a problem hiding this comment.
Pull request overview
Enables USB HID support as a module for the x86_64 Azure Linux kernel.
Changes:
- Sets
CONFIG_USB_HID=mfor x86_64. - Bumps the kernel package release to 8.
- Updates generated specs, changelog, and lock fingerprint.
Reviewed changes
Copilot reviewed 5 out of 6 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
base/comps/kernel/6.18-x86_64-azl.config |
Enables USB HID. |
base/comps/kernel/kernel.comp.toml |
Bumps release and records changelog. |
locks/kernel.lock |
Refreshes component fingerprint. |
specs/k/kernel/6.18-x86_64-azl.config |
Updates rendered configuration. |
specs/k/kernel/kernel.azl.macros |
Updates rendered release macro. |
specs/k/kernel/kernel.spec |
Updates rendered changelog. |
Author
|
Updated the title to follow Conventional Commits. |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Enable
CONFIG_USB_HID=mfor x86_64.The x86_64 configuration already builds the generic HID core. This adds the standard USB HID transport as a module.
arm64 already enables USB HID.