-
Notifications
You must be signed in to change notification settings - Fork 1
/
nvidia-390xx-kmod.spec
1862 lines (1371 loc) · 70.2 KB
/
nvidia-390xx-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}
%bcond_with kmod
%if %{with kmod}
%global buildforkernels current
%else
%global buildforkernels akmod
%endif
%endif
%global debug_package %{nil}
Name: nvidia-390xx-kmod
Epoch: 3
Version: 390.157
# Taken over by kmodtool
Release: 14%{?dist}
Summary: NVIDIA 390xx display driver kernel module
Group: System Environment/Kernel
License: Redistributable, no modification permitted
URL: http://www.nvidia.com/
Source11: nvidia-390xx-kmodtool-excludekernel-filterfile
# Patches partially sourced from
# Debian https://salsa.debian.org/nvidia-team/nvidia-graphics-drivers/-/tree/390xx/master/debian/module/debian/patches
# Arch https://aur.archlinux.org/packages/nvidia-390xx-dkms/
# https://gitlab.com/herecura/packages/nvidia-390xx-dkms/
# openSUSE https://build.opensuse.org/package/show/home:luc14n0:nvidia/nvidia-gfxG04
# kernel support
Patch12: do-div-cast.patch
Patch13: 0018-backport-nv_install_notifier-changes-from-418.30.patch
#Copied from Arch
Patch19: kernel-4.16+-memory-encryption.patch
Patch20: nvidia-390xx-kmod-0024-kernel-6.2-adaptation.patch
Patch21: nvidia-390xx-kmod-0025-kernel-6.3-adaptation.patch
Patch22: nvidia-390xx-kmod-0026-kernel-6.4-adaptation.patch
Patch23: nvidia-390xx-kmod-0027-kernel-6.5-garbage-collect-all-references-to-get_user.patch
Patch24: nvidia-390xx-kmod-0028-kernel-6.5-handle-get_user_pages-vmas-argument-remova.patch
Patch25: nvidia-390xx-kmod-0029-kernel-6.6-backport-drm_gem_prime_handle_to_fd-changes-from-470.patch
Patch26: nvidia-390xx-kmod-0030-kernel-6.6-refuse-to-load-legacy-module-if-IBT-is-enabled.patch
Patch27: nvidia-390xx-kmod-0031-kernel-6.8-adaptation.patch
Patch28: nvidia-390xx-kmod-0032-kernel-6.8-conftest_h-wait_on_bit_lock.patch
Patch29: nvidia-390xx-kmod-0033-kernel-5.6-ioremap_nocache_removed.patch
Patch100: nvidia-390xx-kmod-0034-kernel-5.9-dma_is_direct-removed.patch
Patch101: nvidia-390xx-kmod-0035-gcc14-no-previous-prototype-for-nv_load_dma_map_scatterlist.patch
Patch102: nvidia-390xx-kmod-0036-undef-NV_ACPI_BUS_GET_DEVICE_PRESENT-in-conftest_sh.patch
Patch103: nvidia-390xx-kmod-0037-add-RPM_CFLAGS-setup-in-conftest_sh.patch
Patch104: nvidia-390xx-kmod-0038-workaround-NV_EFI_ENABLED-macro.patch
Patch105: nvidia-390xx-kmod-0039-incompatible-function-type-nv_gpu_numa_c.patch
Patch106: nvidia-390xx-kmod-0040-fix-fallthrough-warning-nv_mmap_c.patch
Patch107: nvidia-390xx-kmod-0041-no-previous-prototype-for-exercise_error_forwarding_va.patch
Patch108: nvidia-390xx-kmod-0042-undef-NV_DO_GETTIMEOFDAY_PRESENT-in-conftest_sh.patch
Patch109: nvidia-390xx-kmod-0043-undef-NV_SET_MEMORY_ARRAY_UC_PRESENT-in-conftest_sh.patch
Patch110: nvidia-390xx-kmod-0044-undef-NV_ACQUIRE_CONSOLE_SEM_PRESENT-in-conftest_sh.patch
Patch111: nvidia-390xx-kmod-0045-undef-NV_UNSAFE_FOLLOW_PFN_PRESENT-in-conftest_sh.patch
Patch112: nvidia-390xx-kmod-0046-undef-NV_JIFFIES_TO_TIMESPEC_PRESENT-in-conftest_sh.patch
Patch113: nvidia-390xx-kmod-0047-undef-NV_PNV_NPU2_INIT_CONTEXT_PRESENT-in-conftest_sh.patch
Patch114: nvidia-390xx-kmod-0048-fix-atomic64-include-in-conftest_sh.patch
Patch115: nvidia-390xx-kmod-0049-fix-dma_buf_map-renamed-to-iosys_map.patch
Patch116: nvidia-390xx-kmod-0050-no-previous-prototype-for-nv_pci_register_driver.patch
Patch117: nvidia-390xx-kmod-0051-no-previous-prototype-for-nvidia_init_exit_module-in-nv_c.patch
Patch118: nvidia-390xx-kmod-0052-no-previous-prototype-for-on_nv_assert.patch
Patch119: nvidia-390xx-kmod-0053-no-previous-prototype-for-_raw_q_flush.patch
Patch120: nvidia-390xx-kmod-0054-no-previous-prototype-for-nv-ibmnpu-functions.patch
Patch121: nvidia-390xx-kmod-0055-no-previous-prototype-for-uvm_tools_init_exit.patch
Patch122: nvidia-390xx-kmod-0056-no-previous-prototype-for-uvm8_test_set_prefetch_filtering.patch
Patch123: nvidia-390xx-kmod-0057-no-previous-prototype-in-uvm8_va_space_c.patch
Patch124: nvidia-390xx-kmod-0058-no-previous-prototype-for-uvm_channel_manager_print_pending_pushes.patch
Patch125: nvidia-390xx-kmod-0059-no-previous-prototype-in-uvm8_va_range_c.patch
Patch126: nvidia-390xx-kmod-0060-no-previous-prototype-in-uvm8_range_group_c.patch
Patch127: nvidia-390xx-kmod-0061-no-previous-prototype-in-uvm8_gpu_replayable_faults_c.patch
Patch128: nvidia-390xx-kmod-0062-no-previous-prototype-for-block_map.patch
Patch129: nvidia-390xx-kmod-0063-no-previous-prototype-for-try_get_ptes.patch
Patch130: nvidia-390xx-kmod-0064-no-previous-prototype-in-uvm8_pushbuffer_c.patch
Patch131: nvidia-390xx-kmod-0065-no-previous-prototype-in-uvm8_kepler_mmu_c.patch
Patch132: nvidia-390xx-kmod-0066-no-previous-prototype-in-uvm8_pascal_mmu_c.patch
Patch133: nvidia-390xx-kmod-0067-no-previous-prototype-for-parse_fault_entry_common.patch
Patch134: nvidia-390xx-kmod-0068-no-previous-prototype-in-uvm8_volta_access_counter_buffer_c.patch
Patch135: nvidia-390xx-kmod-0069-no-previous-prototype-for-va_block_set_read_duplication_locked.patch
Patch136: nvidia-390xx-kmod-0070-no-previous-prototype-for-map_rm_pt_range.patch
Patch137: nvidia-390xx-kmod-0071-no-previous-prototype-in-uvm8_user_channel_c.patch
Patch138: nvidia-390xx-kmod-0072-no-previous-prototype-in-uvm8_perf_thrashing_c.patch
Patch139: nvidia-390xx-kmod-0073-no-previous-prototype-in-uvm8_perf_prefetch_c.patch
Patch140: nvidia-390xx-kmod-0074-no-previous-prototype-for-test_tracking.patch
Patch141: nvidia-390xx-kmod-0075-no-previous-prototype-in-uvm8_page_tree_test_c.patch
Patch142: nvidia-390xx-kmod-0076-no-previous-prototype-in-uvm8_tracker_test_c.patch
Patch143: nvidia-390xx-kmod-0077-no-previous-prototype-in-uvm8_push_test_c.patch
Patch144: nvidia-390xx-kmod-0078-no-previous-prototype-in-uvm8_channel_test_c.patch
Patch145: nvidia-390xx-kmod-0079-no-previous-prototype-in-nvidia-modeset-linux_c.patch
Patch146: nvidia-390xx-kmod-0080-fix-enum-implicit-conversion-from-uvm_fault_type_t-to-uvm_fault_access_type_t-in-uvm8_va_range_c.patch
Patch147: nvidia-390xx-kmod-0081-fix-enum-implicit-conversion-from-uvm_fault_access_type_t-to-uvm_fault_type_t-in-uvm8_gpu_replayable_faults_c.patch
Patch148: nvidia-390xx-kmod-0082-fix-enum-implicit-conversion-from-uvm_fault_access_type_t-to-uvm_fault_type_t-in-uvm8_gpu_non_replayable_faults_c.patch
Patch149: nvidia-390xx-kmod-0083-fix-enum-implicit-conversion-from-uvm_fault_access_type_t-to-uvm_fault_type_t-in-uvm8_va_block_c.patch
Patch150: nvidia-390xx-kmod-0084-no-previous-prototype-in-nvlink_linux_c.patch
Patch151: nvidia-390xx-kmod-0085-undef-NV_DRM_GEM_OBJECT_PUT_UNLOCK_PRESENT-in-conftest_sh.patch
Patch152: nvidia-390xx-kmod-0086-undef-NV_DRM_CONNECTOR_FUNCS_HAVE_MODE_IN_NAME-in-conftest_sh.patch
Patch153: nvidia-390xx-kmod-0087-undef-NV_DRM_REINIT_PRIMARY_MODE_GROUP_PRESENT-in-conftest_sh.patch
Patch154: nvidia-390xx-kmod-0088-undef-NV_DRM_ATOMIC_HELPER_CONNECTOR_DPMS_PRESENT-in-conftest_sh.patch
Patch155: nvidia-390xx-kmod-0089-kernel-6.10-removed-follow_pfn-function.patch
Patch156: nvidia-390xx-kmod-0090-fix_warning_suggested_braces_around_empty_body_in_if.patch
Patch157: nvidia-390xx-kmod-0091-fix_warning_old_style_declaration_.patch
Patch158: nvidia-390xx-kmod-0092-fix_index_0_is_out_of_range_kernel_6.8_traces.patch
Patch159: nvidia-390xx-kmod-0093-kernel-6.12-adaptation.patch
# build system updates
Patch30: use-kbuild-compiler.patch
Patch31: conftest-verbose.patch
Patch32: cc_version_check-gcc5.patch
Patch33: bashisms.patch
# armhf support
Patch40: include-swiotlb-header-on-arm.patch
Patch41: ignore_xen_on_arm.patch
Patch42: arm-outer-sync.patch
Patch43: nvidia-drm-arm-cflags.patch
# needed for plague to make sure it builds for i586 and i686
ExclusiveArch: i686 x86_64 armv7hl
# get the needed BuildRequires (in parts depending on what we build for)
%global AkmodsBuildRequires %{_bindir}/kmodtool, xorg-x11-drv-nvidia-390xx-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 --obsolete-version "%{?epoch}:%{version}" %{?buildforkernels:--%{buildforkernels}} %{?kernels:--for-kernels "%{?kernels}"} 2>/dev/null) }
%description
The nvidia 390xx %{version} display driver kernel module for kernel %{kversion}.
Important warning: this module has reached the end of support from NVidia.
It is therefore exposed to Common Vulnerabilities and Exposures (CVE).
More information on the concerned CVE could be obtained here:
https://cve.mitre.org/cgi-bin/cvekey.cgi?keyword=NVIDIA+390.157+linux
https://www.nvidia.com/en-us/security/
%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} %{?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
# Apply patches
%patch -P 12 -p1 -b 12 -d kernel
%patch -P 13 -p1 -b 13 -d kernel
%patch -P 19 -p1 -b 19
%patch -P 20 -p1 -b 20
%patch -P 21 -p1 -b 21
%patch -P 22 -p1 -b 22
%patch -P 23 -p1 -b 23 -d kernel
%patch -P 24 -p1 -b 24 -d kernel
%patch -P 25 -p1 -b 25 -d kernel
%patch -P 26 -p1 -b 26 -d kernel
%patch -P 27 -p1 -b 27 -d kernel
%patch -P 28 -p1 -b 28 -d kernel
%patch -P 29 -p1 -b 29 -d kernel
%patch -P 100 -p1 -b 100 -d kernel
%patch -P 101 -p1 -b 101 -d kernel
%patch -P 102 -p1 -b 102 -d kernel
%patch -P 103 -p1 -b 103 -d kernel
%patch -P 104 -p1 -b 104 -d kernel
%patch -P 105 -p1 -b 105 -d kernel
%patch -P 106 -p1 -b 106 -d kernel
%patch -P 107 -p1 -b 107 -d kernel
%patch -P 108 -p1 -b 108 -d kernel
%patch -P 109 -p1 -b 109 -d kernel
%patch -P 110 -p1 -b 110 -d kernel
%patch -P 111 -p1 -b 111 -d kernel
%patch -P 112 -p1 -b 112 -d kernel
%patch -P 113 -p1 -b 113 -d kernel
%patch -P 114 -p1 -b 114 -d kernel
%patch -P 115 -p1 -b 115 -d kernel
%patch -P 116 -p1 -b 116 -d kernel
%patch -P 117 -p1 -b 117 -d kernel
%patch -P 118 -p1 -b 118 -d kernel
%patch -P 119 -p1 -b 119 -d kernel
%patch -P 120 -p1 -b 120 -d kernel
%patch -P 121 -p1 -b 121 -d kernel
%patch -P 122 -p1 -b 122 -d kernel
%patch -P 123 -p1 -b 123 -d kernel
%patch -P 124 -p1 -b 124 -d kernel
%patch -P 125 -p1 -b 125 -d kernel
%patch -P 126 -p1 -b 126 -d kernel
%patch -P 127 -p1 -b 127 -d kernel
%patch -P 128 -p1 -b 128 -d kernel
%patch -P 129 -p1 -b 129 -d kernel
%patch -P 130 -p1 -b 130 -d kernel
%patch -P 131 -p1 -b 131 -d kernel
%patch -P 132 -p1 -b 132 -d kernel
%patch -P 133 -p1 -b 133 -d kernel
%patch -P 134 -p1 -b 134 -d kernel
%patch -P 135 -p1 -b 135 -d kernel
%patch -P 136 -p1 -b 136 -d kernel
%patch -P 137 -p1 -b 137 -d kernel
%patch -P 138 -p1 -b 138 -d kernel
%patch -P 139 -p1 -b 139 -d kernel
%patch -P 140 -p1 -b 140 -d kernel
%patch -P 141 -p1 -b 141 -d kernel
%patch -P 142 -p1 -b 142 -d kernel
%patch -P 143 -p1 -b 143 -d kernel
%patch -P 144 -p1 -b 144 -d kernel
%patch -P 145 -p1 -b 145 -d kernel
%patch -P 146 -p1 -b 146 -d kernel
%patch -P 147 -p1 -b 147 -d kernel
%patch -P 148 -p1 -b 148 -d kernel
%patch -P 149 -p1 -b 149 -d kernel
%patch -P 150 -p1 -b 150 -d kernel
%patch -P 151 -p1 -b 151 -d kernel
%patch -P 152 -p1 -b 152 -d kernel
%patch -P 153 -p1 -b 153 -d kernel
%patch -P 154 -p1 -b 154 -d kernel
%patch -P 30 -p1 -b 30 -d kernel
%patch -P 31 -p1 -b 31 -d kernel
%patch -P 32 -p1 -b 32 -d kernel
%patch -P 33 -p1 -b 33 -d kernel
%patch -P 155 -p1 -b 155
%patch -P 156 -p1 -b 156
%patch -P 157 -p1 -b 157
%patch -P 158 -p1 -b 158
%patch -P 159 -p1 -b 159
%ifarch armv7hl
%patch -P 40 -p1 -b 40 -d kernel
%patch -P 41 -p1 -b 41 -d kernel
%patch -P 42 -p1 -b 42 -d kernel
%patch -P 43 -p1 -b 43 -d kernel
%endif
for kernel_version in %{?kernel_versions} ; do
cp -a kernel _kmod_build_${kernel_version%%___*}
done
%build
for kernel_version in %{?kernel_versions}; do
pushd _kmod_build_${kernel_version%%___*}/
make V=1 %{?_smp_mflags} \
RPM_CFLAGS="%{optflags}" \
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
* Mon Dec 16 2024 Nicolas Viéville <[email protected]> - 3:390.157-14
- Fix patch for kernel >= 6.12 - needs DRM kernel mode setting enabled via
nvidia-drm.modeset=1
* Sat Dec 14 2024 Nicolas Viéville <[email protected]> - 3:390.157-13
- Add patch for kernel >= 6.12
* Sat Oct 05 2024 Nicolas Viéville <[email protected]> - 3:390.157-12
- Fix for 'index 0 is out of range for type 'uvm_gpu_chunk_t *[*]' and
uvm_page_directory_t *[*]' traces from kernel 6.8.x - RFBZ#7069
Thanks to Bruce Jerrick
* Mon Aug 19 2024 Nicolas Viéville <[email protected]> - 3:390.157-11
- Add patch for kernel >= 6.10 - RFBZ#7022
- Fix warning: suggest braces around empty body in an ‘if’ statement
- Fix warning: old style declaration
* Sat Aug 03 2024 RPM Fusion Release Engineering <[email protected]> - 3:390.157-10
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
* Fri Apr 19 2024 Nicolas Viéville <[email protected]> - 3:390.157-9
- Try to fix errors and warnings for Fedora 40 and gcc14 - RFBZ#6905
Can't fix "Please avoid flushing system-wide workqueues" warning as
destroy_workqueue and alloc_workqueue functions are GPL only symbols
- Fixed previous patches - Hunk offsets
- SPEC file clean-up
- Added CVE warning to description in SPEC file
- Important warning: this module has reached the end of support from NVidia
It is therefore exposed to Common Vulnerabilities and Exposures (CVE).
More information on the concerned CVE could be obtained here:
https://cve.mitre.org/cgi-bin/cvekey.cgi?keyword=NVIDIA+390.157+linux
https://www.nvidia.com/en-us/security/
* Sat Apr 06 2024 Nicolas Viéville <[email protected]> - 3:390.157-8
- Add patch for kernel >= 6.8
* Sun Feb 04 2024 RPM Fusion Release Engineering <[email protected]> - 3:390.157-7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
* Sat Dec 02 2023 Nicolas Viéville <[email protected]> - 3:390.157-6
- Renamed kernel 6.5 patches
- Add patch for kernel >= 6.6 - RFBZ#6802
- Add patch for disabling module loading when Indirect Branch Tracking is active
* Tue Sep 12 2023 Leigh Scott <[email protected]> - 3:390.157-5
- Add patch for kernel >= 6.5
* Thu Aug 03 2023 RPM Fusion Release Engineering <[email protected]> - 3:390.157-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
* Thu Jun 01 2023 Nicolas Viéville <[email protected]> - 3:390.157-3
- Fix patch for kernel >= 6.2
- Add patch for kernel >= 6.3
- Add patch for kernel >= 6.4
- SPEC file - Fix patchN macro is deprecated
* Wed Apr 12 2023 Nicolas Viéville <[email protected]> - 3:390.157-2
- Add patch for kernel >= 6.2
* Sat Jan 07 2023 Henrik Nordstrom <[email protected]> - 3:390.157-1
- Update to 390.157
* Thu Nov 03 2022 Leigh Scott <[email protected]> - 3:390.154-3
- Patch for 6.0 kernel
- Clean up old patches
* Sun Aug 28 2022 Leigh Scott <[email protected]> - 3:390.154-2
- Restore kmod for el build
* Sun Aug 28 2022 Leigh Scott <[email protected]> - 3:390.154-1
- Update to 390.154 release
* Mon Aug 08 2022 RPM Fusion Release Engineering <[email protected]> - 3:390.151-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild and ffmpeg
5.1
* Sat Jun 18 2022 Henrik Nordstrom <[email protected]> - 390.151-1
- Update to 390.151
* Wed Apr 20 2022 Sérgio Basto <[email protected]> - 3:390.147-3
- Try to fix linux-5.17 based on patch provided on https://bugzilla.rpmfusion.org/6263
* Thu Feb 10 2022 RPM Fusion Release Engineering <[email protected]> - 3:390.147-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
* Sat Jan 29 2022 Henrik Nordstrom <[email protected]> - 390.147-1
- Update to 390.147
* Wed Sep 22 2021 Henrik Nordstrom <[email protected]> - 390.144-3
- Kernel 5.14 patch taken from openSUSE
* Wed Aug 04 2021 RPM Fusion Release Engineering <[email protected]> - 3:390.144-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
* Fri Jul 23 2021 Henrik Nordstrom <[email protected]> - 390.144-1
- Update to 390.144
* Sun Jun 27 2021 Henrik Nordstrom <[email protected]> - 390.143-2
- Kernel 5.12 patch taken from openSUSE via Arch repo
- Kernel 5.13 patch taken from Herecura Arch repo
* Tue Apr 20 2021 Henrik Nordstrom <[email protected]> - 390.143-1
- Update to 390.143
* Mon Mar 22 2021 Henrik Nordstrom <[email protected]> - 390.141-6
- Update patches from Debian.
* Mon Mar 22 2021 Henrik Nordstrom <[email protected]> - 3:390.141-5
- Patch for kernel 5.11 (Bug #5951)
* Thu Feb 04 2021 RPM Fusion Release Engineering <[email protected]> - 3:390.141-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
* Fri Jan 22 2021 Leigh Scott <[email protected]> - 3:390.141-3
- Fix (rfbz#5901)
* Sat Jan 16 2021 Henrik Nordstrom <[email protected]> - 390.141-2
- Re-enable nvidia-uvm. The GPL licensing issue seems to have been solved in 390.141.
* Thu Jan 07 2021 Henrik Nordstrom <[email protected]> - 3:390.141-1
- Update to 390.141
* Mon Dec 14 2020 Henrik Nordstrom <[email protected]> - 3:390.138-4
- Import patches from Debian, including kernel 5.9 support
* Thu Aug 27 2020 Leigh Scott <[email protected]> - 3:390.138-3
- Patch for kernel 5.8
- Exclude nvidia-uvm due to GPL-only symbol 'radix_tree_preloads'
* Wed Aug 19 2020 RPM Fusion Release Engineering <[email protected]> - 3:390.138-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Fri Jun 26 2020 Leigh Scott <[email protected]> - 3:390.138-1
- Update to 390.138 release
* Sun May 10 2020 Henrik Nordstrom <[email protected]> - 3:390.132-7
- Actually apply patch for kernel 5.7
* Sat May 09 2020 Henrik Nordstrom <[email protected]> - 3:390.132-6
- Patch for kernel 5.7
* Sat May 09 2020 Henrik Nordstrom <[email protected]> - 3:390.132-5
- Update kernel-5.6 patch
* Tue Mar 10 2020 Nicolas Chauvet <[email protected]> - 3:390.132-4.1
- Conditionlize arched patches
* Tue Mar 10 2020 Nicolas Chauvet <[email protected]> - 3:390.132-4
- Drop armv7hl build
* Mon Mar 09 2020 Henrik Nordstrom <[email protected]> - 3:390.132-3
- Patches for kernel 5.5 and 5.6
* Wed Feb 05 2020 RPM Fusion Release Engineering <[email protected]> - 3:390.132-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
* Fri Nov 08 2019 Leigh Scott <[email protected]> - 3:390.132-1
- Update to 390.132 release
* Tue Sep 03 2019 Leigh Scott <[email protected]> - 3:390.129-3
- rebuilt
* Tue Sep 03 2019 Leigh Scott <[email protected]> - 3:390.129-2
- Rebuild for new el7 kernel
* Tue Aug 06 2019 Leigh Scott <[email protected]> - 3:390.129-1
- Update to 390.129 release
* Sun Jun 16 2019 Leigh Scott <[email protected]> - 3:390.116-4
- Switch to Ubuntu buildfix for 5.2 kernel
* Fri May 03 2019 Leigh Scott <[email protected]> - 3:390.116-3
- Patch for 5.1rc kernel
* Tue Mar 05 2019 RPM Fusion Release Engineering <[email protected]> - 3:390.116-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
* Fri Feb 22 2019 Leigh Scott <[email protected]> - 3:390.116-1
- Update to 390.116 release
* Thu Jan 24 2019 Leigh Scott <[email protected]> - 3:390.87-5
- Clean up build fix for 4.20 kernel (untested)
* Mon Dec 24 2018 Leigh Scott <[email protected]> - 3:390.87-4
- Build fix for 4.20 kernel (untested)
* Thu Oct 25 2018 Nicolas Chauvet <[email protected]> - 3:390.87-3
- Drop obsoletes nvidia-kmod
* Wed Oct 10 2018 Leigh Scott <[email protected]> - 3:390.87-2
- Patch for 4.19 kernel
* Sun Sep 23 2018 Richard Shaw <[email protected]> - 3:390.87-1
- Update to 390.87.
* Tue Jun 05 2018 Nicolas Chauvet <[email protected]> - 3:390.67-1
- Update to 390.67
- Fork 390xx
* Wed May 16 2018 Leigh Scott <[email protected]> - 3:390.59-1
- Update to 390.59 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