summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHolger Paradies <retabell@gmx.de>2019-05-05 21:08:00 +0200
committerHolger Paradies <retabell@gmx.de>2019-05-05 21:14:04 +0200
commitcea743694387fd8c89fc32a1eaf07b434df0b3d1 (patch)
tree909c76086e128e336c0658dd3e2402d264e33c01
parent8142d256a165d0b3b286e0c7e89610b7364cd93f (diff)
downloadkanotix-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
-rwxr-xr-xconfig/chroot_local-hooks/03-silverfire-fixes5
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