File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,12 @@ download_driver_package_deps () {
6868 pushd ${LOCAL_REPO_DIR}
6969
7070 download_apt_with_dep linux-objects-nvidia-${DRIVER_BRANCH} -server-${KERNEL_VERSION}
71- download_apt_with_dep linux-signatures-nvidia-${KERNEL_VERSION}
71+
72+ # linux-signatures-nvidia (secure boot signatures) is not available for arm64
73+ if [ " $TARGETARCH " = " amd64" ]; then
74+ download_apt_with_dep linux-signatures-nvidia-${KERNEL_VERSION}
75+ fi
76+
7277 download_apt_with_dep linux-modules-nvidia-${DRIVER_BRANCH} -server-${KERNEL_VERSION}
7378 download_apt_with_dep linux-modules-nvidia-${DRIVER_BRANCH} -server-open-${KERNEL_VERSION}
7479 download_apt_with_dep nvidia-utils-${DRIVER_BRANCH} -server
@@ -77,6 +82,7 @@ download_driver_package_deps () {
7782 download_apt_with_dep libnvidia-extra-${DRIVER_BRANCH} -server
7883 download_apt_with_dep libnvidia-encode-${DRIVER_BRANCH} -server
7984
85+ # SHIVAKU: TODO: Remove this once libnvidia-fbc1 is available for arm64
8086 # libnvidia-fbc1 (FrameBuffer Capture) is not available for arm64
8187 if [ " $TARGETARCH " = " amd64" ]; then
8288 download_apt_with_dep libnvidia-fbc1-${DRIVER_BRANCH} -server
You can’t perform that action at this time.
0 commit comments