mirror of
https://github.com/Ysurac/openmptcprouter.git
synced 2025-02-15 04:42:02 +00:00
95 lines
3.2 KiB
Diff
95 lines
3.2 KiB
Diff
From 0360e2aa85e7fd2cc249b2aac178018d53f61a31 Mon Sep 17 00:00:00 2001
|
|
From: Ilya Trukhanov <lahvuun@gmail.com>
|
|
Date: Sat, 20 Nov 2021 16:26:36 +0200
|
|
Subject: [PATCH 632/634] configs: add CONFIG_HID_PLAYSTATION=m and
|
|
CONFIG_PLAYSTATION_FF=y
|
|
|
|
Enables support for the PlayStation 5 'DualSense' controller and its
|
|
force feedback.
|
|
|
|
Also, Sony is planning to move PlayStation peripheral support from
|
|
hid-sony into hid-playstation in the future:
|
|
https://lore.kernel.org/all/20201219062336.72568-1-roderick@gaikai.com/
|
|
|
|
This means that, potentially, in future kernel releases older
|
|
PlayStation controllers may stop working without this option. As
|
|
Raspberry Pis are a popular choice as emulation consoles, it is probably
|
|
a good idea to enable this.
|
|
|
|
Signed-off-by: Ilya Trukhanov <lahvuun@gmail.com>
|
|
---
|
|
arch/arm/configs/bcm2709_defconfig | 2 ++
|
|
arch/arm/configs/bcm2711_defconfig | 2 ++
|
|
arch/arm/configs/bcmrpi_defconfig | 2 ++
|
|
arch/arm64/configs/bcm2711_defconfig | 2 ++
|
|
arch/arm64/configs/bcmrpi3_defconfig | 2 ++
|
|
5 files changed, 10 insertions(+)
|
|
|
|
diff --git a/arch/arm/configs/bcm2709_defconfig b/arch/arm/configs/bcm2709_defconfig
|
|
index 42fe6bd471b2..cd4148fcdc4b 100644
|
|
--- a/arch/arm/configs/bcm2709_defconfig
|
|
+++ b/arch/arm/configs/bcm2709_defconfig
|
|
@@ -1022,6 +1022,8 @@ CONFIG_HID_ORTEK=m
|
|
CONFIG_HID_PANTHERLORD=m
|
|
CONFIG_HID_PETALYNX=m
|
|
CONFIG_HID_PICOLCD=m
|
|
+CONFIG_HID_PLAYSTATION=m
|
|
+CONFIG_PLAYSTATION_FF=y
|
|
CONFIG_HID_ROCCAT=m
|
|
CONFIG_HID_SAMSUNG=m
|
|
CONFIG_HID_SONY=m
|
|
diff --git a/arch/arm/configs/bcm2711_defconfig b/arch/arm/configs/bcm2711_defconfig
|
|
index bf5ff05815f0..6cceda505484 100644
|
|
--- a/arch/arm/configs/bcm2711_defconfig
|
|
+++ b/arch/arm/configs/bcm2711_defconfig
|
|
@@ -1038,6 +1038,8 @@ CONFIG_HID_ORTEK=m
|
|
CONFIG_HID_PANTHERLORD=m
|
|
CONFIG_HID_PETALYNX=m
|
|
CONFIG_HID_PICOLCD=m
|
|
+CONFIG_HID_PLAYSTATION=m
|
|
+CONFIG_PLAYSTATION_FF=y
|
|
CONFIG_HID_ROCCAT=m
|
|
CONFIG_HID_SAMSUNG=m
|
|
CONFIG_HID_SONY=m
|
|
diff --git a/arch/arm/configs/bcmrpi_defconfig b/arch/arm/configs/bcmrpi_defconfig
|
|
index f1c54effdce2..f7d84b00778e 100644
|
|
--- a/arch/arm/configs/bcmrpi_defconfig
|
|
+++ b/arch/arm/configs/bcmrpi_defconfig
|
|
@@ -1015,6 +1015,8 @@ CONFIG_HID_ORTEK=m
|
|
CONFIG_HID_PANTHERLORD=m
|
|
CONFIG_HID_PETALYNX=m
|
|
CONFIG_HID_PICOLCD=m
|
|
+CONFIG_HID_PLAYSTATION=m
|
|
+CONFIG_PLAYSTATION_FF=y
|
|
CONFIG_HID_ROCCAT=m
|
|
CONFIG_HID_SAMSUNG=m
|
|
CONFIG_HID_SONY=m
|
|
diff --git a/arch/arm64/configs/bcm2711_defconfig b/arch/arm64/configs/bcm2711_defconfig
|
|
index a5c41d4bdc1e..00aa6d7ebb36 100644
|
|
--- a/arch/arm64/configs/bcm2711_defconfig
|
|
+++ b/arch/arm64/configs/bcm2711_defconfig
|
|
@@ -1043,6 +1043,8 @@ CONFIG_HID_ORTEK=m
|
|
CONFIG_HID_PANTHERLORD=m
|
|
CONFIG_HID_PETALYNX=m
|
|
CONFIG_HID_PICOLCD=m
|
|
+CONFIG_HID_PLAYSTATION=m
|
|
+CONFIG_PLAYSTATION_FF=y
|
|
CONFIG_HID_ROCCAT=m
|
|
CONFIG_HID_SAMSUNG=m
|
|
CONFIG_HID_SONY=m
|
|
diff --git a/arch/arm64/configs/bcmrpi3_defconfig b/arch/arm64/configs/bcmrpi3_defconfig
|
|
index 05f1eba91510..2a319d0550a2 100644
|
|
--- a/arch/arm64/configs/bcmrpi3_defconfig
|
|
+++ b/arch/arm64/configs/bcmrpi3_defconfig
|
|
@@ -941,6 +941,8 @@ CONFIG_HID_ORTEK=m
|
|
CONFIG_HID_PANTHERLORD=m
|
|
CONFIG_HID_PETALYNX=m
|
|
CONFIG_HID_PICOLCD=m
|
|
+CONFIG_HID_PLAYSTATION=m
|
|
+CONFIG_PLAYSTATION_FF=y
|
|
CONFIG_HID_ROCCAT=m
|
|
CONFIG_HID_SAMSUNG=m
|
|
CONFIG_HID_SONY=m
|
|
--
|
|
2.33.1
|
|
|