Author: blogic Date: 2015-04-02 16:31:02 +0200 (Thu, 02 Apr 2015) New Revision: 45231
Modified: trunk/package/kernel/linux/modules/input.mk Log: kernel: add uinput module This module is needed for bluetooth audio playback with pulseaudio 6 and bluez5. a working guide can be found in the wiki: http://wiki.openwrt.org/wiki/bluetooth.audio (additional packages/modifications are required and submitted to github feeds) tested with: Android mobile (Sony Xperia M) as audio source TI omap BeagleBoard as audio sink Signed-off-by: Dirk Neukirchen <[email protected]> Modified: trunk/package/kernel/linux/modules/input.mk =================================================================== --- trunk/package/kernel/linux/modules/input.mk 2015-04-02 12:02:56 UTC (rev 45230) +++ trunk/package/kernel/linux/modules/input.mk 2015-04-02 14:31:02 UTC (rev 45231) @@ -205,3 +205,21 @@ endef $(eval $(call KernelPackage,keyboard-imx)) + + +define KernelPackage/input-uinput + SUBMENU:=$(INPUT_MODULES_MENU) + TITLE:=user input module + DEPENDS:=+kmod-input-core + KCONFIG:= \ + CONFIG_INPUT_MISC=y \ + CONFIG_INPUT_UINPUT + FILES:=$(LINUX_DIR)/drivers/input/misc/uinput.ko + AUTOLOAD:=$(call AutoProbe,uinput) +endef + +define KernelPackage/input-uinput/description + user input modules needed for bluez +endef + +$(eval $(call KernelPackage,input-uinput)) _______________________________________________ openwrt-commits mailing list [email protected] https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-commits
