Skip to content

Commit ab4119a

Browse files
committed
fork nvidia-driver to force x86 only
1 parent 669a9e5 commit ab4119a

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
strategy:
3535
fail-fast: false
3636
matrix:
37-
arch: ["x86_64", "aarch64"]
37+
arch: ["x86_64"] # , "aarch64"
3838
fedora_version: ["43"]
3939
runs-on: ${{ matrix.arch == 'aarch64' && 'ubuntu-24.04-arm' || 'ubuntu-24.04' }}
4040

.gitmodules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
url = https://github.com/negativo17/nvidia-modprobe
44
[submodule "nvidia-driver"]
55
path = nvidia-driver
6-
url = https://github.com/negativo17/nvidia-driver
6+
url = https://github.com/bazzite-org/nvidia-driver
77
[submodule "nvidia-persistenced"]
88
path = nvidia-persistenced
99
url = https://github.com/negativo17/nvidia-persistenced

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export VERSION=${VERSION:-$SPEC_RELEASE}
2020

2121
if [ -z "$SKIP_TARBAL" ]; then
2222
pushd nvidia-driver
23-
ARCHES="x86_64 aarch64" bash ./nvidia-generate-tarballs.sh
23+
ARCHES="$(uname -m)" bash ./nvidia-generate-tarballs.sh
2424
popd
2525
fi
2626

0 commit comments

Comments
 (0)