feat(kernel): enable CONFIG_USB_UHCI_HCD on amd64#1483
Merged
talos-bot merged 1 commit intosiderolabs:mainfrom Mar 12, 2026
Merged
feat(kernel): enable CONFIG_USB_UHCI_HCD on amd64#1483talos-bot merged 1 commit intosiderolabs:mainfrom
talos-bot merged 1 commit intosiderolabs:mainfrom
Conversation
HP iLO 4 BMC exposes its virtual keyboard via an internal UHCI USB controller (PCI 0000:01:00.4). Without uhci_hcd, this bus never initializes and the keyboard is invisible to the OS. Fixes siderolabs/talos#12905 Signed-off-by: Zadkiel AHARONIAN <hello@zadkiel.fr> Signed-off-by: Andrey Smirnov <andrey.smirnov@siderolabs.com>
Member
|
/m |
aslafy-z
added a commit
to aslafy-z/talos
that referenced
this pull request
Mar 12, 2026
See siderolabs/pkgs#1483 Signed-off-by: Zadkiel AHARONIAN <hello@zadkiel.fr>
aslafy-z
added a commit
to aslafy-z/talos
that referenced
this pull request
Mar 12, 2026
See siderolabs/pkgs#1483 Signed-off-by: Zadkiel AHARONIAN <hello@zadkiel.fr>
smira
pushed a commit
to aslafy-z/talos
that referenced
this pull request
Mar 12, 2026
See siderolabs/pkgs#1483 Signed-off-by: Zadkiel AHARONIAN <hello@zadkiel.fr> Signed-off-by: Andrey Smirnov <andrey.smirnov@siderolabs.com>
Merged
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.
Pull Request
What? (description)
Enable
CONFIG_USB_UHCI_HCD=yin the amd64 kernel configuration.Why? (reasoning)
HP iLO 4 exposes its BMC Virtual Keyboard (03f0:7029) through an internal USB controller at PCI
0000:01:00.4. On Debian,uhci_hcdbinds to this controller and the keyboard enumerates atusb-0000:01:00.4-1/input0:$ ls -l /sys/bus/pci/devices/0000:01:00.4/driver lrwxrwxrwx 1 root root 0 Mar 11 22:11 /sys/bus/pci/devices/0000:01:00.4/driver -> ../../../../bus/pci/drivers/uhci_hcdThe Talos kernel has
ehci-hcdandxhci-hcdbuilt-in but does not includeuhci-hcdat all (neither built-in nor module). Without it, the iLO's USB controller never gets a driver, the BMC Virtual Keyboard never appears, and the Talos dashboard receives no keyboard input when accessed via iLO remote console.UHCI is Intel's USB 1.x host controller interface, only relevant on x86.
Fixes siderolabs/talos#12905
Acceptance
Please use the following checklist:
make conformance)make fmt)make lint)make docs)make unit-tests)