Clean up intel packages

This commit is contained in:
Nicolas Mowen 2024-09-14 05:48:25 -06:00
parent 50b174b0f7
commit 6637ac478f

View File

@ -67,12 +67,15 @@ if [[ "${TARGETARCH}" == "amd64" ]]; then
echo 'deb https://deb.debian.org/debian bookworm main contrib non-free' >/etc/apt/sources.list.d/debian-bookworm.list
apt-get -qq update
apt-get -qq install --no-install-recommends --no-install-suggests -y \
intel-opencl-icd onevpl-tools intel-media-va-driver-non-free i965-va-driver libmfx-gen1.2 intel-gpu-tools \
intel-opencl-icd intel-media-va-driver-non-free i965-va-driver \ # Intel GPU drivers
onevpl-intel-gpu libmfx-gen1.2 onevpl-tools intel-gpu-tools \ # Intel oneVPL
libva-drm2 \
mesa-va-drivers radeontop
mesa-va-drivers radeontop # AMD GPU drivers
# something about this dependency requires it to be installed in a separate call rather than in the line above
apt-get -qq install --no-install-recommends --no-install-suggests -y \
i965-va-driver-shaders
rm -f /etc/apt/sources.list.d/debian-bookworm.list
fi