diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2002-04-29 13:24:22 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2002-04-29 13:24:22 +0000 |
commit | 51d38851b1a7965add8bfb4fa3e27273cf4da440 (patch) | |
tree | 6888f5de3c497889bfd7a0253cd341e07267af6e /mdk-stage1 | |
parent | 86722a4fa610507e756d16da029aa88cec0e9c45 (diff) | |
download | drakx-51d38851b1a7965add8bfb4fa3e27273cf4da440.tar drakx-51d38851b1a7965add8bfb4fa3e27273cf4da440.tar.gz drakx-51d38851b1a7965add8bfb4fa3e27273cf4da440.tar.bz2 drakx-51d38851b1a7965add8bfb4fa3e27273cf4da440.tar.xz drakx-51d38851b1a7965add8bfb4fa3e27273cf4da440.zip |
support USB2 controllers as well
Diffstat (limited to 'mdk-stage1')
-rwxr-xr-x | mdk-stage1/usb-resource/update-usb-ids.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mdk-stage1/usb-resource/update-usb-ids.pl b/mdk-stage1/usb-resource/update-usb-ids.pl index 03ddb1355..9dcd421f5 100755 --- a/mdk-stage1/usb-resource/update-usb-ids.pl +++ b/mdk-stage1/usb-resource/update-usb-ids.pl @@ -33,7 +33,7 @@ require '/usr/bin/merge2pcitable.pl'; my $drivers = read_pcitable("/usr/share/ldetect-lst/pcitable"); while (my ($k, $v) = each %$drivers) { - $v->[0] =~ /^usb-/ or next; + $v->[0] =~ /^usb-|^ehci-hcd/ or next; $k =~ /^(....)(....)/; printf qq|\t{ 0x%s, 0x%s, "", "%s" },\n|, $1, $2, $v->[0]; |