Skip to content

Commit

Permalink
Merge pull request #183 from ghostbsd/libva-issue
Browse files Browse the repository at this point in the history
Change the download of nvidia driver to not fetch libva-nvidia-driver
  • Loading branch information
ericbsd authored Feb 5, 2024
2 parents f840bf6 + 230224f commit b54f3bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,8 @@ fetch_x_drivers_packages()
fi
mkdir ${release}/xdrivers
yes | pkg -R "${cwd}/pkg/" update
echo """$(pkg -R "${cwd}/pkg/" rquery -x -r ${PKGCONG} '%n %n-%v.pkg' 'nvidia-driver')""" > ${release}/xdrivers/drivers-list
pkg_list="""$(pkg -R "${cwd}/pkg/" rquery -x -r ${PKGCONG} '%n-%v.pkg' 'nvidia-driver')"""
echo """$(pkg -R "${cwd}/pkg/" rquery -x -r ${PKGCONG} '%n %n-%v.pkg' 'nvidia-driver' | grep -v libva)""" > ${release}/xdrivers/drivers-list
pkg_list="""$(pkg -R "${cwd}/pkg/" rquery -x -r ${PKGCONG} '%n-%v.pkg' 'nvidia-driver' | grep -v libva)"""
for line in $pkg_list ; do
fetch -o ${release}/xdrivers "${pkg_url}/All/$line"
done
Expand Down

0 comments on commit b54f3bd

Please sign in to comment.