forked from SteamFork/distribution
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
21 changed files
with
89 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
From 1c5b0dfc807fac142f004c581817a94bbaca8a48 Mon Sep 17 00:00:00 2001 | ||
From: fewtarius <88717793+fewtarius@users.noreply.github.com> | ||
Date: Tue, 28 May 2024 18:54:32 +0200 | ||
Subject: [PATCH 40/41] Add Atari VCS quirk | ||
|
||
--- | ||
drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c | 2 ++ | ||
1 file changed, 2 insertions(+) | ||
|
||
diff --git a/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c b/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c | ||
index 99dbd2341120..e9ce71fced4b 100644 | ||
--- a/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c | ||
+++ b/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c | ||
@@ -1170,6 +1170,10 @@ static const struct amdgpu_gfxoff_quirk amdgpu_gfxoff_quirk_list[] = { | ||
{ 0x1002, 0x15dd, 0x103c, 0x83e7, 0xd3 }, | ||
/* GFXOFF is unstable on C6 parts with a VBIOS 113-RAVEN-114 */ | ||
{ 0x1002, 0x15dd, 0x1002, 0x15dd, 0xc6 }, | ||
+ /* GFXOFF is unstable on revision 91 (Atari VCS) with 113-RAVEN2-117 */ | ||
+ { 0x1002, 0x15D8, 0x1002, 0x15D8, 0x91 }, | ||
+ /* GFXOFF is unstable on revision 0xc3 (Ayaneo Air) with 113-CEZANNE-018 */ | ||
+ { 0x1002, 0x1637, 0x1002, 0x1637, 0xc3 }, | ||
/* Apple MacBook Pro (15-inch, 2019) Radeon Pro Vega 20 4 GB */ | ||
{ 0x1002, 0x69af, 0x106b, 0x019a, 0xc0 }, | ||
{ 0, 0, 0, 0, 0 }, | ||
diff -rupN linux-6.10.5.orig/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c linux-6.10.5/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | ||
--- linux-6.10.5.orig/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c 2024-08-14 13:34:38.000000000 +0000 | ||
+++ linux-6.10.5/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c 2024-08-28 15:53:20.432207108 +0000 | ||
@@ -1883,6 +1883,7 @@ static int amdgpu_device_init_apu_flags( | ||
break; | ||
case CHIP_RENOIR: | ||
if ((adev->pdev->device == 0x1636) || | ||
+ (adev->pdev->device == 0x1638) || | ||
(adev->pdev->device == 0x164c)) | ||
adev->apu_flags |= AMD_APU_IS_RENOIR; | ||
else | ||
-- | ||
2.43.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/steam-powerbuttond b/steam-powerbuttond | ||
index 273bb76..310cb75 100755 | ||
--- a/steam-powerbuttond | ||
+++ b/steam-powerbuttond | ||
@@ -95,7 +95,7 @@ def __init__(): | ||
def get_user(): | ||
global user | ||
global home_path | ||
- command = "who | awk '{print $1}' | sort | head -1" | ||
+ command = "id -nu 1000" | ||
|
||
while not user: | ||
users = subprocess.Popen( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 0 additions & 3 deletions
3
...vice-support/src/etc/lib/steamfork_hwsupport/devicequirks/AYANEO-FLIP-DS/boot.d/001-audio
This file was deleted.
Oops, something went wrong.
5 changes: 0 additions & 5 deletions
5
...vice-support/src/etc/lib/steamfork_hwsupport/devicequirks/AYANEO-FLIP-KB/boot.d/001-audio
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,5 +2,3 @@ | |
[Daemon] | ||
Theme=steamos | ||
ShowDelay=0 | ||
DeviceScale=1 | ||
DeviceTimeout=8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,5 +2,3 @@ | |
[Daemon] | ||
Theme=steamos | ||
ShowDelay=0 | ||
DeviceScale=1 | ||
DeviceTimeout=8 |
1 change: 0 additions & 1 deletion
1
rootfs/steamfork/postcopy/usr/share/wireplumber/main.lua.d/50-libcamera-config.lua
This file was deleted.
Oops, something went wrong.
5 changes: 5 additions & 0 deletions
5
rootfs/steamfork/postcopy/usr/share/wireplumber/wireplumber.conf.d/10-disable-camera.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
wireplumber.profiles = { | ||
main = { | ||
monitor.libcamera = disabled | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters