linux: disable UEVENT_HELPER by default on versions >= 3.15

This commit is contained in:
Tobias Geerinckx-Rice 2015-04-06 14:00:03 +02:00
parent f02651ee9b
commit 8a2deb7abe

View file

@ -310,6 +310,9 @@ with stdenv.lib;
SLIP_COMPRESSED y # CSLIP compressed headers
SLIP_SMART y
THERMAL_HWMON y # Hardware monitoring support
${optionalString (versionAtLeast version "3.15") ''
UEVENT_HELPER n
''}
${optionalString (versionOlder version "3.15") ''
USB_DEBUG? n
''}