diff options
author | Holger Paradies <retabell@gmx.de> | 2019-05-05 21:08:00 +0200 |
---|---|---|
committer | Holger Paradies <retabell@gmx.de> | 2019-05-05 21:14:04 +0200 |
commit | cea743694387fd8c89fc32a1eaf07b434df0b3d1 (patch) | |
tree | 909c76086e128e336c0658dd3e2402d264e33c01 /config/chroot_local-hooks | |
parent | 8142d256a165d0b3b286e0c7e89610b7364cd93f (diff) | |
download | kanotix-cea743694387fd8c89fc32a1eaf07b434df0b3d1.zip kanotix-cea743694387fd8c89fc32a1eaf07b434df0b3d1.tar.gz |
dell bluetooth fix
systemd-udevd consumes 100% of CPU
https://bugs.launchpad.net/ubuntu/+source/systemd/+bug/1759836
https://bugzilla.kernel.org/show_bug.cgi?id=199035
Diffstat (limited to 'config/chroot_local-hooks')
-rwxr-xr-x | config/chroot_local-hooks/03-silverfire-fixes | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/config/chroot_local-hooks/03-silverfire-fixes b/config/chroot_local-hooks/03-silverfire-fixes index 3e701d1..5ed9fac 100755 --- a/config/chroot_local-hooks/03-silverfire-fixes +++ b/config/chroot_local-hooks/03-silverfire-fixes @@ -56,4 +56,9 @@ EOF cd - fi +# hotfix for some dell machines causing 100% cpu load with dell bluetooth enabled + if [ -e /lib/udev/rules.d/97-hid2hci.rules ]; then + sed -i -e "s|ATTR{bInterfaceClass}==\"03\"|ACTION==\"add\", ATTR{bInterfaceClass}==\"03\"|g" /lib/udev/rules.d/97-hid2hci.rules + fi + fi |