-
Notifications
You must be signed in to change notification settings - Fork 2
/
VirtualBox-kmod.spec
1003 lines (694 loc) · 33.1 KB
/
VirtualBox-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
# kmod SIG on Centos 9 provides virtualbox-guest-addition
# https://rpmfusion.org/Howto/VirtualBox#Install_virtual-guest-additions_on_Centos_9_.28stream.29
%if 0%{?fedora} || 0%{?rhel} >= 9
%bcond_with vboxvideo
%bcond_with vboxguest
%else
%bcond_without vboxvideo
%bcond_without vboxguest
%endif
# Allow only root to access vboxdrv regardless of the file mode
# use only for debugging!
%bcond_without hardening
# 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}
# In prerelease builds (such as betas), this package has the same
# major version number, while the kernel module abi is not guaranteed
# to be stable. This is so that we force the module update in sync with
# userspace.
#global prerel RC1
%global prereltag %{?prerel:_%(awk 'BEGIN {print toupper("%{prerel}")}')}
# With commit ad2a3ad54f4ecd07e40a6de590a8b16de5ac34df on Sep 23 2012
# vboxreltag was made to guarantee one kmodsrc with a minimum releaseversion,
# but most of the times we may patch the kmodsrc here
# And we don't need control the releaseversion (if is 6.1.40-1 or 6.1.40-2)
# on other hand, fix the version of VirtualBox using = instead >= may be useful
# because akomd will require the exact version that it is prepared for
# https://bugzilla.rpmfusion.org/show_bug.cgi?id=6519
Name: VirtualBox-kmod
Version: 7.1.4
Release: 1%{?dist}
#Release: 1%%{?prerel:.%%{prerel}}%%{?dist}
Summary: Kernel module for VirtualBox
License: GPLv2 or CDDL
URL: http://www.virtualbox.org/wiki/VirtualBox
# This filters out the XEN kernel, since we don't run on XEN
Source1: excludekernel-filter.txt
%global AkmodsBuildRequires %{_bindir}/kmodtool VirtualBox-kmodsrc = %{version} xz time elfutils-libelf-devel gcc
BuildRequires: %{AkmodsBuildRequires}
ExclusiveArch: x86_64
%{!?kernels:BuildRequires: buildsys-build-rpmfusion-kerneldevpkgs-%{?buildforkernels:%{buildforkernels}}%{!?buildforkernels:current}-%{_target_cpu} }
# kmodtool does its magic here
%{expand:%(kmodtool --target %{_target_cpu} --repo rpmfusion --kmodname %{name} %{?buildforkernels:--%{buildforkernels}} %{?kernels:--for-kernels "%{?kernels}"} --filterfile %{SOURCE1} 2>/dev/null) }
%description
Kernel module for VirtualBox
%prep
%setup -T -c
tar --use-compress-program xz -xf %{_datadir}/%{name}-%{version}/%{name}-%{version}.tar.xz
pushd %{name}-%{version}
#patch -P1 -p1
popd
# 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} %{?buildforkernels:--%{buildforkernels}} %{?kernels:--for-kernels "%{?kernels}"} --filterfile %{SOURCE1} 2>/dev/null
# This is hardcoded in Makefiles
# who will find out why %%without hardening does not work?
%{!?with_hardening:find %{name}-%{version} -name Makefile |xargs sed 's/-DVBOX_WITH_HARDENING//' -i}
for kernel_version in %{?kernel_versions} ; do
cp -al %{name}-%{version} _kmod_build_${kernel_version%%___*}
done
%build
for kernel_version in %{?kernel_versions}; do
for module in vboxdrv %{?with_vboxguest:vboxguest}; do
make VBOX_USE_INSERT_PAGE=1 %{?_smp_mflags} KERN_DIR="${kernel_version##*___}" -C "${kernel_version##*___}" M="${PWD}/_kmod_build_${kernel_version%%___*}/${module}" modules
done
%if %{with vboxguest}
export KBUILD_EXTRA_SYMBOLS=${PWD}/kmod_build_${kernel_version%%___*}/vboxguest/Module.symvers
# copy vboxguest (for guest) module symbols which are used by vboxsf km on building modules, stage 2.
cp _kmod_build_${kernel_version%%___*}/{vboxguest/Module.symvers,vboxsf}
make %{?_smp_mflags} KERN_DIR="${kernel_version##*___}" -C "${kernel_version##*___}" M="${PWD}/_kmod_build_${kernel_version%%___*}/vboxsf" modules
%endif
for module in vbox{netadp,netflt}; do
export KBUILD_EXTRA_SYMBOLS=${PWD}/_kmod_build_${kernel_version%%___*}/vboxdrv/Module.symvers
make VBOX_USE_INSERT_PAGE=1 %{?_smp_mflags} KERN_DIR="${kernel_version##*___}" -C "${kernel_version##*___}" M="${PWD}/_kmod_build_${kernel_version%%___*}/${module}" modules
done
%if %{with vboxvideo}
export KBUILD_EXTRA_SYMBOLS=${PWD}/_kmod_build_${kernel_version%%___*}/vboxguest/Module.symvers
make VBOX_USE_INSERT_PAGE=1 %{?_smp_mflags} KERN_DIR="${kernel_version##*___}" -C "${kernel_version##*___}" M="${PWD}/_kmod_build_${kernel_version%%___*}/vboxvideo" modules
%endif
done
%install
for kernel_version in %{?kernel_versions}; do
install -d %{buildroot}%{kmodinstdir_prefix}/${kernel_version%%___*}/%{kmodinstdir_postfix}
install _kmod_build_${kernel_version%%___*}/*/*.ko %{buildroot}%{kmodinstdir_prefix}/${kernel_version%%___*}/%{kmodinstdir_postfix}
done
%{?akmod_install}
%check
# If we built modules, check if it was everything the kmodsrc package provided
MODS=$(find $(ls -d %{buildroot}%{_prefix}/lib/modules/* |head -n1) -name '*.ko' -exec basename '{}' \; |wc -l)
%if ! %{with vboxvideo}
rm -rf %{name}-%{version}/vboxvideo
%endif
%if ! %{with vboxguest}
rm -rf %{name}-%{version}/vboxguest
rm -rf %{name}-%{version}/vboxsf
%endif
DIRS=$(ls %{name}-%{version} |wc -l)
[ $MODS = $DIRS ] || [ $MODS = 0 ]
%changelog
* Thu Oct 17 2024 Sérgio Basto <[email protected]> - 7.1.4-1
- Update to 7.1.4
* Fri Sep 27 2024 Sérgio Basto <[email protected]> - 7.1.2-1
- Update to 7.1.2
* Mon Sep 16 2024 Sérgio Basto <[email protected]> - 7.1.0-1
- Update to 7.1.0
* Thu Aug 01 2024 RPM Fusion Release Engineering <[email protected]> - 7.0.20-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
* Tue Jul 16 2024 Sérgio Basto <[email protected]> - 7.0.20-1
- Update to 7.0.20
* Wed Jun 26 2024 Sérgio Basto <[email protected]> - 7.0.18-2
- Fixes for Centos 9.4
* Sat May 04 2024 Sérgio Basto <[email protected]> - 7.0.18-1
- Update to 7.0.18
* Wed Apr 17 2024 Sérgio Basto <[email protected]> - 7.0.16-1
- Update to 7.0.16
* Sat Mar 16 2024 Sérgio Basto <[email protected]> - 7.0.14-4
- Fix build with Linux 6.8 (patch from openSUSE:Factory/virtualbox)
* Sat Feb 03 2024 RPM Fusion Release Engineering <[email protected]> - 7.0.14-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
* Fri Jan 19 2024 Sérgio Basto <[email protected]> - 7.0.14-2
- kernel-6.5.patch removed, fixed upstream, according OpenSuse package.
* Fri Jan 19 2024 Sérgio Basto <[email protected]> - 7.0.14-1
- Update to 7.0.14
* Fri Nov 24 2023 Sérgio Basto <[email protected]> - 7.0.12-1.1
- Rebuilt RHEL 8.9
* Wed Oct 18 2023 Sérgio Basto <[email protected]> - 7.0.12-1
- Update to 7.0.12
* Sun Sep 10 2023 Sérgio Basto <[email protected]> - 7.0.10-3
- Fixes for kernel-6.5 copied from OpenSuse
* Sat Aug 12 2023 Sérgio Basto <[email protected]> - 7.0.10-2
- Add fix for kernel-6.4.10
* Wed Jul 19 2023 Sérgio Basto <[email protected]> - 7.0.10-1
- Update to 7.0.10
* Tue Apr 18 2023 Sérgio Basto <[email protected]> - 7.0.8-1
- Update to 7.0.8
* Thu Apr 13 2023 Sérgio Basto <[email protected]> - 7.0.6-4
- add opensuse patches fix_7.0.6_locking_problems.patch and
fixes_for_kernel_6.3.patch
* Fri Mar 31 2023 Sérgio Basto <[email protected]> - 7.0.6-3
- Add support to Centos Stream 8 (8.8)
* Fri Mar 31 2023 Sérgio Basto <[email protected]> - 7.0.6-3
- apply offical patches for el 8 and 9 but we don't use at 9
* Wed Jan 18 2023 Sérgio Basto <[email protected]> - 7.0.6-1
- Update to 7.0.6
* Sat Nov 19 2022 Sérgio Basto <[email protected]> - 7.0.4-1
- Update to 7.0.4
- Fix for rfbz #6519
* Tue Nov 01 2022 Sérgio Basto <[email protected]> - 7.0.2-1
- Update to 7.0.2
* Thu Oct 13 2022 Sérgio Basto <[email protected]> - 6.1.40-1
- Update to 6.1.40
* Thu Sep 01 2022 Sérgio Basto <[email protected]> - 6.1.38-1
- Update to 6.1.38
* Sat Aug 06 2022 RPM Fusion Release Engineering <[email protected]> - 6.1.36-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild and ffmpeg
5.1
* Mon Jul 25 2022 Sérgio Basto <[email protected]> - 6.1.36-1
- Update to 6.1.36
* Sun Jun 19 2022 Sérgio Basto <[email protected]> - 6.1.34-5
- Add cs9.2.patch
* Sat Jun 18 2022 Sérgio Basto <[email protected]> - 6.1.34-4
- Add cs9.patch rfbz#(6328)
* Thu Jun 02 2022 Sérgio Basto <[email protected]> - 6.1.34-3
- we have updates in VirtualBox-kmodsrc
* Thu Apr 21 2022 Sérgio Basto <[email protected]> - 6.1.34-2
- add kernel 5.18 patch
* Wed Apr 20 2022 Sérgio Basto <[email protected]> - 6.1.34-1
- Update to 6.1.34
- Enable binary kmods on el repos
* Wed Feb 09 2022 RPM Fusion Release Engineering <[email protected]> - 6.1.32-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
* Tue Jan 18 2022 Sérgio Basto <[email protected]> - 6.1.32-1
- Update to 6.1.32
* Mon Nov 22 2021 Sérgio Basto <[email protected]> - 6.1.30-1
- Update to 6.1.30
* Fri Nov 19 2021 Nicolas Chauvet <[email protected]> - 6.1.28-2
- Rebuilt
* Wed Oct 20 2021 Sérgio Basto <[email protected]> - 6.1.28-1
- Update to 6.1.28
* Tue Oct 12 2021 Sérgio Basto <[email protected]> - 6.1.26-3
- Add fixes for EL8.5 or Centos Stream kernels
* Mon Sep 13 2021 Sérgio Basto <[email protected]> - 6.1.26-2
- Add fixes-for-5.15
* Mon Aug 09 2021 Sérgio Basto <[email protected]> - 6.1.26-1
- Update to 6.1.26
* Mon Aug 02 2021 RPM Fusion Release Engineering <[email protected]> - 6.1.22-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
* Tue Jun 08 2021 Nicolas Chauvet <[email protected]> - 6.1.22-2
- rebuilt
* Fri Apr 30 2021 Sérgio Basto <[email protected]> - 6.1.22-1
- Update to 6.1.22
* Thu Apr 22 2021 Sérgio Basto <[email protected]> - 6.1.20-1
- Update to 6.1.20
* Tue Feb 02 2021 RPM Fusion Release Engineering <[email protected]> - 6.1.18-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
* Thu Jan 21 2021 Sérgio Basto <[email protected]> - 6.1.18-1
- Update to 6.1.18
* Sun Dec 13 2020 Sérgio Basto <[email protected]> - 6.1.16-3
- Add fixes for Centos 8.4
* Sun Dec 06 2020 Sérgio Basto <[email protected]>
- We don't need build-sysbuild package when we just build the akmod
* Fri Dec 04 2020 Sérgio Basto <[email protected]> - 6.1.16-2
- Add fixes for kernel 5.10
* Wed Oct 21 2020 Sérgio Basto <[email protected]> - 6.1.16-1
- Update to 6.1.16
* Mon Sep 07 2020 Sérgio Basto <[email protected]> - 6.1.14-1
- Update to 6.1.14
* Mon Aug 17 2020 RPM Fusion Release Engineering <[email protected]> - 6.1.12-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Sun Jul 26 2020 Sérgio Basto <[email protected]> - 6.1.12-1
- Update to 6.1.12
* Mon Jun 08 2020 Sérgio Basto <[email protected]> - 6.1.10-1
- Update to 6.1.10
* Wed May 27 2020 Sérgio Basto <[email protected]>
- Remove kernel-5.patch
* Wed May 20 2020 Sérgio Basto <[email protected]> - 6.1.8-2
- vboxsf need symbols of vboxguest on building modules, stage 2.
* Sat May 16 2020 Sérgio Basto <[email protected]> - 6.1.8-1
- Update to 6.1.8
* Wed Apr 15 2020 Sérgio Basto <[email protected]> - 6.1.6-1
- Update to 6.1.6
* Fri Mar 20 2020 Sérgio Basto <[email protected]> - 6.1.4-3
- Force use of VirtualBox-kmodsrc-6.1.4-3
* Thu Mar 19 2020 Sérgio Basto <[email protected]> - 6.1.4-2
- Since Fedora kernel 5.5.6 , Backport Virtual Box Guest shared folder support
from 5.6, so we don't need build "new" vboxsf code, also fix kernel 5.6
akmods build.
* Fri Feb 21 2020 Sérgio Basto <[email protected]> - 6.1.4-1
- Update to 6.1.4
* Tue Feb 04 2020 RPM Fusion Release Engineering <[email protected]> - 6.1.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
* Sun Jan 19 2020 Leigh Scott <[email protected]> - 6.1.2-1
- Update to 6.1.2
* Wed Dec 25 2019 Sérgio Basto <[email protected]> - 6.1.0-3
- Removing "old" way to build kmod's
* Tue Dec 24 2019 Sérgio Basto <[email protected]> - 6.1.0-2
- New way to build for Kernel 5.5, with kernel v5.5, change the behavior of
depmod. In earlier versions, it was sufficient to copy the contents of
Module.sysmvers from the vboxdrv directory to the current directory to have
the exported symbols from vboxdrv be available to another module such as
vboxnetflt, etc. With v5.5, that no longer works.
The workaround is to pass the path of Module.sysvers to kbuild (make) in a
symbol named KBUILD_EXTRA_SYMBOLS.
* Wed Dec 18 2019 Sérgio Monteiro Basto <[email protected]> - 6.1.0-1
- Update to 6.1.0
* Sun Oct 20 2019 Sérgio Basto <[email protected]> - 6.0.14-2
- Fix for kernel 5.4-rc3
* Thu Oct 17 2019 Sérgio Basto <[email protected]> - 6.0.14-1
- Update VBox to 6.0.14
* Thu Oct 03 2019 Sérgio Basto <[email protected]> - 6.0.12-3
- Fixes for kernel 5.4
* Sat Sep 14 2019 Sérgio Basto <[email protected]> - 6.0.12-2
- Add patch for kernel of EL 7.7
* Fri Sep 06 2019 Sérgio Basto <[email protected]> - 6.0.12-1
- Update to 6.0.12
* Tue Sep 03 2019 Leigh Scott <[email protected]> - 6.0.10-4
- Rebuild for new el7 kernel
* Fri Aug 09 2019 RPM Fusion Release Engineering <[email protected]> - 6.0.10-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
* Mon Jul 29 2019 Sérgio Basto <[email protected]> - 6.0.10-2
- Fixes for kernel 5.3
* Wed Jul 17 2019 Sérgio Basto <[email protected]> - 6.0.10-1
- Update to 6.0.10
* Wed Jul 10 2019 Sérgio Basto <[email protected]> - 6.0.8-3
- Fix build of vboxpci module under Linux 5.2, thanks to Steve Storey
* Fri May 31 2019 Sérgio Basto <[email protected]> - 6.0.8-2
- Fixes for kernel 5.2
* Wed May 15 2019 Sérgio Basto <[email protected]> - 6.0.8-1
- Update to 6.0.8
* Mon Apr 29 2019 Sérgio Basto <[email protected]> - 6.0.6-3
- Force build with VirtualBox-kmodsrc-6.0.6-3
* Thu Apr 18 2019 Sérgio Basto <[email protected]> - 6.0.6-2
- Update new vboxsf
- Force build with VirtualBox-kmodsrc-6.0.6-2
* Wed Apr 17 2019 Vasiliy N. Glazov <[email protected]> - 6.0.6-1
- Update to 6.0.6
* Wed Mar 27 2019 Vasiliy N. Glazov <[email protected]> - 6.0.4-4
- Update of new vboxsf
* Mon Mar 04 2019 RPM Fusion Release Engineering <[email protected]> - 6.0.4-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
* Wed Feb 13 2019 Sérgio Basto <[email protected]> - 6.0.4-2
- Fixes for upcoming kernel 5.1 and update of new vboxsf
* Tue Jan 29 2019 Sérgio Basto <[email protected]> - 6.0.4-1
- Update to 6.0.4
* Thu Jan 17 2019 Vasiliy N. Glazov <[email protected]> - 6.0.2-1
- Update to 6.0.2
* Wed Dec 19 2018 Sérgio Basto <[email protected]> - 6.0.0-1
- VirtualBox 6.0
* Thu Dec 13 2018 Sérgio Basto <[email protected]> - 5.2.22-3
- Fix vboxvideo.ko build on rhel76
* Thu Dec 13 2018 Nicolas Chauvet <[email protected]> - 5.2.22-2
- Rebuilt
* Sat Nov 10 2018 Sérgio Basto <[email protected]> - 5.2.22-1
- Update VBox to 5.2.22
* Fri Oct 19 2018 Sérgio Basto <[email protected]> - 5.2.20-1
- Update VBox to 5.2.20
* Wed Sep 12 2018 Leigh Scott <[email protected]> - 5.2.18-3
- Update master source, fixes kernel 4.18 >=f28 (rfbz#5017)
* Tue Sep 04 2018 Sérgio Basto <[email protected]> - 5.2.18-2
- Fixes for kernel 4.18
* Mon Aug 27 2018 Sérgio Basto <[email protected]> - 5.2.18-1
- Update to 5.2.18
* Thu Jul 26 2018 RPM Fusion Release Engineering <[email protected]> - 5.2.16-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
* Sun Jul 22 2018 Sérgio Basto <[email protected]> - 5.2.16-1
- Update to 5.2.16
* Tue Jul 03 2018 Sérgio Basto <[email protected]> - 5.2.14-1
- Update to 5.2.14
* Wed May 16 2018 Sérgio Basto <[email protected]> - 5.2.12-4
- Another fix
* Wed May 16 2018 Sérgio Basto <[email protected]> - 5.2.12-3
- Reenable build of pre-built kmod on el7
* Sat May 12 2018 Sérgio Basto <[email protected]> - 5.2.12-2
- Fix a double bug
- Just build akmods for el7
* Fri May 11 2018 Sérgio Basto <[email protected]> - 5.2.12-1
- Update to 5.2.12
* Thu May 10 2018 Sérgio Basto <[email protected]> - 5.2.10-4
- if we use new vboxsf, we do not need build vboxguest neither add his headers
* Thu May 03 2018 Sérgio Basto <[email protected]> - 5.2.10-3
- Start with jwrdegoede/vboxsf on Fedora 28
* Wed Apr 25 2018 Sérgio Basto <[email protected]> - 5.2.10-2
- Add fix for kernel 4.17
* Tue Apr 24 2018 Sérgio Basto <[email protected]> - 5.2.10-1
- Update to 5.2.10
* Sat Mar 10 2018 Sérgio Basto <[email protected]> - 5.2.8-3
- All fedora kernels have vboxvideo.ko
* Wed Mar 07 2018 Sérgio Basto <[email protected]> - 5.2.8-2
- Fix minor spelling mistakes
* Sat Mar 03 2018 Sérgio Basto <[email protected]> - 5.2.8-1
- Update VirtualBox-kmod to 5.2.8
* Wed Feb 28 2018 RPM Fusion Release Engineering <[email protected]> - 5.2.6-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
* Wed Feb 28 2018 RPM Fusion Release Engineering <[email protected]> - 5.2.6-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
* Mon Feb 19 2018 Sérgio Basto <[email protected]> - 5.2.6-3
- Remove vboxvideo.ko in Fedora rawhide, it fix build for kernel 4.16-rc1
* Thu Jan 18 2018 Sérgio Basto <[email protected]> - 5.2.6-2
- Fixes for kernel 4.15
* Wed Jan 17 2018 Sérgio Basto <[email protected]> - 5.2.6-1
- Update VBox to 5.2.6
* Fri Dec 01 2017 Sérgio Basto <[email protected]> - 5.1.30-4
- Add fixes for kernel 4.15
* Sun Nov 19 2017 Sérgio Basto <[email protected]> - 5.1.30-3
- Add more fixes for kernel 4.14
* Sun Nov 19 2017 Sérgio Basto <[email protected]> - 5.1.30-2
- Readd fixes for kernel 4.14
* Tue Oct 31 2017 Sérgio Basto <[email protected]> - 5.1.30-1
- Update VBox to 5.1.30
* Thu Sep 21 2017 Sérgio Basto <[email protected]> - 5.1.28-4
- Add fixes for kernel 4.14
* Sat Sep 16 2017 Sérgio Basto <[email protected]> - 5.1.28-3
- Reenable buildsys-build-rpmfusion-kerneldevpkgs-current
* Sat Sep 16 2017 Sérgio Basto <[email protected]> - 5.1.28-2
- Temporary disable broken dep of buildsys-build-rpmfusion-kerneldevpkgs-current
* Fri Sep 15 2017 Sérgio Basto <[email protected]> - 5.1.28-1
- Update VBox to 5.1.28
* Sun Jul 30 2017 Sérgio Basto <[email protected]> - 5.1.26-1
- Update VBox to 5.1.26
* Tue Jul 18 2017 Sérgio Basto <[email protected]> - 5.1.24-1
- Update VBox to 5.1.24
* Wed Jul 12 2017 Sérgio Basto <[email protected]> - 5.1.22-4
- Add patch for kernel_4.13_rc1
* Fri Jun 30 2017 Sérgio Basto <[email protected]> - 5.1.22-3
- Add patch for kernel 4.12
* Wed Jun 28 2017 Nicolas Chauvet <[email protected]> - 5.1.22-2
- Allow to build pre-built kmod on el
* Fri Jun 16 2017 Sérgio Basto <[email protected]> - 5.1.22-1
- Update VBox to 5.1.22
* Thu Apr 20 2017 Sérgio Basto <[email protected]> - 5.1.20-1
- Update VBox to 5.1.20, security fixes
* Sat Mar 18 2017 RPM Fusion Release Engineering <[email protected]> - 5.1.18-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
* Thu Mar 16 2017 Sérgio Basto <[email protected]> - 5.1.18-1
- Update VirtualBox to 5.1.18
* Thu Mar 09 2017 Sérgio Basto <[email protected]> - 5.1.16-1
- Update VirtualBox-kmod to 5.1.16
* Fri Jan 27 2017 Sérgio Basto <[email protected]> - 5.1.14-3
- Applied upstream patch for kernel-4.10.0-0.rc5
* Fri Jan 27 2017 Sérgio Basto <[email protected]> - 5.1.14-2
- Applied lnkops.patch for kernel-4.10.0-0.rc5
* Wed Jan 18 2017 Sérgio Basto <[email protected]> - 5.1.14-1
- Update VBox to 5.1.14
* Tue Nov 22 2016 Sérgio Basto <[email protected]> - 5.1.10-1
- New upstream version, 5.1.10
* Tue Oct 18 2016 Sérgio Basto <[email protected]> - 5.1.8-1
- Update VBox to 5.1.8
* Tue Sep 13 2016 Sérgio Basto <[email protected]> - 5.1.6-1
- Update VBox to 5.1.6
* Sat Sep 10 2016 Sérgio Basto <[email protected]> - 5.1.4-3
- Force use VirtualBox-kmodsrc >= 5.1.4-4, with fix for 4.8.0-rc5
* Wed Sep 07 2016 Sérgio Basto <[email protected]> - 5.1.4-2
- Force use VirtualBox-kmodsrc >= 5.1.4-3
* Tue Sep 06 2016 Sérgio Basto <[email protected]> - 5.1.4-1
- Update VBox to 5.1.4
* Mon Jul 18 2016 Sérgio Basto <[email protected]> - 5.0.26-1
- Update to 5.0.26
* Thu Jul 07 2016 Sérgio Basto <[email protected]> - 5.0.24-2
- Build only akmods
* Wed Jun 29 2016 Sérgio Basto <[email protected]> - 5.0.24-1
- Update VirtualBox to 5.0.24
- No more obsolete VirtualBox-OSE, simplify snippets
* Fri Jun 24 2016 Sérgio Basto <[email protected]> - 5.0.22-1
- Update to 5.0.22
* Sat Apr 23 2016 Sérgio Basto <[email protected]> - 5.0.18-1
- Update to 5.0.18
* Sun Mar 20 2016 Sérgio Basto <[email protected]> - 5.0.17-1.106108
- Update to 5.0.17
* Mon Mar 14 2016 Sérgio Basto <[email protected]> - 5.0.16-2
- Force use of VirtualBox-kmodsrc-5.0.16-3
* Sat Mar 05 2016 Sérgio Basto <[email protected]> - 5.0.16-1
- Building akmod for VirtualBox 5.0.16
* Wed Jan 20 2016 Sérgio Basto <[email protected]> - 5.0.14-1
- Building akmod for VirtualBox 5.0.14
* Tue Dec 22 2015 Sérgio Basto <[email protected]> - 5.0.12-1
- Building akmod for VirtualBox-5.0.12
* Thu Nov 12 2015 Sérgio Basto <[email protected]> - 5.0.10-1
- Building akmod for VirtualBox-5.0.10
* Thu Oct 22 2015 Sérgio Basto <[email protected]> - 5.0.8-1
- Update to VirtualBox-5.0.8
* Mon Oct 05 2015 Sérgio Basto <[email protected]> - 5.0.6-1
- Update to VirtualBox-5.0.6
* Fri Sep 25 2015 Sérgio Basto <[email protected]> - 5.0.4-2
- no debuginfo, if we, just build akmod, debuginfo will be empty.
* Thu Sep 24 2015 Sérgio Basto <[email protected]> - 5.0.4-1
- Update to 5.0.4, just build akmod.
* Fri Jul 24 2015 Nicolas Chauvet <[email protected]> - 4.3.30-1.2
- Rebuilt for kernel
* Thu Jul 16 2015 Nicolas Chauvet <[email protected]> - 4.3.30-1.1
- Rebuilt for kernel
* Wed Jul 15 2015 Sérgio Basto <[email protected]> - 4.3.30-1
- New upstream release (4.3.30), build akmods.
- Invert logic of conditional build, just to have more logic.
* Thu Jul 02 2015 Nicolas Chauvet <[email protected]> - 4.3.28-1.6
- Rebuilt for kernel
* Sun Jun 28 2015 Nicolas Chauvet <[email protected]> - 4.3.28-1.5
- Rebuilt for kernel
* Wed Jun 10 2015 Nicolas Chauvet <[email protected]> - 4.3.28-1.4
- Rebuilt for kernel
* Tue Jun 02 2015 Nicolas Chauvet <[email protected]> - 4.3.28-1.3
- Rebuilt for kernel
* Sun May 24 2015 Nicolas Chauvet <[email protected]> - 4.3.28-1.2
- Rebuilt for kernel
* Wed May 20 2015 Nicolas Chauvet <[email protected]> - 4.3.28-1.1
- Rebuilt for kernel
* Wed May 13 2015 Sérgio Basto <[email protected]> - 4.3.28-1
- New upstream release (4.3.28), build akmods.
* Wed May 13 2015 Nicolas Chauvet <[email protected]> - 4.3.26-2.2
- Rebuilt for kernel
* Sat May 09 2015 Nicolas Chauvet <[email protected]> - 4.3.26-2.1
- Rebuilt for kernel
* Tue May 05 2015 Sérgio Basto <[email protected]> - 4.3.26-2
- Rebuild for newest VirtualBox-kmodsrc and build a new akmod .
* Sat May 02 2015 Nicolas Chauvet <[email protected]> - 4.3.26-1.6
- Rebuilt for kernel
* Wed Apr 22 2015 Nicolas Chauvet <[email protected]> - 4.3.26-1.5
- Rebuilt for kernel
* Wed Apr 15 2015 Nicolas Chauvet <[email protected]> - 4.3.26-1.4
- Rebuilt for kernel
* Mon Mar 30 2015 Nicolas Chauvet <[email protected]> - 4.3.26-1.3
- Rebuilt for kernel
* Fri Mar 27 2015 Nicolas Chauvet <[email protected]> - 4.3.26-1.1
- Rebuilt for kernel
* Tue Mar 24 2015 Leigh Scott <[email protected]> - 4.3.26-1
- New upstream release.
* Mon Mar 23 2015 Nicolas Chauvet <[email protected]> - 4.3.20-4.8
- Rebuilt for kernel
* Sat Mar 21 2015 Nicolas Chauvet <[email protected]> - 4.3.20-4.7
- Rebuilt for kernel
* Tue Mar 10 2015 Nicolas Chauvet <[email protected]> - 4.3.20-4.6
- Rebuilt for kernel
* Fri Mar 06 2015 Nicolas Chauvet <[email protected]> - 4.3.20-4.5
- Rebuilt for kernel
* Sat Feb 14 2015 Nicolas Chauvet <[email protected]> - 4.3.20-4.4
- Rebuilt for kernel
* Sun Feb 08 2015 Nicolas Chauvet <[email protected]> - 4.3.20-4.3
- Rebuilt for kernel
* Wed Feb 04 2015 Nicolas Chauvet <[email protected]> - 4.3.20-4.2
- Rebuilt for kernel
* Mon Feb 02 2015 Nicolas Chauvet <[email protected]> - 4.3.20-4.1
- Rebuilt for kernel
* Mon Jan 26 2015 Leigh Scott <[email protected]> - 4.3.20-4
- fix build issue
* Thu Jan 22 2015 Nicolas Chauvet <[email protected]> - 4.3.20-3.5
- Bump
* Wed Jan 21 2015 Nicolas Chauvet <[email protected]> - 4.3.20-2.5
- Rebuilt for kernel
* Sat Jan 10 2015 Nicolas Chauvet <[email protected]> - 4.3.20-2.3
- Rebuilt for kernel
* Fri Dec 19 2014 Nicolas Chauvet <[email protected]> - 4.3.20-2.2
- Rebuilt for kernel
* Sun Dec 14 2014 Nicolas Chauvet <[email protected]> - 4.3.20-2.1
- Rebuilt for kernel
* Fri Dec 05 2014 Nicolas Chauvet <[email protected]> - 4.3.20-2
- Rebuilt for f21 final kernel
* Sun Nov 23 2014 Sérgio Basto <[email protected]> - 4.3.20-1
- New upstream release and just build akmods for devel.
* Sun Oct 12 2014 Sérgio Basto <[email protected]> - 4.3.18-1
- New upstream release and just build akmods for devel.
* Thu Sep 11 2014 Sérgio Basto <[email protected]> - 4.3.16-1
- New upstream release and just build akmods for devel.
* Fri Jul 25 2014 Sérgio Basto <[email protected]> - 4.3.14-1
- New upstream release and just build akmods for rawhide/F21.
* Sun May 18 2014 Sérgio Basto <[email protected]> - 4.3.12-1
- New upstream release and just build akmods for rawhide.
* Fri May 02 2014 Sérgio Basto <[email protected]> - 4.3.10-2
- Rebuild for new x11-xorg-server
* Mon Mar 31 2014 Sérgio Basto <[email protected]> - 4.3.10-1
- New upstream release and just build akmods for rawhide
* Fri Mar 14 2014 Sérgio Basto <[email protected]> - 4.3.8-1
- New upstream release and just build akmods for rawhide
* Wed Dec 25 2013 Sérgio Basto <[email protected]> - 4.3.6-2
- Rebuild for newest VirtualBox-kmodsrc and just build akmods for rawhide.
* Thu Dec 19 2013 Sérgio Basto <[email protected]> - 4.3.6-1
- New upstream release.
* Tue Dec 10 2013 Nicolas Chauvet <[email protected]> - 4.3.4-4
- Rebuilt for f20 final kernel
* Sat Dec 07 2013 Nicolas Chauvet <[email protected]> - 4.3.4-3
- Rebuilt for f20 final kernel
* Sat Nov 30 2013 Sérgio Basto <[email protected]> - 4.3.4-1
- New upstream release.
* Sat Nov 02 2013 Sérgio Basto <[email protected]> - 4.3.2-1
- New upstream release.
* Wed Oct 30 2013 Sérgio Basto <[email protected]> - 4.3.0-2
- Don't disable hardening which create /dev/vboxdrvu .
* Mon Oct 28 2013 Sérgio Basto <[email protected]> - 4.3.0-1
- New upstream release.
* Sun Sep 29 2013 Sérgio Basto <[email protected]> - 4.2.18-2
- Build with patch Additions/linux: fix shared folders for Linux 3.11
* Thu Sep 26 2013 Sérgio Basto <[email protected]> - 4.2.18-1
- New upstream release.
* Sun Sep 01 2013 Sérgio Basto <[email protected]> - 4.2.16-2
- Build akmods with src patched for kernel 3.11
* Sat Jul 06 2013 Sérgio Basto <[email protected]> - 4.2.16-1
- New upstream release.
* Sat Jun 29 2013 Sérgio Basto <[email protected]> - 4.2.14-1
- New upstream release.
* Mon Apr 15 2013 Sérgio Basto <[email protected]> - 4.2.12-1
- New upstream release.
* Sat Mar 16 2013 Sérgio Basto <[email protected]> - 4.2.10-1
- New upstream release.
* Sat Mar 02 2013 Sérgio Basto <[email protected]> - 4.2.8-1
- New upstream release.
* Tue Dec 25 2012 Sérgio Basto <[email protected]> - 4.2.6-1
- New upstream release.
* Sun Sep 23 2012 Sérgio Basto <[email protected]> - 4.2.0-2
- Build with newest VirtualBox-kmodsrc (4.2.0-3).
* Sat Sep 15 2012 Sérgio Basto <[email protected]> - 4.2.0-1
- 4.2.0 released
* Sun Sep 09 2012 Sérgio Basto <[email protected]> - 4.2.0-0.2.RC4
- New RC4
- Force use VirtualBox-kmodsrc >= 4.2.0-0.6
* Sat Sep 01 2012 Sérgio Basto <[email protected]> - 4.2.0-0.1.RC3
- New RC major upstream release.
* Thu Jun 21 2012 Sérgio Basto <[email protected]> - 4.1.18-1
- New upstream release.
* Wed Jun 13 2012 Sérgio Basto <[email protected]> - 4.1.16-2
- build with patches to kernels 3.5
* Wed May 23 2012 Sérgio Basto <[email protected]> - 4.1.16-1
- New upstream release.
* Sat May 19 2012 Sérgio Basto <[email protected]> - 4.1.14-4
- Bump a release.
* Fri May 18 2012 Sérgio Basto <[email protected]> - 4.1.14-3
- Rename to VirtualBox-kmod
* Mon May 07 2012 Sérgio Basto <[email protected]> - 4.1.14-2
- A little review.
* Fri Apr 27 2012 Sérgio Basto <[email protected]> - 4.1.14-1
- New release.
* Tue Apr 17 2012 Nicolas Chauvet <[email protected]> - 4.1.12-3
- Update for UsrMove
* Mon Apr 16 2012 Nicolas Chauvet <[email protected]> - 4.1.12-2.2
- rebuild for updated kernel
* Fri Apr 13 2012 Sérgio Basto <[email protected]> - 4.1.12-2.1
- Just build akmods
* Fri Apr 13 2012 Sérgio Basto <[email protected]> - 4.1.12-1.1
- New release
* Thu Apr 12 2012 Nicolas Chauvet <[email protected]> - 4.1.8-1.3
- rebuild for beta kernel
* Tue Feb 07 2012 Nicolas Chauvet <[email protected]> - 4.1.8-1.2
- Rebuild for UsrMove
* Fri Dec 23 2011 Sérgio Basto <[email protected]> - 4.1.8-1
- New release.
* Sun Dec 11 2011 Sérgio Basto <[email protected]> - 4.1.6-2
- rebuild for update kmodsrc.
* Sat Dec 3 2011 Sérgio Basto <[email protected]> - 4.1.6-1
- Build for new release
- added time package to AkmodsBuildRequires
- removed clean section
* Wed Nov 02 2011 Nicolas Chauvet <[email protected]> - 4.1.2-1.4
- Rebuild for F-16 kernel
* Tue Nov 01 2011 Nicolas Chauvet <[email protected]> - 4.1.2-1.3
- Rebuild for F-16 kernel
* Fri Oct 28 2011 Nicolas Chauvet <[email protected]> - 4.1.2-1.2
- Rebuild for F-16 kernel
* Sun Oct 23 2011 Nicolas Chauvet <[email protected]> - 4.1.2-1.1
- Rebuild for F-16 kernel
* Thu Sep 22 2011 Lubomir Rintel <[email protected]> - 4.1.2-1
- New release
- Added vboxpci
* Sat May 28 2011 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 4.0.4-2
- rebuild for F15 release kernel
* Mon Apr 04 2011 Lubomir Rintel <[email protected]> - 4.0.4-1
- New release
* Mon Feb 14 2011 Lubomir Rintel <[email protected]> - 4.0.2-2
- Fix module symbol versioning
* Sat Feb 05 2011 Lubomir Rintel <[email protected]> - 4.0.2-1
- New release
* Tue Jan 11 2011 Lubomir Rintel <[email protected]> - 3.2.10-2
- Fix build with 2.6.37
* Tue Nov 16 2010 Lubomir Rintel <[email protected]> - 3.2.10-1
- New release
* Mon Jul 12 2010 Lubomir Rintel <[email protected]> - 3.2.6-1
- New release
* Fri Jun 18 2010 Lubomir Rintel <[email protected]> - 3.2.4-1
- New release
* Mon May 10 2010 Lubomir Rintel <[email protected]> - 3.2.0-1
- Release
* Mon May 10 2010 Lubomir Rintel <[email protected]> - 3.2.0-0.2.beta2
- Beta 2
* Thu Apr 29 2010 Lubomir Rintel <[email protected]> - 3.2.0-0.1.beta1
- Beta
* Fri Mar 26 2010 Lubomir Rintel <[email protected]> - 3.1.6-1
- New release
* Wed Feb 17 2010 Lubomir Rintel <[email protected]> - 3.1.4-1
- New release
* Tue Jan 26 2010 Lubomir Rintel <[email protected]> - 3.1.2-1
- New release
* Sun Dec 06 2009 Lubomir Rintel <[email protected]> - 3.1.0-1
- stable
* Tue Nov 24 2009 Lubomir Rintel <[email protected]> - 3.1.0-0.1.beta2
- Bump to beta2
* Thu Nov 12 2009 Lubomir Rintel <[email protected]> - 3.1.0-0.1.beta1
- Bump to beta
* Sun Nov 01 2009 Lubomir Rintel <[email protected]> - 3.0.10-1
- Version bump
* Wed Oct 07 2009 Lubomir Rintel <[email protected]> - 3.0.8-1
- Version bump
* Mon Aug 17 2009 Lubomir Rintel <[email protected]> - 3.0.6-1
- Update to 3.0.6, re-enable hardening
* Mon Aug 17 2009 Lubomir Rintel <[email protected]> - 3.0.4-4
- Source package is now xz-compressed
* Sat Aug 15 2009 Lubomir Rintel <[email protected]> - 3.0.4-2
- Make it possible to disable hardening, do so by default
* Sun Aug 09 2009 Lubomir Rintel <[email protected]> - 3.0.4-1
- New release
- Check that we build all modules present
* Tue Aug 04 2009 Lubomir Rintel <[email protected]> - 3.0.2-2
- Add netadp bmodule (Vlastimil Holer, #744)
* Sun Jul 12 2009 Jonathan Dieter <[email protected]> - 3.0.2-1
- New release
* Fri Jul 03 2009 Jonathan Dieter <[email protected]> - 3.0.0-1
- New release
* Thu Jul 02 2009 Lubomir Rintel <[email protected]> - 2.2.4-2
- Enable the DRM module
* Fri Jun 05 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 2.2.4-1.1
- rebuild for final F11 kernel
* Sun May 31 2009 Lubomir Rintel <[email protected]> - 2.2.4-1
- New release
* Sun May 03 2009 Lubomir Rintel <[email protected]> - 2.2.2-1
- New release
* Sat Apr 25 2009 Lubomir Rintel <[email protected]> - 2.2.0-1
- New release
* Fri Apr 24 2009 Lubomir Rintel <[email protected]> - 2.1.4-2
- Fix akmod requires
* Sat Mar 14 2009 Lubomir Rintel <[email protected]> - 2.1.4-1
- Update to 2.1.4
- Enable VBOX_USE_INSERT_PAGE (VirtualBox #3403)
- Use packed source code tarball
* Sat Jan 24 2009 Lubomir Rintel <[email protected]> - 2.1.2-1
- Update to 2.1.2
* Sun Jan 11 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 2.1.0-2
- Cosmetic fixes
- Fix build of standalone akmod
* Tue Dec 30 2008 Lubomir Rintel <[email protected]> - 2.1.0-1
- New upstream version
* Tue Sep 02 2008 Lubomir Rintel <[email protected]> - 1.6.4-2
- Use the VirtualBox-OSE build-time generated source tree
* Tue Sep 02 2008 Lubomir Rintel <[email protected]> - 1.6.4-1
- New upstream version, don't build for Xen needlessly
* Sat Mar 08 2008 Till Maas <opensource till name> - 1.5.6-3
- rewrite to a kmodspec for rpmfusion
* Fri Mar 07 2008 Lubomir Kundrak <[email protected]> - 1.5.6-2
- Fix build by passing kernel source tree path to make
* Sun Feb 24 2008 Till Maas <opensource till name> - 1.5.6-1
- update to new version