Skip to content

Commit fbbae8c

Browse files
authored
Merge pull request #103 from linuxserver/trixie-amd-intel-fixes
Trixie amd intel fixes
2 parents 40d866f + 960e644 commit fbbae8c

4 files changed

Lines changed: 5 additions & 1 deletion

File tree

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ ENV DISPLAY=:1 \
5858
SELKIES_INTERPOSER=/usr/lib/selkies_joystick_interposer.so \
5959
NVIDIA_DRIVER_CAPABILITIES=all \
6060
DISABLE_ZINK=false \
61+
DISABLE_DRI3=false \
6162
TITLE=Selkies
6263

6364
RUN \

Dockerfile.aarch64

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ ENV DISPLAY=:1 \
5858
SELKIES_INTERPOSER=/usr/lib/selkies_joystick_interposer.so \
5959
NVIDIA_DRIVER_CAPABILITIES=all \
6060
DISABLE_ZINK=false \
61+
DISABLE_DRI3=false \
6162
TITLE=Selkies
6263

6364
RUN \

root/etc/s6-overlay/s6-rc.d/svc-selkies/run

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ if [ ! -z ${DEV_MODE+x} ]; then
5656
--mode="websockets"
5757
fi
5858

59-
6059
# Start Selkies
6160
exec s6-setuidgid abc \
6261
selkies \

root/etc/s6-overlay/s6-rc.d/svc-xorg/run

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ fi
88
if [ ! -z ${DRINODE+x} ]; then
99
VFBCOMMAND="-vfbdevice ${DRINODE}"
1010
fi
11+
if [ "${DISABLE_DRI3}" != "false" ]; then
12+
VFBCOMMAND=""
13+
fi
1114
DEFAULT_RES="15360x8640"
1215
if [ ! -z ${MAX_RES+x} ]; then
1316
DEFAULT_RES="${MAX_RES}"

0 commit comments

Comments
 (0)