Skip to content

Commit

Permalink
fix: exclude evdi on asus (#640)
Browse files Browse the repository at this point in the history
  • Loading branch information
bobslept authored Nov 4, 2023
1 parent 9e9c10c commit b184c51
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,11 @@ RUN sed -i 's@enabled=0@enabled=1@g' /etc/yum.repos.d/_copr_ublue-os-akmods.repo
/tmp/akmods-rpms/kmods/*v4l2loopback*.rpm \
/tmp/akmods-rpms/kmods/*wl*.rpm \
; fi && \
rpm-ostree install \
/tmp/akmods-rpms/kmods/*evdi*.rpm && \
# Don't install evdi on asus because of conflicts
if grep -qv "asus" <<< "${AKMODS_FLAVOR}"; then \
rpm-ostree install \
/tmp/akmods-rpms/kmods/*evdi*.rpm \
; fi && \
sed -i 's@enabled=1@enabled=0@g' /etc/yum.repos.d/negativo17-fedora-multimedia.repo

# Starship Shell Prompt
Expand Down

0 comments on commit b184c51

Please sign in to comment.