diff options
author | Nicholas Chin <nic.c3.14@gmail.com> | 2024-01-13 14:54:48 -0700 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2024-08-20 19:07:22 +0000 |
commit | d47decf563c94be16958a5258bee5489178dd4a0 (patch) | |
tree | 81fa83aaf10db68204a3a3df4ec07a6e6762cc0b /util/find_usbdebug | |
parent | fbed78c4f7127dfb8bb3a2fffc0b1d9f913c5411 (diff) |
util/find_usbdebug: Add 8/9 Series PCH rate matching hub IDs
The USB IDs of the EHCI rate matching hubs found in these chipsets were
missing, preventing the utility from detecting connected USB devices.
Change-Id: I52858e2c75e8a3e1424a13bcddc2f5ec1216164b
Signed-off-by: Nicholas Chin <nic.c3.14@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/83458
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
Diffstat (limited to 'util/find_usbdebug')
-rwxr-xr-x | util/find_usbdebug/find_usbdebug.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/find_usbdebug/find_usbdebug.sh b/util/find_usbdebug/find_usbdebug.sh index 53b9a7f8f2..de370b1fe8 100755 --- a/util/find_usbdebug/find_usbdebug.sh +++ b/util/find_usbdebug/find_usbdebug.sh @@ -35,7 +35,7 @@ find_devs_in_tree () { busstr=`printf "Bus %02d" "$bus"` portstr="Port $port" - hubs_to_ignore="8087:0020 8087:0024" + hubs_to_ignore="8087:0020 8087:0024 8087:8000 8087:8008" reqlvl=1 found= |