-
Notifications
You must be signed in to change notification settings - Fork 1
/
nvidia-470xx-kmod.spec
1731 lines (1224 loc) · 61.8 KB
/
nvidia-470xx-kmod.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# buildforkernels macro hint: when you build a new version or a new release
# that contains bugfixes or other improvements then you must disable the
# "buildforkernels newest" macro for just that build; immediately after
# queuing that build enable the macro again for subsequent builds; that way
# a new akmod package will only get build when a new one is actually needed
%if 0%{?fedora}
%global buildforkernels akmod
%endif
%global debug_package %{nil}
Name: nvidia-470xx-kmod
Epoch: 3
Version: 470.223.02
# Taken over by kmodtool
Release: 1%{?dist}
License: Redistributable, no modification permitted
Summary: NVIDIA 470xx display driver kernel module
URL: https://www.nvidia.com/
Source11: nvidia-470xx-kmodtool-excludekernel-filterfile
# needed for plague to make sure it builds for i586 and i686
ExclusiveArch: x86_64
# get the needed BuildRequires (in parts depending on what we build for)
%global AkmodsBuildRequires %{_bindir}/kmodtool, xorg-x11-drv-nvidia-470xx-kmodsrc >= %{epoch}:%{version}
BuildRequires: %{AkmodsBuildRequires}
%{!?kernels:BuildRequires: gcc, elfutils-libelf-devel, buildsys-build-rpmfusion-kerneldevpkgs-%{?buildforkernels:%{buildforkernels}}%{!?buildforkernels:current}-%{_target_cpu} }
# kmodtool does its magic here
%{expand:%(kmodtool --target %{_target_cpu} --repo rpmfusion --kmodname %{name} --filterfile %{SOURCE11} --obsolete-name nvidia-newest --obsolete-version "%{?epoch}:%{version}-%{release}" %{?buildforkernels:--%{buildforkernels}} %{?kernels:--for-kernels "%{?kernels}"} 2>/dev/null) }
%description
The nvidia 470xx %{version} display driver kernel module for kernel %{kversion}.
%prep
# error out if there was something wrong with kmodtool
%{?kmodtool_check}
# print kmodtool output for debugging purposes:
kmodtool --target %{_target_cpu} --repo rpmfusion --kmodname %{name} --filterfile %{SOURCE11} --obsolete-name nvidia-newest --obsolete-version "%{?epoch}:%{version}-%{release}" %{?buildforkernels:--%{buildforkernels}} %{?kernels:--for-kernels "%{?kernels}"} 2>/dev/null
%setup -T -c
tar --use-compress-program xz -xf %{_datadir}/%{name}-%{version}/%{name}-%{version}-%{_target_cpu}.tar.xz
# patch loop
for kernel_version in %{?kernel_versions} ; do
cp -a kernel _kmod_build_${kernel_version%%___*}
done
%build
%if 0%{?_without_nvidia_uvm:1}
export NV_EXCLUDE_KERNEL_MODULES="${NV_EXCLUDE_KERNEL_MODULES} nvidia_uvm "
%endif
%if 0%{?_without_nvidia_modeset:1}
export NV_EXCLUDE_KERNEL_MODULES="${NV_EXCLUDE_KERNEL_MODULES} nvidia_modeset "
%endif
for kernel_version in %{?kernel_versions}; do
pushd _kmod_build_${kernel_version%%___*}/
make V=1 %{?_smp_mflags} \
KERNEL_UNAME="${kernel_version%%___*}" SYSSRC="${kernel_version##*___}" \
IGNORE_CC_MISMATCH=1 IGNORE_XEN_PRESENCE=1 IGNORE_PREEMPT_RT_PRESENCE=1 \
module
popd
done
%install
for kernel_version in %{?kernel_versions}; do
mkdir -p $RPM_BUILD_ROOT/%{kmodinstdir_prefix}/${kernel_version%%___*}/%{kmodinstdir_postfix}/
install -D -m 0755 _kmod_build_${kernel_version%%___*}/nvidia*.ko \
$RPM_BUILD_ROOT/%{kmodinstdir_prefix}/${kernel_version%%___*}/%{kmodinstdir_postfix}/
done
%{?akmod_install}
%changelog
* Wed Nov 01 2023 Leigh Scott <[email protected]> - 3:470.223.02-1
- Update to 470.223.02
* Wed Sep 06 2023 orphan <[email protected]> - 3:470.199.02-3
- Fix for F39 branch
* Thu Aug 03 2023 RPM Fusion Release Engineering <[email protected]> - 3:470.199.02-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
* Fri Jun 30 2023 Vitaly Zaitsev <[email protected]> - 3:470.199.02-1
- Updated to version 470.199.02.
* Sat May 20 2023 Vitaly Zaitsev <[email protected]> - 3:470.182.03-2
- Added patch for the Linux kernel 6.3 support.
* Fri Mar 31 2023 Vitaly Zaitsev <[email protected]> - 3:470.182.03-1
- Updated to version 470.182.03.
* Sat Feb 25 2023 Vitaly Zaitsev <[email protected]> - 3:470.161.03-2
- Added patch for the Linux kernel 6.2 support.
* Tue Nov 29 2022 Vitaly Zaitsev <[email protected]> - 3:470.161.03-1
- Updated to version 470.161.03.
* Sun Oct 30 2022 Vitaly Zaitsev <[email protected]> - 3:470.141.03-3
- Added backported Debian patches for the Linux kernel 6.0.
* Mon Aug 08 2022 RPM Fusion Release Engineering <[email protected]> - 3:470.141.03-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild and ffmpeg
5.1
* Tue Aug 02 2022 Vitaly Zaitsev <[email protected]> - 3:470.141.03-1
- Updated to version 470.141.03.
* Mon May 16 2022 Vitaly Zaitsev <[email protected]> - 3:470.129.06-1
- Updated to version 470.129.06.
* Thu Feb 10 2022 RPM Fusion Release Engineering <[email protected]> - 3:470.103.01-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
* Tue Feb 01 2022 Vitaly Zaitsev <[email protected]> - 3:470.103.01-1
- Updated to version 470.103.01.
* Mon Dec 13 2021 Vitaly Zaitsev <[email protected]> - 3:470.94-1
- Updated to version 470.94.
* Mon Nov 15 2021 Vitaly Zaitsev <[email protected]> - 3:470.86-1
- Updated to version 470.86.
* Sat Oct 30 2021 Vitaly Zaitsev <[email protected]> - 3:470.82.00-1
- Updated to version 470.82.00.
* Fri Oct 29 2021 Vitaly Zaitsev <[email protected]> - 3:470.74-2
- Extracted to a separate legacy LTS branch.
* Tue Sep 21 2021 Leigh Scott <[email protected]> - 3:470.74-1
- Update to 470.74 release
* Wed Aug 11 2021 Leigh Scott <[email protected]> - 3:470.63.01-1
- Update to 470.63.01 release
* Wed Aug 04 2021 RPM Fusion Release Engineering <[email protected]> - 3:470.57.02-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
* Mon Jul 19 2021 Leigh Scott <[email protected]> - 3:470.57.02-1
- Update to 470.57.02 release
* Wed Jun 23 2021 Leigh Scott <[email protected]> - 3:470.42.01-1
- Update to 470.42.01 beta
* Fri May 21 2021 Leigh Scott <[email protected]> - 3:465.31-1
- Update to 465.31 release
* Fri Apr 30 2021 Leigh Scott <[email protected]> - 3:465.27-1
- Update to 465.27 release
* Thu Apr 15 2021 Leigh Scott <[email protected]> - 3:465.24.02-1
- Update to 465.24.02 release
* Wed Mar 31 2021 Leigh Scott <[email protected]> - 3:465.19.01-1
- Update to 465.19.01 beta
* Fri Mar 19 2021 Leigh Scott <[email protected]> - 3:460.67-1
- Update to 460.67 release
* Thu Feb 25 2021 Leigh Scott <[email protected]> - 3:460.56-1
- Update to 460.56 release
* Thu Feb 04 2021 RPM Fusion Release Engineering <[email protected]> - 3:460.39-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
* Tue Jan 26 2021 Leigh Scott <[email protected]> - 3:460.39-1
- Update to 460.39 release
* Thu Jan 7 2021 Leigh Scott <[email protected]> - 3:460.32.03-1
- Update to 460.32.03 release
* Wed Dec 16 2020 Leigh Scott <[email protected]> - 3:460.27.04-1
- Update to 460.27.04 beta
* Mon Nov 23 2020 Leigh Scott <[email protected]> - 3:455.45.01-3
- Add patch to reduce kmalloc limit
* Mon Nov 23 2020 Nicolas Chauvet <[email protected]> - 3:455.45.01-2
- Allow to disable the build of nvidia_{modeset,uvm}
* Wed Nov 18 2020 Leigh Scott <[email protected]> - 3:455.45.01-1
- Update to 455.45.01 release
* Thu Oct 29 2020 Leigh Scott <[email protected]> - 3:455.38-1
- Update to 455.38 release
* Wed Oct 7 2020 Leigh Scott <[email protected]> - 3:455.28-1
- Update to 455.28 release
* Fri Sep 18 2020 Leigh Scott <[email protected]> - 3:455.23.04-1
- Update to 455.23.04 beta
* Wed Aug 19 2020 Leigh Scott <[email protected]> - 3:450.66-1
- Update to 450.66 release
* Thu Jul 09 2020 Leigh Scott <[email protected]> - 3:450.57-1
- Update to 450.57 release
* Tue Jul 07 2020 Leigh Scott <[email protected]> - 3:450.51-2
- Patch for 5.8rc kernel
* Wed Jun 24 2020 Leigh Scott <[email protected]> - 3:450.51-1
- Update to 450.51 beta
* Wed Apr 15 2020 Leigh Scott <[email protected]> - 3:440.82-2
- Patch for kernel-5.7rc
* Tue Apr 07 2020 leigh123linux <[email protected]> - 3:440.82-1
- Update to 440.82 release
* Sun Mar 01 2020 leigh123linux <[email protected]> - 3:440.64-2
- Patch for 5.6 pre rc kernel
* Fri Feb 28 2020 leigh123linux <[email protected]> - 3:440.64-1
- Update to 440.64 release
* Fri Feb 28 2020 Leigh Scott <[email protected]> - 3:440.59-2
- Patch for 5.6 pre rc kernel
* Mon Feb 03 2020 Leigh Scott <[email protected]> - 3:440.59-1
- Update to 440.59 release
* Sat Feb 01 2020 Leigh Scott <[email protected]> - 3:440.44-4
- Backport kernel 5.4 and 5.5 changes from vulkan development driver
* Thu Jan 30 2020 Leigh Scott <[email protected]> - 3:440.44-3
- Add patch for kernel-5.4 prime issue
* Mon Dec 30 2019 Leigh Scott <[email protected]> - 3:440.44-2
- Patch for 5.5rc kernel
* Wed Dec 11 2019 Leigh Scott <[email protected]> - 3:440.44-1
- Update to 440.44 release
* Fri Nov 22 2019 Leigh Scott <[email protected]> - 3:440.36-1
- Update to 440.36 release
* Mon Nov 04 2019 Leigh Scott <[email protected]> - 3:440.31-1
- Update to 440.31 release
* Thu Oct 17 2019 Leigh Scott <[email protected]> - 3:440.26-1
- Update to 440.26 beta
* Mon Sep 30 2019 Leigh Scott <[email protected]> - 3:435.21-2
- Patch for 5.4 pre rc kernel
* Fri Aug 30 2019 Leigh Scott <[email protected]> - 3:435.21-1
- Update to 435.21 release
* Tue Aug 13 2019 Leigh Scott <[email protected]> - 3:435.17-1
- Update to 435.17 beta
* Sat Aug 10 2019 RPM Fusion Release Engineering <[email protected]> - 3:430.40-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
* Mon Jul 29 2019 Leigh Scott <[email protected]> - 3:430.40-1
- Update to 430.40 release
* Mon Jul 15 2019 Leigh Scott <[email protected]> - 3:430.34-1
- Update to 430.34 release
* Tue Jun 11 2019 Leigh Scott <[email protected]> - 3:430.26-1
- Update to 430.26 release
* Tue May 21 2019 Leigh Scott <[email protected]> - 3:430.14-2
- Add BuildRequires needed for current build
* Tue May 14 2019 Leigh Scott <[email protected]> - 3:430.14-1
- Update to 430.14 release
* Wed Apr 24 2019 Leigh Scott <[email protected]> - 3:430.09-1
- Update to 430.09 beta
* Sun Apr 07 2019 Leigh Scott <[email protected]> - 3:418.56-3
- Patch for 5.1rc kernel
* Thu Mar 21 2019 Leigh Scott <[email protected]> - 3:418.56-2
- Add release tag to akmod build requires and obsoletes
* Thu Mar 21 2019 Leigh Scott <[email protected]> - 3:418.56-1
- Update to 418.56 release
* Tue Mar 05 2019 RPM Fusion Release Engineering <[email protected]> - 3:418.43-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
* Fri Feb 22 2019 Leigh Scott <[email protected]> - 3:418.43-1
- Update to 418.43 release
* Fri Feb 08 2019 Leigh Scott <[email protected]> - 3:418.30-1
- Update to 418.30 beta
* Thu Jan 17 2019 Leigh Scott <[email protected]> - 3:415.27-3
- Patch for 5.0rc kernel
* Wed Jan 16 2019 Leigh Scott <[email protected]> - 3:415.27-1
- Update to 415.27 release
* Wed Dec 26 2018 Leigh Scott <[email protected]> - 3:415.25-1
- Update to 415.25 release
* Fri Dec 14 2018 Leigh Scott <[email protected]> - 3:415.23-1
- Update to 415.23 release
* Fri Dec 07 2018 Leigh Scott <[email protected]> - 3:415.22-1
- Update to 415.22 release
* Wed Nov 21 2018 Leigh Scott <[email protected]> - 3:415.18-1
- Update to 415.18 release
* Fri Nov 16 2018 Leigh Scott <[email protected]> - 3:410.78-1
- Update to 410.78 release
* Thu Oct 25 2018 Leigh Scott <[email protected]> - 3:410.73-1
- Update to 410.73 release
* Tue Oct 16 2018 Leigh Scott <[email protected]> - 3:410.66-1
- Update to 410.66 release
* Thu Sep 20 2018 Leigh Scott <[email protected]> - 3:410.57-1
- Update to 410.57 beta
* Wed Aug 22 2018 Leigh Scott <[email protected]> - 3:396.54-1
- Update to 396.54 release
* Sat Aug 04 2018 Leigh Scott <[email protected]> - 3:396.51-1
- Update to 396.51 release
* Fri Jul 27 2018 RPM Fusion Release Engineering <[email protected]> - 3:396.45-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
* Fri Jul 20 2018 Leigh Scott <[email protected]> - 3:396.45-1
- Update to 396.45 release
* Fri May 04 2018 Leigh Scott <[email protected]> - 3:396.24-1
- Update to 396.24 release
* Thu Mar 29 2018 Leigh Scott <[email protected]> - 3:390.48-1
- Update to 390.48 release
* Tue Mar 13 2018 Leigh Scott <[email protected]> - 3:390.42-1
- Update to 390.42 release
* Tue Mar 06 2018 Leigh Scott <[email protected]> - 3:390.25-6
- Patch for 4.16 kernel
* Fri Mar 02 2018 RPM Fusion Release Engineering <[email protected]> - 3:390.25-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
* Sat Feb 17 2018 Todd Zullinger <[email protected]> - 390.25-4
- Enable verbose make (V=1)
* Fri Feb 16 2018 Leigh Scott <[email protected]> - 3:390.25-3
- Bump epoch to prevent cuda repo from replacing packages
* Sat Feb 10 2018 Leigh Scott <[email protected]> - 2:390.25-2
- Patch for 4.15 kernel
* Mon Jan 29 2018 Leigh Scott <[email protected]> - 2:390.25-1
- Update to 390.25 release
* Wed Jan 10 2018 Leigh Scott <[email protected]> - 2:390.12-1
- Update to 390.12 beta
* Sun Nov 26 2017 Leigh Scott <[email protected]> - 2:387.34-1
- Update to 387.34 release
* Mon Oct 30 2017 Leigh Scott <[email protected]> - 2:387.22-1
- Update to 387.22 release
* Wed Oct 04 2017 Leigh Scott <[email protected]> - 2:387.12-1
- Update to 387.12 beta
* Sat Sep 23 2017 Leigh Scott <[email protected]> - 2:384.90-3
- revert last commit, it was caused by kernel debugging
* Sat Sep 23 2017 Leigh Scott <[email protected]> - 2:384.90-2
- Patch for 4.13 kernel
* Thu Sep 21 2017 Leigh Scott <[email protected]> - 2:384.90-1
- Update to 384.90 release
* Thu Aug 31 2017 RPM Fusion Release Engineering <[email protected]> - 2:384.59-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
* Tue Jul 25 2017 Leigh Scott <[email protected]> - 2:384.59-1
- Update to 384.59 release
* Mon Jul 24 2017 Leigh Scott <[email protected]> - 2:375.82-1
- Update to 375.82 release
* Fri May 19 2017 Leigh Scott <[email protected]> - 2:375.66-3
- Drop 4.11 kernel patch, 4.11.1 kernel fixes the GPL symbols issue
* Tue May 09 2017 Leigh Scott <[email protected]> - 2:375.66-2
- Add epoch to kmod-nvidia-newest obsolete version
* Fri May 05 2017 Leigh Scott <[email protected]> - 2:375.66-1
- Update to 375.66 release
* Fri Apr 07 2017 Leigh Scott <[email protected]> - 1:381.09-1
- Update to 381.09 beta
* Sun Mar 05 2017 Leigh Scott <[email protected]> - 1:378.13-1
- Update to 378.13
* Mon Feb 20 2017 Leigh Scott <[email protected]> - 1:375.39-2
- patch for 4.10 kernel
* Wed Feb 15 2017 Leigh Scott <[email protected]> - 1:375.39-1
- Update to 375.39 release
* Wed Dec 14 2016 leigh scott <[email protected]> - 1:375.26-1
- Update to 375.26
* Fri Nov 18 2016 leigh scott <[email protected]> - 1:375.20-1
- Update to 375.20
* Sat Oct 22 2016 Leigh Scott <[email protected]> - 1:375.10-1
- Update to 375.10 beta release
* Fri Sep 09 2016 leigh scott <[email protected]> - 1:370.28-1
- Update to 370.28
* Fri Aug 19 2016 Leigh Scott <[email protected]> - 1:370.27-1
- Update to 370.23 beta
* Wed Aug 10 2016 leigh scott <[email protected]> - 1:367.35-2
- patch for 4.8rc kernel
* Sun Jul 17 2016 Leigh Scott <[email protected]> - 1:367.35-1
- Update to 367.35
* Fri Jul 08 2016 Leigh Scott <[email protected]> - 1:367.27-2
- patch for 4.7rc kernel
* Fri Jul 01 2016 Leigh Scott <[email protected]> - 1:367.27-1
- Update to 367.27
* Sat Nov 21 2015 Nicolas Chauvet <[email protected]> - 1:358.16-1
- Update to 358.16
* Fri Nov 13 2015 Nicolas Chauvet <[email protected]> - 1:355.11-3.4
- Rebuilt for kernel
* Fri Nov 06 2015 Nicolas Chauvet <[email protected]> - 1:355.11-3.3
- Rebuilt for kernel
* Tue Oct 06 2015 Nicolas Chauvet <[email protected]> - 1:355.11-3.2
- Rebuilt for kernel
* Wed Sep 23 2015 Nicolas Chauvet <[email protected]> - 1:355.11-3.1
- Rebuilt for kernel
* Wed Sep 16 2015 Nicolas Chauvet <[email protected]> - 1:355.11-3
- Rebuilt for kernel
* Mon Sep 14 2015 Leigh Scott <[email protected]> - 1:355.11-2
- patch for 4.3rc kernel
* Mon Aug 31 2015 Leigh Scott <[email protected]> - 1:355.11-1
- Update to 355.11
* Fri Aug 28 2015 Leigh Scott <[email protected]> - 1:352.41-1
- Update to 352.41
* Fri Aug 21 2015 Nicolas Chauvet <[email protected]> - 1:352.30-2.4
- Rebuilt for kernel
* Thu Aug 13 2015 Nicolas Chauvet <[email protected]> - 1:352.30-2.3
- Rebuilt for kernel
* Fri Aug 07 2015 Nicolas Chauvet <[email protected]> - 1:352.30-2.2
- Rebuilt for kernel
* Thu Jul 30 2015 Nicolas Chauvet <[email protected]> - 1:352.30-2.1
- Rebuilt for kernel
* Wed Jul 29 2015 Nicolas Chauvet <[email protected]> - 1:352.30-2
- Fix build on arm - missing linux/swiotlb.h include
* Wed Jul 29 2015 Leigh Scott <[email protected]> - 1:352.30-1
- Update to 352.30
* Fri Jul 24 2015 Nicolas Chauvet <[email protected]> - 1:352.21-1.4
- Rebuilt for kernel
* Mon Jun 15 2015 Leigh Scott <[email protected]> - 1:352.21-1
- Update to 352.21
* Wed Jun 10 2015 Nicolas Chauvet <[email protected]> - 1:346.72-2.3
- Rebuilt for kernel
* Tue Jun 02 2015 Nicolas Chauvet <[email protected]> - 1:346.72-2.2
- Rebuilt for kernel
* Sun May 24 2015 Nicolas Chauvet <[email protected]> - 1:346.72-2.1
- Rebuilt for kernel
* Sun May 24 2015 Nicolas Chauvet <[email protected]> - 1:346.72-2
- Rebuilt
* Wed May 20 2015 Leigh Scott <[email protected]> - 1:346.72-1
- Update to 343.72
* Wed May 20 2015 Nicolas Chauvet <[email protected]> - 1:346.59-1.6
- Rebuilt for kernel
* Wed May 13 2015 Nicolas Chauvet <[email protected]> - 1:346.59-1.5
- Rebuilt for kernel
* Sat May 09 2015 Nicolas Chauvet <[email protected]> - 1:346.59-1.4
- Rebuilt for kernel
* Sat May 02 2015 Nicolas Chauvet <[email protected]> - 1:346.59-1.3
- Rebuilt for kernel
* Wed Apr 22 2015 Nicolas Chauvet <[email protected]> - 1:346.59-1.2
- Rebuilt for kernel
* Wed Apr 15 2015 Nicolas Chauvet <[email protected]> - 1:346.59-1.1
- Rebuilt for kernel
* Wed Apr 08 2015 Leigh Scott <[email protected]> - 1:346.59-1
- Update to 343.59
- drop 4.0.0 kernel patch
* Mon Mar 30 2015 Nicolas Chauvet <[email protected]> - 1:346.47-2.4
- Rebuilt for kernel
* Fri Mar 27 2015 Nicolas Chauvet <[email protected]> - 1:346.47-2.3
- Rebuilt for kernel
* Mon Mar 23 2015 Nicolas Chauvet <[email protected]> - 1:346.47-2.2
- Rebuilt for kernel
* Sat Mar 21 2015 Nicolas Chauvet <[email protected]> - 1:346.47-2.1
- Rebuilt for kernel
* Fri Mar 13 2015 Leigh Scott <[email protected]> - 1:346.47-2
- rebuild for akmod
* Tue Mar 10 2015 Nicolas Chauvet <[email protected]> - 1:346.47-1.2
- Rebuilt for kernel
* Fri Mar 06 2015 Nicolas Chauvet <[email protected]> - 1:346.47-1.1
- Rebuilt for kernel
* Tue Feb 24 2015 Leigh Scott <[email protected]> - 1:346.47-1
- Update to 343.47
- drop 3.18 kernel patch
* Tue Feb 24 2015 Leigh Scott <[email protected]> - 1:346.35-2
- Patch for 4.0.0 kernel
* Sat Feb 14 2015 Nicolas Chauvet <[email protected]> - 1:346.35-1.5
- Rebuilt for kernel
* Sun Feb 08 2015 Nicolas Chauvet <[email protected]> - 1:346.35-1.4
- Rebuilt for kernel
* Wed Feb 04 2015 Nicolas Chauvet <[email protected]> - 1:346.35-1.3
- Rebuilt for kernel
* Mon Feb 02 2015 Nicolas Chauvet <[email protected]> - 1:346.35-1.2
- Rebuilt for kernel
* Wed Jan 21 2015 Nicolas Chauvet <[email protected]> - 1:346.35-1.1
- Rebuilt for kernel
* Fri Jan 16 2015 Leigh Scott <[email protected]> - 1:346.35-1
- Update to 346.35
* Thu Jan 15 2015 Nicolas Chauvet <[email protected]> - 1:343.36-1.3
- Rebuilt for kernel
* Sat Jan 10 2015 Nicolas Chauvet <[email protected]> - 1:343.36-1.2
- Rebuilt for kernel
* Fri Dec 19 2014 Nicolas Chauvet <[email protected]> - 1:343.36-1.1
- Rebuilt for kernel
* Tue Dec 16 2014 Leigh Scott <[email protected]> - 1:343.36-1
- Update to 343.36
* Sun Dec 14 2014 Nicolas Chauvet <[email protected]> - 1:343.22-4.1
- Rebuilt for kernel
* Fri Dec 05 2014 Nicolas Chauvet <[email protected]> - 1:343.22-4
- Rebuilt for f21 final kernel
* Tue Oct 21 2014 Leigh Scott <[email protected]> - 1:343.22-3
- more 3.18 kernel changes
* Tue Oct 21 2014 Leigh Scott <[email protected]> - 1:343.22-2
- Patch for 3.18 kernel
* Fri Sep 19 2014 Leigh Scott <[email protected]> - 1:343.22-1
- Update to 343.22
* Thu Aug 07 2014 Leigh Scott <[email protected]> - 1:343.13-1
- Update to 343.13
* Tue Jul 08 2014 Leigh Scott <[email protected]> - 1:340.24-1
- Update to 340.24
* Tue Jun 10 2014 Nicolas Chauvet <[email protected]> - 1:340.17-2
- Add epoch to kmodsrc requires
* Mon Jun 09 2014 Leigh Scott <[email protected]> - 1:340.17-1
- Update to 340.17
* Thu Jun 05 2014 Leigh Scott <[email protected]> - 1:337.25-2
- add missing requires to akmod-nvidia package
* Sat May 31 2014 Leigh Scott <[email protected]> - 1:337.25-1
- Update to 337.25
* Sat May 17 2014 Nicolas Chauvet <[email protected]> - 1:337.19-2
- Use kmodsrc to bundle kmod sources
* Tue May 06 2014 Leigh Scott <[email protected]> - 1:337.19-1
- Update to 337.19
* Sat Apr 26 2014 Leigh Scott <[email protected]> - 1:337.12-3
- remove kernel patch
* Wed Apr 09 2014 Nicolas Chauvet <[email protected]> - 1:337.12-2
- Avoid lpae kvarriant on arm
* Tue Apr 08 2014 Leigh Scott <[email protected]> - 1:337.12-1
- Update to 337.12
* Mon Mar 03 2014 Leigh Scott <[email protected]> - 1:334.21-1
- Update to 334.21
* Sat Feb 08 2014 Leigh Scott <[email protected]> - 1:334.16-1
- Update to 334.16
- Patch for 3.14 kernel
* Sat Jan 25 2014 Nicolas Chauvet <[email protected]> - 1:331.38-5
- Disable uvm when NV_BUILD_MODULE_INSTANCES is set
- Simplify patch
* Tue Jan 21 2014 Leigh Scott <[email protected]> - 1:331.38-4
- make more changes to 3.13 kernel patch
* Mon Jan 13 2014 Leigh Scott <[email protected]> - 1:331.38-3
- fix patch for 3.13 kernel
* Mon Jan 13 2014 Leigh Scott <[email protected]> - 1:331.38-2
- rebuild for akmod
* Mon Jan 13 2014 Leigh Scott <[email protected]> - 1:331.38-1
- Update to 331.38 release
- Patch for 3.13 kernel
* Sun Dec 15 2013 Nicolas Chauvet <[email protected]> - 1:331.20-10
- Fix build with lpae kernel
* Wed Dec 11 2013 Nicolas Chauvet <[email protected]> - 1:331.20-9
- Resort and IGNORE XEN/RT Checks
* Tue Dec 10 2013 Nicolas Chauvet <[email protected]> - 1:331.20-8
- Rebuilt for f20 final kernel
* Sat Dec 07 2013 Nicolas Chauvet <[email protected]> - 1:331.20-7
- Rebuilt for f20 final kernel
* Sun Dec 01 2013 Nicolas Chauvet <[email protected]> - 1:331.20-6
- Rebuilt for f20 final kernel
* Sun Nov 24 2013 Nicolas Chauvet <[email protected]> - 1:331.20-5
- Bump
* Sun Nov 24 2013 Nicolas Chauvet <[email protected]> - 1:331.20-3
- Allow akmod to build modules for cuda
Set %%_nv_build_module_instances 8 into /etc/rpm/cuda.dist
* Thu Nov 21 2013 Nicolas Chauvet <[email protected]> - 1:331.20-2.2
- Rebuilt for kernel
* Thu Nov 14 2013 Nicolas Chauvet <[email protected]> - 1:331.20-2.1
- Rebuilt for kernel
* Mon Nov 11 2013 Nicolas Chauvet <[email protected]> - 1:331.20-2
- Add nvidia-uvm
- Fix build directory layout - rfbz#2907
* Thu Nov 07 2013 Leigh Scott <[email protected]> - 1:331.20-1
- Update to 331.20 release
* Wed Nov 06 2013 Leigh Scott <[email protected]> - 1:325.15-4
- use nvidia fix for get_num_physpages
* Mon Sep 16 2013 Leigh Scott <[email protected]> - 1:325.15-3
- patch for 3.12 git kernel
* Tue Aug 06 2013 Leigh Scott <[email protected]> - 1:325.15-2
- rebuild for akmod as pae marco is broken
* Tue Aug 06 2013 Leigh Scott <[email protected]> - 1:325.15-1
- Update to 325.15 release
- redo kernel patch
* Sun Jul 21 2013 Leigh Scott <[email protected]> - 1:325.08-4
- redo kernel patch
* Tue Jul 16 2013 leigh scott <[email protected]> - 1:325.08-3
- add better patch for 3.10 and 3.11 git kernels
* Mon Jul 08 2013 leigh scott <[email protected]> - 1:325.08-2
- build for current
* Sun Jul 07 2013 leigh scott <[email protected]> - 1:325.08-1
- Update to 325.08
* Fri Jun 28 2013 Nicolas Chauvet <[email protected]> - 1:319.32-1
- Update to 319.32
- Add support for armv7hl
* Fri May 31 2013 leigh scott <[email protected]> - 1:319.23-3
- Patch for 3.10 kernel
* Thu May 30 2013 Nicolas Chauvet <[email protected]> - 1:319.23-2
- Build for akmods
* Thu May 23 2013 Leigh Scott <[email protected]> - 1:319.23-1
- Update to 319.23
* Sat May 11 2013 Leigh Scott <[email protected]> - 1:319.17-1
- Update to 319.17
* Wed May 01 2013 Nicolas Chauvet <[email protected]> - 1:319.12-1
- Update to 319.12
* Mon Apr 15 2013 Nicolas Chauvet <[email protected]> - 1:313.30-2
- Build for kernel akmods
* Thu Apr 04 2013 Nicolas Chauvet <[email protected]> - 1:313.30-1
- Update to 313.30
* Sun Feb 17 2013 Leigh Scott <[email protected]> - 1:313.18-2
- Fix with a better patch from gentoo
* Wed Jan 16 2013 Leigh Scott <[email protected]> - 1:313.18-1
- Update to 313.18 (adds xorg-server 1.14 ABI support)
- patch for 3.8rc kernel
* Fri Nov 16 2012 Leigh Scott <[email protected]> - 1:310.19-1
- rebuilt
* Tue Oct 16 2012 Leigh Scott <[email protected]> - 1:310.14-2
- add patch for 3.7rc kernel
* Tue Oct 16 2012 Leigh Scott <[email protected]> - 1:310.14-1
- Update to 310.14
* Mon Sep 24 2012 Leigh Scott <[email protected]> - 1:304.51-1
- Update to 304.51
* Sat Sep 15 2012 Leigh Scott <[email protected]> - 1:304.48-1
- Update to 304.48
* Wed Sep 05 2012 Nicolas Chauvet <[email protected]> - 1:304.43-1
- Update to 304.43
* Tue Aug 14 2012 Leigh Scott <[email protected]> - 1:304.37-1
- Update to 304.37 release
* Sat Aug 04 2012 Leigh Scott <[email protected]> - 1:304.32-2
- build again as the build system lost the first one
* Sat Aug 04 2012 Leigh Scott <[email protected]> - 1:304.32-1
- Update to 304.32
* Tue Jul 31 2012 Leigh Scott <[email protected]> - 1:304.30-2
- add some conditionals to the 3.6 kernel patch
* Tue Jul 31 2012 Leigh Scott <[email protected]> - 1:304.30-1
- Update to 304.30
* Fri Jul 13 2012 Leigh Scott <[email protected]> - 1:304.22-1
- Update to 304.22
* Sat Jun 16 2012 leigh scott <[email protected]> - 1:302.17-1
- Update to 302.17
* Tue May 22 2012 leigh scott <[email protected]> - 1:302.11-1
- Update to 302.11
* Tue May 22 2012 leigh scott <[email protected]> - 1:295.53-1
- Update to 295.53
* Sun May 13 2012 Nicolas Chauvet <[email protected]> - 1:295.49-1.4
- Rebuilt for release kernel
* Wed May 09 2012 Nicolas Chauvet <[email protected]> - 1:295.49-1.3
- rebuild for updated kernel
* Sun May 06 2012 Nicolas Chauvet <[email protected]> - 1:295.49-1.2
- rebuild for updated kernel
* Sat May 05 2012 Nicolas Chauvet <[email protected]> - 1:295.49-1.1
- rebuild for updated kernel
* Thu May 03 2012 leigh scott <[email protected]> - 1:295.49-1
- Update to 295.49
* Wed May 02 2012 Nicolas Chauvet <[email protected]> - 1:295.40-1.5
- rebuild for updated kernel
* Sat Apr 28 2012 Nicolas Chauvet <[email protected]> - 1:295.40-1.4
- rebuild for updated kernel
* Sun Apr 22 2012 Nicolas Chauvet <[email protected]> - 1:295.40-1.3
- rebuild for updated kernel
* Mon Apr 16 2012 Nicolas Chauvet <[email protected]> - 1:295.40-1.2
- rebuild for updated kernel
* Thu Apr 12 2012 Nicolas Chauvet <[email protected]> - 1:295.40-1.1
- rebuild for beta kernel
* Wed Apr 11 2012 leigh scott <[email protected]> - 1:295.40-1
- Update to 295.40
* Thu Mar 22 2012 leigh scott <[email protected]> - 1:295.33-1
- Update to 295.33
* Thu Mar 22 2012 leigh scott <[email protected]> - 1:295.20-2
- patched to build with 3.3.0 kernel
* Tue Feb 14 2012 Nicolas Chauvet <[email protected]> - 1:295.20-1
- Update to 295.20
* Tue Feb 07 2012 Nicolas Chauvet <[email protected]> - 1:295.17-1.1
- Rebuild for UsrMove
* Wed Feb 01 2012 Nicolas Chauvet <[email protected]> - 1:295.17-1
- Update to 295.17 (beta)
* Sat Dec 31 2011 Nicolas Chauvet <[email protected]> - 1:295.09-1
- Update to 295.09 (beta)
* Tue Nov 22 2011 Nicolas Chauvet <[email protected]> - 1:290.10-1
- Update to 290.10
* Wed Nov 09 2011 Nicolas Chauvet <[email protected]> - 1:290.06-1
- Update to 290.06 beta
* Wed Nov 02 2011 Nicolas Chauvet <[email protected]> - 1:285.05.09-1.4
- Rebuild for F-16 kernel
* Tue Nov 01 2011 Nicolas Chauvet <[email protected]> - 1:285.05.09-1.3
- Rebuild for F-16 kernel
* Fri Oct 28 2011 Nicolas Chauvet <[email protected]> - 1:285.05.09-1.2
- Rebuild for F-16 kernel
* Sun Oct 23 2011 Nicolas Chauvet <[email protected]> - 1:285.05.09-1.1
- Rebuild for F-16 kernel
* Tue Oct 04 2011 Nicolas Chauvet <[email protected]> - 1:285.05.09-1
- Update to 285.05.09
* Sat Aug 27 2011 Nicolas Chauvet <[email protected]> - 1:285.03-1
- Update to 285.03
- Remove kernel-xen filter
* Tue Aug 02 2011 Nicolas Chauvet <[email protected]> - 1:280.13-2
- Update to 280.13
* Sun Jul 24 2011 Nicolas Chauvet <[email protected]> - 1:280.11-1
- Update to 280.11
* Fri Jul 01 2011 Nicolas Chauvet <[email protected]> - 1:280.04-1
- Update to 280.04 (beta)
* Tue Jun 14 2011 Nicolas Chauvet <[email protected]> - 1:275.09.07-1
- Update to 275.09.07
* Wed Jun 08 2011 Nicolas Chauvet <[email protected]> - 1:270.41.19-1
- Update to 270.41.19
* Sat Apr 30 2011 Nicolas Chauvet <[email protected]> - 1:270.41.06-1
- Update to 270.41.06
* Tue Apr 12 2011 Nicolas Chauvet <[email protected]> - 1:270.41.03-1
- Update to 270.41.03
* Thu Mar 03 2011 Nicolas Chauvet <[email protected]> - 1:270.30-1
- Update to 270.30
* Tue Mar 01 2011 Nicolas Chauvet <[email protected]> - 1:270.29-1
- Update to 270.29
* Sun Jan 23 2011 Nicolas Chauvet <[email protected]> - 1:270.18-1
- Update to 270.18 beta
* Fri Jan 21 2011 Nicolas Chauvet <[email protected]> - 1:260.19.36-1
- Update to 260.19.36
* Tue Dec 14 2010 Nicolas Chauvet <[email protected]> - 1:260.19.29-1
- Update to 260.19.29
* Thu Nov 11 2010 Nicolas Chauvet <[email protected]> - 1:260.19.21-1
- Update to 260.19.21
* Thu Oct 14 2010 Nicolas Chauvet <[email protected]> - 1:260.19.12-1
- Update to 260.19.12
* Thu Oct 07 2010 Nicolas Chauvet <[email protected]> - 1:260.19.06-1
- Update to 260.19.06 beta
* Wed Sep 01 2010 Nicolas Chauvet <[email protected]> - 1:256.53-1
- Update to 256.53
* Thu Aug 05 2010 Nicolas Chauvet <[email protected]> - 1:256.44-1
- Update to 256.44
* Fri Jun 18 2010 Vallimar de Morieve <[email protected]> - 1:256.35-1
- update to 256.35
* Thu Jun 17 2010 Nicolas Chaubvet <[email protected]> - 1:195.36.31-1
- Update to 195.36.31
- Fix acpi_walk_namespace call with kernel 2.6.33 and later.
http://bugs.gentoo.org/show_bug.cgi?id=301318
* Sun Jun 13 2010 Nicolas Chauvet <[email protected]> - 1:195.36.24-2
- Backport IOMMU - http://www.nvnews.net/vbulletin/showthread.php?t=151791
* Sat Apr 24 2010 Nicolas Chauvet <[email protected]> - 1:195.36.24-1
- Update to 195.36.24
* Sat Mar 27 2010 Nicolas Chauvet <[email protected]> - 1:195.36.15-1
- Update to 195.36.15
* Fri Mar 12 2010 Nicolas Chauvet <[email protected]> - 1:190.53-3
- Bump Epoch - Fan problem in recent release
* Mon Mar 08 2010 Nicolas Chauvet <[email protected]> - 1:190.53-2
- Revert to 190.53 version
http://www.nvnews.net/vbulletin/announcement.php?f=14
* Sat Feb 27 2010 Nicolas Chauvet <[email protected]> - 195.36.08-1
- Update to 195.36.08
* Sat Feb 20 2010 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 190.53-1.6
- rebuild for new kernel
* Sat Feb 20 2010 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 190.53-1.5
- rebuild for new kernel
* Thu Feb 11 2010 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 190.53-1.4
- rebuild for new kernel
* Wed Feb 10 2010 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 190.53-1.3
- rebuild for new kernel
* Sat Jan 30 2010 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 190.53-1.2
- rebuild for new kernel
* Wed Jan 20 2010 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 190.53-1.1
- rebuild for new kernel
* Wed Dec 30 2009 Nicolas Chauvet <[email protected]> - 190.53-1
- Update to 190.53
- Add patch for VGA_ARB
* Sat Dec 26 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 190.42-1.9
- rebuild for new kernel
* Thu Dec 10 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 190.42-1.8
- rebuild for new kernel
* Sun Dec 06 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 190.42-1.7
- rebuild for new kernel
* Wed Nov 25 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 190.42-1.6
- rebuild for new kernel
* Sun Nov 22 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 190.42-1.5
- rebuild for new kernel, disable i586 builds
* Tue Nov 10 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 190.42-1.4
- rebuild for F12 release kernel
* Mon Nov 09 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 190.42-1.3
- rebuild for new kernels
* Fri Nov 06 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 190.42-1.2
- rebuild for new kernels
* Wed Nov 04 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 190.42-1.1
- rebuild for new kernels
* Sat Oct 31 2009 Nicolas Chauvet <[email protected]> - 190.42-1
- Update to 190.42