From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 92016138334 for ; Thu, 17 Jan 2019 22:27:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C6CD3E0BE9; Thu, 17 Jan 2019 22:27:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 91360E0BE9 for ; Thu, 17 Jan 2019 22:27:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D0816335D4E for ; Thu, 17 Jan 2019 22:27:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 24773519 for ; Thu, 17 Jan 2019 22:27:21 +0000 (UTC) From: "James Le Cuirot" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "James Le Cuirot" Message-ID: <1547764031.0b0f686a875ae2df53c2c40346a80b3dcdba4611.chewi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-util/xboxdrv/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-util/xboxdrv/files/xboxdrv.udev-rules X-VCS-Directories: games-util/xboxdrv/files/ X-VCS-Committer: chewi X-VCS-Committer-Name: James Le Cuirot X-VCS-Revision: 0b0f686a875ae2df53c2c40346a80b3dcdba4611 X-VCS-Branch: master Date: Thu, 17 Jan 2019 22:27:21 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: f49588a1-4474-4d8f-a718-0f7e65c5f1fe X-Archives-Hash: ca506bfc69f2303e792fb22d8b7866c2 commit: 0b0f686a875ae2df53c2c40346a80b3dcdba4611 Author: Rafael Kitover gmail com> AuthorDate: Sun Jan 13 14:26:26 2019 +0000 Commit: James Le Cuirot gentoo org> CommitDate: Thu Jan 17 22:27:11 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b0f686a games-util/xboxdrv: fix wireless pad udev match Add "Xbox 360 Wireless Adapter" to the ID_MODEL_FROM_DATABASE match patterns so that the wireless Xbox 360 controller adapter is detected. Signed-off-by: Rafael Kitover gmail.com> Closes: https://github.com/gentoo/gentoo/pull/10823 Signed-off-by: James Le Cuirot gentoo.org> games-util/xboxdrv/files/xboxdrv.udev-rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/games-util/xboxdrv/files/xboxdrv.udev-rules b/games-util/xboxdrv/files/xboxdrv.udev-rules index c571b2b5ab0..85b1d57dd26 100644 --- a/games-util/xboxdrv/files/xboxdrv.udev-rules +++ b/games-util/xboxdrv/files/xboxdrv.udev-rules @@ -1,5 +1,5 @@ SUBSYSTEM=="usb", ACTION=="add",\ - ENV{ID_MODEL_FROM_DATABASE}=="Xbox*Controller|Xbox*Controller S",\ + ENV{ID_MODEL_FROM_DATABASE}=="Xbox*Controller|Xbox*Controller S|Xbox 360 Wireless Adapter",\ TAG+="systemd",\ ENV{SYSTEMD_ALIAS}="/sys/subsystem/usb/xbox/controller$number",\ ENV{SYSTEMD_WANTS}+="xboxdrv.service"