Parcourir la source

kernel: add missing dependency on kmod-drm to kmod-i2c-hid

Buildbot revealed that on the x86/geode target, on which CONFIG_DRM=y isn't set,
kmod-i2c-hid misses the dependency on kmod-drm. Fix that to fix the build for
x86/geode.

Fixes: c83e275c9b ("kernel: package modules for I2C HID devices")
Signed-off-by: Daniel Golle <[email protected]>
Daniel Golle il y a 5 mois
Parent
commit
719c9059b2
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      package/kernel/linux/modules/i2c.mk

+ 1 - 1
package/kernel/linux/modules/i2c.mk

@@ -169,7 +169,7 @@ define KernelPackage/i2c-hid
   $(call i2c_defaults,$(I2C_HID_MODULES),60)
   TITLE:=I2C HID support
   KCONFIG+= CONFIG_I2C_HID
-  DEPENDS:=+kmod-hid
+  DEPENDS:=+kmod-drm +kmod-hid
   HIDDEN:=1
 endef