Update build.func

fixes https://github.com/tteck/Proxmox/issues/2894
This commit is contained in:
tteckster 2024-05-01 14:38:15 -04:00 committed by GitHub
parent adb7bc55f4
commit ace4a8e43f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 2 deletions

View File

@ -595,18 +595,20 @@ EOF
fi fi
else else
if [[ "$APP" == "Channels" || "$APP" == "Emby" || "$APP" == "Frigate" || "$APP" == "Jellyfin" || "$APP" == "Plex" || "$APP" == "Scrypted" || "$APP" == "Tdarr" || "$APP" == "Unmanic" ]]; then if [[ "$APP" == "Channels" || "$APP" == "Emby" || "$APP" == "Frigate" || "$APP" == "Jellyfin" || "$APP" == "Plex" || "$APP" == "Scrypted" || "$APP" == "Tdarr" || "$APP" == "Unmanic" ]]; then
if [[ -e "/dev/dri/card0" ]]; then if [[ -e "/dev/dri/renderD128" ]]; then
if [[ -e "/dev/dri/card0" ]]; then
cat <<EOF >>$LXC_CONFIG cat <<EOF >>$LXC_CONFIG
# VAAPI hardware transcoding # VAAPI hardware transcoding
dev0: /dev/dri/card0,gid=44 dev0: /dev/dri/card0,gid=44
dev1: /dev/dri/renderD128,gid=104 dev1: /dev/dri/renderD128,gid=104
EOF EOF
else else
cat <<EOF >>$LXC_CONFIG cat <<EOF >>$LXC_CONFIG
# VAAPI hardware transcoding # VAAPI hardware transcoding
dev0: /dev/dri/card1,gid=44 dev0: /dev/dri/card1,gid=44
dev1: /dev/dri/renderD128,gid=104 dev1: /dev/dri/renderD128,gid=104
EOF EOF
fi
fi fi
fi fi
fi fi