X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/37a2d57dfd005cfbc369de73c8e51ff66f842ecf..31a89af3be5066c2c13e4abef79ca80cae5e4612:/package/kernel/modules/other.mk diff --git a/package/kernel/modules/other.mk b/package/kernel/modules/other.mk index d7bdf0f42..d4fbd8ce6 100644 --- a/package/kernel/modules/other.mk +++ b/package/kernel/modules/other.mk @@ -33,7 +33,9 @@ define KernelPackage/crypto $(CONFIG_CRYPTO_ANUBIS) \ $(CONFIG_CRYPTO_DEFLATE) \ $(CONFIG_CRYPTO_MICHAEL_MIC) \ - $(CONFIG_CRYPTO_CRC32C) + $(CONFIG_CRYPTO_CRC32C) \ + $(CONFIG_CRYPTO_ECB)) \ + $(CONFIG_CRYPTO_BLKCIPHER) FILES:=$(LINUX_DIR)/crypto/*.$(LINUX_KMOD_SUFFIX) SUBMENU:=$(EMENU) endef @@ -118,8 +120,17 @@ define KernelPackage/soundcore/2.6 $(LINUX_DIR)/sound/core/oss/*.$(LINUX_KMOD_SUFFIX) AUTOLOAD:=$(call AutoLoad,30,soundcore snd snd-page-alloc snd-hwdep snd-rawmidi snd-timer snd-pcm snd-mixer-oss snd-pcm-oss) endef + +define KernelPackage/soundcore/uml-2.6 + FILES:= \ + $(LINUX_DIR)/arch/um/drivers/hostaudio.$(LINUX_KMOD_SUFFIX) \ + $(LINUX_DIR)/sound/soundcore.$(LINUX_KMOD_SUFFIX) + AUTOLOAD:=$(call AutoLoad,30,soundcore hostaudio) +endef + $(eval $(call KernelPackage,soundcore)) + define KernelPackage/loop TITLE:=Loopback device support DESCRIPTION:=Kernel module for loopback device support @@ -282,7 +293,7 @@ define KernelPackage/videodev/2.4 endef define KernelPackage/videodev/2.6 - AUTOLOAD:=$(call AutoLoad,60,v4l2-common v4l1-compat videodev) + AUTOLOAD:=$(call AutoLoad,60,v4l2-common v4l1-compat compat_ioctl32 videodev) endef $(eval $(call KernelPackage,videodev)) @@ -358,3 +369,25 @@ define KernelPackage/hwmon-pc87360 AUTOLOAD:=$(call AutoLoad,50,pc87360) endef $(eval $(call KernelPackage,hwmon-pc87360)) + +define KernelPackage/input-core + TITLE:=Input device core + DESCRIPTION:=Kernel modules for support of input device + SUBMENU:=$(EMENU) + KCONFIG:=$(CONFIG_INPUT) + FILES:=$(LINUX_DIR)/drivers/input/input-core.$(LINUX_KMOD_SUFFIX) + AUTOLOAD:=$(call AutoLoad,50,input-core) +endef +$(eval $(call KernelPackage,input-core)) + +define KernelPackage/input-evdev + TITLE:=Input even device + DESCRIPTION:=Kernel modules for support of input device events + DEPENDS:=+kmod-input-core + SUBMENU:=$(EMENU) + KCONFIG:=$(CONFIG_INPUT_EVDEV) + FILES:=$(LINUX_DIR)/drivers/input/evdev.$(LINUX_KMOD_SUFFIX) + AUTOLOAD:=$(call AutoLoad,60,evdev) +endef +$(eval $(call KernelPackage,input-evdev)) +