mirror of
https://github.com/terrapkg/packages.git
synced 2026-06-02 18:02:19 +00:00
60209bf579
* add nvidia-kmod
* add settings, xsettings, mock label
* oops
* add nvidia setting assets
* add libva-nvidia-driver
* add: nvidia-kmod-common w/ properietary defaults
* download the x86 version of the driver package when running common
* add nvidia-driver package
* I don't think we actually need i386
* add a readme, fix build error and clean up script
* add back the accursed tarball script, we can port the thing later
* add nvidia-modprobe
* update metadata, add nvidia-persistenced
* add update scripts to nvidia drivers
* add update scripts for every cuda package
* make the component fetch a separate function for memoization
* cusparse
* cusparselt is not from cuda toolkit
* add nvidia subrepo label for multirepo
* set version for nvidia tarball
* nvidia-driver: download tarballs on build time
* clean up inline prep script
* NVProf is dropped in Jetpack 5, so there's no ARM version of it.
(cherry picked from commit c72c975c16)
Co-authored-by: Cappy Ishihara <cappy@cappuchino.xyz>
21 lines
916 B
Plaintext
21 lines
916 B
Plaintext
# This variable determines what kind of modules get installed on the system
|
|
# until the Nvidia driver provides only the open source variant.
|
|
#
|
|
# The name of the variable is the name of the folder that hosts the kernel
|
|
# module code inside the driver installer:
|
|
#
|
|
# +-------------+---------------------+----------------+
|
|
# | Value | Type | License type |
|
|
# +-------------+---------------------+----------------+
|
|
# | kernel | Proprietary drivers | NVIDIA license |
|
|
# +-------------+---------------------+----------------+
|
|
# | kernel-open | Open source drivers | Dual MIT/GPL |
|
|
# +-------------+---------------------+----------------+
|
|
|
|
# TERRA-SPECIFIC NOTES:
|
|
# Since we are focused on HWE, we will use proprietary drivers for now.
|
|
# At least until Pascal/Maxwell support is added to the open source drivers, or until
|
|
# everyone stops using them in the near future.
|
|
|
|
MODULE_VARIANT=kernel
|