source: projects/specs/trunk/d/dkms/dkms-vl.spec @ 12391

Revision 12391, 37.9 KB checked in by tomop, 4 years ago (diff)

updated 3 packages

dkms-2.8.1-1

fribidi-1.0.9-1

git-2.26.2-1

Line 
1%bcond_with systemd
2
3Summary:        Dynamic Kernel Module Support Framework
4Summary(ja):    DKMS (ダイナミックカーネルモジュールサポート) フレームワーク
5Name:           dkms
6Version:        2.8.1
7Release:        1%{?_dist_release}%{?with_systemd:.systemd}
8Group:          System Environment/Base
9Vendor:         Project Vine
10Distribution:   Vine Linux
11Packager:       shaolin, daisuke
12
13License:        GPLv2+
14URL:            https://github.com/dell/dkms/
15Source0:        https://github.com/dell/dkms/archive/v%{version}.tar.gz#/dkms-%{version}.tar.gz
16
17# git HEAD at 2020-05-01
18Patch0:         dkms-2.8.1-20200501.patch
19Patch100:       dkms-2.8.1-mkrpm-vine.patch
20Patch101:       dkms-2.8.1-mkkmp-vine.patch
21Patch102:       dkms-2.8.1-autoinstaller-vine.patch
22Patch103:       dkms-2.8.1-prerm-vine.patch
23
24BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
25BuildArch:      noarch
26
27Provides:       dkms-minimal = %{version}
28
29Requires:       bash
30Requires:       build-essential
31Requires:       coreutils
32Requires:       cpio
33Requires:       elfutils-libelf-devel
34Requires:       file
35Requires:       findutils
36Requires:       gawk
37Requires:       gcc
38Requires:       grep
39Requires:       gzip
40Requires:       kernel-devel
41Requires:       sed
42Requires:       tar
43Requires:       which
44%if "%{?_dist_release}" >= "vl7"
45Requires:       kmod
46%else
47Requires:       module-init-tools
48%endif
49%if %{with systemd}
50BuildRequires:  systemd
51%{?systemd_requires}
52%else
53Requires(post): chkconfig
54Requires(preun): chkconfig
55Requires(postun): chkconfig
56%endif
57
58%description
59This package contains the framework for the Dynamic
60Kernel Module Support (DKMS) method for installing
61module RPMS as originally developed by Dell.
62
63%description -l ja
64このパッケージには、ダイナミック・カーネルモジュール・サポート
65(DKMS) のフレームワークが収録されています。
66これはもともと Dell によって開発されたもので、
67カーネルモジュールをコンパイル・配置するために使われます。
68
69
70%prep
71%setup -q
72%patch0 -p1
73
74%patch100 -p1
75%patch101 -p1
76%patch102 -p1
77%patch103 -p1 -b .prerm-vine
78
79
80%build
81
82
83%install
84rm -rf %{buildroot}
85%if %{with systemd}
86make install-redhat-systemd \
87    SYSTEMD=%{buildroot}%{_unitdir} \
88%else
89make install-redhat-sysv \
90%endif
91    DESTDIR=%{buildroot} \
92    LIBDIR=%{buildroot}%{_prefix}/lib/%{name}
93
94install -p -m 755 -D kernel_install.d_dkms \
95    %{buildroot}%{_prefix}/lib/kernel/install.d/40-%{name}.install
96sed -i -e 's|/usr/bin/bash|/bin/bash|g' \
97    %{buildroot}%{_prefix}/lib/kernel/install.d/40-%{name}.install
98
99
100%clean
101rm -rf %{buildroot}
102
103
104%post
105#[ -e /sbin/dkms ] && mv -f /sbin/dkms /sbin/dkms.old 2>/dev/null
106%if %{with systemd}
107%systemd_post %{name}.service
108%else
109# enable on initial install
110[ $1 -lt 2 ] && /sbin/chkconfig dkms_autoinstaller on ||:
111%endif
112
113
114%preun
115%if %{with systemd}
116%systemd_preun %{name}.service
117%else
118# remove on uninstall
119[ $1 -lt 1 -o -x /bin/systemctl ] && /sbin/chkconfig dkms_autoinstaller off ||:
120%endif
121
122%if %{with systemd}
123%postun
124%systemd_postun %{name}.service
125%endif
126
127
128%files
129%defattr(-,root,root)
130%license COPYING
131%doc sample.spec sample.conf AUTHORS README.md
132%{_prefix}/lib/%{name}
133%{_prefix}/lib/kernel/install.d/40-%{name}.install
134%{_mandir}/man8/dkms.8*
135%{_sbindir}/%{name}
136%{_sharedstatedir}/%{name}
137%config(noreplace) %{_sysconfdir}/%{name}
138%{_sysconfdir}/kernel/postinst.d/%{name}
139%{_sysconfdir}/kernel/prerm.d/%{name}
140%dir %{_datadir}/bash-completion
141%dir %{_datadir}/bash-completion/completions
142%{_datadir}/bash-completion/completions/%{name}
143%if %{with systemd}
144%{_unitdir}/%{name}.service
145%else
146%{_initdir}/dkms_autoinstaller
147%endif
148
149
150%changelog
151* Fri May 01 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.8.1-1
152- new upstream release.
153- updated Patch100-103.
154- dropped Patch104
155- added systemd support (disabled as default).
156
157* Wed Oct 02 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.21.1-9
158- add R: build-essential
159
160* Wed Jun 01 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.21.1-8
161- add patch104
162  - add missing condition to use debian specific log message
163  - fix error messages
164
165* Tue Apr 19 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.0.21.1-7
166- rebuild for Vine 6
167
168* Wed Jun 03 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.0.21.1-6
169- update Patch103
170  remove prebuilt binary modules and directory too,
171  when a specific kernel is being removed
172
173* Wed May 06 2009 Daisuke SUZUKI <daisuke@linux.or.jp> - 2.0.21.1-5
174- fix patch103, add missing 'fi'
175
176* Tue Apr 28 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.0.21.1-4
177- add Patch103 to supress unnecessary error messages
178
179* Mon Apr 27 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.0.21.1-3
180- add Patch102 (make startup message a bit fancier)
181
182* Thu Apr 23 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.0.21.1-2
183- add Patch100 to handle mkrpm properly on Vine
184- add Patch101 to handle mkkmp properly on Vine
185
186* Thu Apr  9 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.0.21.1-1
187- initial build for Vine Linux
188
189* Wed May 28 2008 Matt Domsch <Matt_Domsch@dell.com> 2.0.19.1
190- depmod on uninstall before mkinitrd, depmod fix & cleanups
191- find_module_from_ko() could incorrectly return multiple values
192
193* Tue Mar 25 2008 Matt Domsch <Matt_Domsch@dell.com> 2.0.19
194- fix dkms.spec file/dir ownerships yet again
195
196* Thu Mar 20 2008 Matt Domsch <Matt_Domsch@dell.com> 2.0.18
197- don't include dist/ in tarball
198- use /etc/kernel/{prerm,postinst}.d/dkms in RPMs now too
199- mkrpm: display rpmbuild log on error, write RPMs to $dkms_tree/$module/$module_version/rpm
200- clarify license in spec to GPLv2+
201
202* Fri Feb 15 2008 Matt Domsch <Matt_Domsch@dell.com> 2.0.17.6
203- call udevadm trigger instead of udevtrigger for newer udev (Launchpad #192241)
204- omit installed-weak modules from remove --all (Red Hat BZ#429410)
205
206* Wed Oct 10 2007 Matt Domsch <Matt_Domsch@dell.com> 2.0.17.5
207- call udevtrigger if we install a module for the currently running kernel
208- uninstall from /extra before DEST_MODULE_LOCATION (Red Hat BZ#264981)
209- Run depmod after uninstall
210
211* Wed Sep 19 2007 Matt Domsch <Matt_Domsch@dell.com> 2.0.17.4
212- upgrade to latest upstream
213
214* Wed Jun 20 2007 Matt Domsch <Matt_Domsch@dell.com> 2.0.16.2
215- updated for Ubuntu support, other bugfixes.
216
217* Tue Mar 20 2007 Matt Domsch <Matt_Domsch@dell.com> 2.0.16.1
218- spec file cleanups per re-review in Fedora
219- add bash completion, rpmbuild check, pinit, pass-arch patches from
220  Mandriva.  These are generic.  The other Mandriva patches appear to
221  be distro-specific.
222- Look for /etc/sysconfig/module-init-tools to get some values.
223
224* Tue Feb 27 2007 Matt Domsch <Matt_Domsch@dell.com> 2.0.16
225- fix override_dest_module_location() for historical distro versions
226- don't run weak-modules if it doesn't exist
227
228* Mon Feb 26 2007 Matt Domsch <Matt_Domsch@dell.com> 2.0.15
229- release with no changes
230
231* Fri Feb 23 2007 Matt Domsch <Matt_Domsch@dell.com> 2.0.14.1
232- After upgrading from older DKMS versions to 2.0.14, any previously
233  installed modules wouldn't show status properly, and wouldn't
234  uninstall properly, due to the new policy of using /extras/ and
235  /updates/.  Needed to take that into account and look in both places.
236- SuSE puts weak-modules in /usr/lib/module-init-tools not /sbin.
237
238* Thu Feb 22 2007 Matt Domsch <Matt_Domsch@dell.com> 2.0.14
239- RHEL5 weak module status report fixed
240
241* Mon Feb 19 2007 Matt Domsch <Matt_Domsch@dell.com> 2.0.13.2
242- RHEL5 weak module recognition with new state installed-weak
243- autoinstaller recognizes installed-weak and doesn't rebuild
244- RHEL5 and SLES10 and higher weak module code expects modules to go
245  into /lib/modules/$kern/{extra,updates} respectively, so force that.
246
247* Mon Feb 5 2007 Matt Domsch <Matt_Domsch@dell.com>
248- patch from http://qa.mandriva.com/show_bug.cgi?id=27985 assigns new
249  modprobe.conf alias ordinals starting at zero.
250
251* Fri Jan 12 2007 Matt Domsch <Matt_Domsch@dell.com> 2.0.13.1
252- properly create driver disks for Fedora Core 6 and RHEL5
253- make .iso, .tar, and floppy .img driver disks for Red Hat and SuSE
254- set CLEAN properly even if MAKE[] isn't set.
255- fix install.sh buglet installing the manpage
256
257* Thu Jun 29 2006 Matt Domsch <Matt_Domsch@dell.com>
258- cleanups to match Fedora Extras spec file
259
260* Thu Jun 29 2006 Matt Domsch <Matt_Domsch@dell.com> 2.0.13
261- bump to 2.0.13
262
263* Wed Jun 28 2006 Matt Domsch <Matt_Domsch@dell.com> 2.0.12.1-1
264- fix version comparison awk pattern matching invocation and a line continuation
265
266* Mon Jun 26 2006 Matt Domsch <Matt_Domsch@dell.com> 2.0.12-1
267- bump to 2.0.12
268
269* Wed Jun 14 2006 Matt Domsch <Matt_Domsch@dell.com> 2.0.11.1-1
270- fix version comparison for all 2.6 kernels
271
272* Mon Apr 10 2006 Matt Domsch <Matt_Domsch@dell.com>
273- add README.dkms to doc
274
275* Wed Mar 29 2006 Matt Domsch <Matt_Domsch@dell.com> 2.0.11-1
276- use -n <val> to all head and tail calls
277
278* Tue Mar 28 2006 Matt Domsch <Matt_Domsch@dell.com> 2.0.10.1-1
279- fix munging of /etc/sysconfig/kernel INITRD_MODULES= line
280  so it doesn't move already-present entries to the end
281
282* Thu Mar 16 2006 Matt Domsch <Matt_Domsch@dell.com> 2.0.10-1
283- bump to 2.0.10
284
285* Wed Mar 15 2006 Matt Domsch <Matt_Domsch@dell.com> 2.0.9.3-1
286- add PRE_INSTALL dkms.conf directive
287
288* Tue Mar 14 2006 Matt Domsch <Matt_Domsch@dell.com> 2.0.9.2-1
289- add SuSE Kernel Module Package (mkkmp) support
290
291* Tue Dec 13 2005 Matt Domsch <Matt_Domsch@dell.com> 2.0.9.1-1
292- patch from Eric Devolder enables mkinitrd for Debian Sarge
293- include debian/ directory in upstream tarball
294
295* Thu Dec 8 2005 Matt Domsch <Matt_Domsch@dell.com> 2.0.9-1
296- fix DF28947 (remove word 'only') from a printed message
297- gzip -9 dkms.8 manpage
298
299* Wed Dec 7 2005 Matt Domsch <Matt_Domsch@dell.com> 2.0.8.3
300- look to DKMS_DIRECTIVE* environment variables to override dkms.conf settings
301- don't create/remove (unused) /var/lock/subsys/dkms files in autoinstaller
302
303* Mon Nov 7 2005 Gary Lerhaupt <gary_lerhaupt@dell.com> 2.0.8.2
304- Multi driver suse driver disk support (thanks to Sreenivas.Bagalkote@engenio.com)
305- Cleanup tempdir when ldtarball fails
306
307* Mon Nov 7 2005 Gary Lerhaupt <gary_lerhaupt@dell.com> 2.0.8.1
308- mkrpm now is built with -ba, not -bb (creates source RPM)
309
310* Fri Nov 4 2005 Gary Lerhaupt <gary_lerhaupt@dell.com> 2.0.8
311- In dkms_autoinstaller added -no-clean-kernel to builds of multiple modules to avoid mrproper
312
313* Wed Oct 19 2005 Gary Lerhaupt <gary_lerhaupt@dell.com> 2.0.7
314- Repackaged 2.0.6.2 as 2.0.7
315
316* Wed Oct 19 2005 Gary Lerhaupt <gary_lerhaupt@dell.com> 2.0.6.2
317- Updated dkms_mkkerneldoth to know about VMWare kernel
318
319* Sun Oct 9 2005 Gary Lerhaupt <gary_lerhaupt@dell.com> 2.0.6.1
320- Changed root check on ldtarball to only care about root if it sees --force
321
322* Fri Sep 2 2005 Gary Lerhaupt <gary_lerhaupt@dell.com> 2.0.6
323- renamed 2.0.5.9 to 2.0.6
324
325* Mon Jul 25 2005 Gary Lerhaupt <gary_lerhaupt@dell.com> 2.0.5.9
326- FIXED BUG, when only some modules have original_modules, ARCHIVE_PREF3 wasn't getting reset causing big problems
327
328* Mon Jul 18 2005 Gary Lerhaupt <gary_lerhaupt@dell.com> 2.0.5.8
329- DKMS install now moves out original modules, does not copy them out
330
331* Tue Jun 7 2005 Gary Lerhaupt <gary_lerhaupt@dell.com> 2.0.5.7
332- Get rid of grep error when looking for RH file on non RH distro (Matt Domsch)
333
334* Wed May 11 2005 Gary Lerhaupt <gary_lerhaupt@dell.com> 2.0.5.6
335- handle obsolete modules in /etc/sysconfig/kernel
336
337* Fri Apr 29 2005 Gary Lerhaupt <gary_lerhaupt@dell.com> 2.0.5.5
338- dkms remove now properly removes modules_conf_aliases (thanks Matthew Melvin)
339
340* Wed Apr 20 2005 Gary Lerhaupt <gary_lerhaupt@dell.com> 2.0.5.4
341- Mktarball fails if it can't find dkms_dbversion
342
343* Tue Mar 15 2005 Gary Lerhaupt <gary_lerhaupt@dell.com> 2.0.5.3
344- More spec cleanups
345
346* Mon Mar 14 2005 Gary Lerhaupt <gary_lerhaupt@dell.com> 2.0.5.2
347- Tweaked spec to follow http://fedoraproject.org/wiki/PackagingGuidelines
348
349* Thu Mar 03 2005 Gary Lerhaupt <gary_lerhaupt@dell.com> 2.0.5.1
350- Added --size for alternate driver disk image sizes
351
352* Tue Jan 25 2005 Gary Lerhaupt <gary_lerhaupt@dell.com> 2.0.5
353- Repackaged as 2.0.5
354
355* Mon Jan 17 2005 Gary Lerhaupt <gary_lerhaupt@dell.com> 2.0.4.3
356- Allow MAKE_MATCH[0] to decide if MAKE[0] will be used
357- Add Taroon check in template-dkms-mkrpm.spec for ia32e detection
358
359* Mon Dec 20 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 2.0.4.2
360- John Hull's patch for no SuSE 2.6 kernel preparation
361
362* Wed Dec 15 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 2.0.4.1
363- Red Hat driver disks can now have modules.pcimap and pci.ids files
364
365* Mon Dec 13 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 2.0.4
366- bumped revision
367
368* Fri Dec 10 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 2.0.3.3
369- Added quotes to $kernel_config when checking variable
370- Tweak the multiowned arch detection workaround to deal with no ownership
371
372* Mon Dec 6 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 2.0.3.2
373- Fix to template-spec so that ia32e check doesn't require kernel sources
374
375* Wed Dec 1 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 2.0.3.1
376- Jeffrey Kirsher's workaround for arch detection on multiowned /lib/modules
377
378* Mon Nov 22 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 2.0.3
379- Issues regressed.  Bumped to non-testing version.
380
381* Fri Nov 19 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 2.0.2.5
382- DKMS ldtarball arch fix for changed Andreas 2.0.2 code
383- Workaround for Red Hat's new source symlink in 2.6.9
384- All 'cd -' now output to /dev/null
385
386* Sat Oct 2 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 2.0.2
387- Added --verbose which invoke_command uses
388- Fixed it so mrproper doesn't get run > 2.6.6
389
390* Tue Sep 28 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 2.0.1.2-1
391- Charles Duffy's fix for multiple rpms owning /lib/modules/kernel...
392- Andreas Gruenbacher's removal of IFS usage
393- Andreas Gruenbacher's reorganizing prepare check into prepare_kernel
394- Andreas Gruenbacher's patch to cut down on line length by using $base_dir
395- fixed $base_dir so it gets set after setup_kernels_arches
396
397* Sun Sep 12 2004 Andreas Gruenbacher <agruen@suse.de>
398- patch to remove tick usage
399- patch to rewrite version comparison code
400- patch to switch to usage of case, remove use of grep -c, remove use of IFS
401- patch to change handling of stderr
402
403* Fri Sep 10 2004 Gary Lerhaupt <gary_lerhaupt@dell.com>
404- Fixed remove so you can remove modules in added state
405
406* Thu Sep 9 2004 Gary Lerhaupt <gary_lerhaupt@dell.com>
407- Removed "module ignored" message from dkms_autoinstaller
408
409* Thu Aug 26 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 2.0.0-1
410- Output to stderr is now >> and not >
411- Added kludge to allow redhat1 driver disks with BOOT kernel modules
412- Allow cross arch building on 2.6 if --kernelsourcedir is passed
413- Generic make commands now respect --kernelsourcedir
414- Bumped dkms_dbversion to 2.0.0
415
416* Thu Aug 19 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 1.96.02-1
417- Fixed suse driver disks for i386
418
419* Thu Aug 12 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 1.96.01-1
420- Look for /etc/SuSEconfig also to know if its a SuSE box
421- If no make command, set the clean command
422
423* Wed Aug 11 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 1.95.32-1
424- Added suse mkdriverdisk support
425- Updated man page
426
427* Tue Aug 10 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 1.95.25-1
428- Added provides: dkms-minimal for Mandrake
429- Added -r, --release for use in SuSE driver disks
430
431* Fri Aug 06 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 1.95.24-1
432- Fixed kernelsourcedir error message.
433- dkms_autoinstaller now excepts a kernel parameter
434
435* Tue Jul 27 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 1.95.19-1
436- Created a set_kernel_source_dir function to remove dup code
437
438* Mon Jul 26 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 1.95.18-1
439- Added John Hull's SuSE support patches (mkinitrd, config prep)
440
441* Fri Jul 23 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 1.95.11-1
442- Split modulesconf_modify to separate add and remove functions
443- Added support for /etc/modprobe.conf
444
445* Thu Jul 15 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 1.95.10-1
446- Remove coreutils as a dependency to avoid RH21 error.
447
448* Wed Jul 14 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 1.95.09-1
449- DKMS ldtarball now check dbversion and wont load future tarballs
450
451* Mon Jul 12 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 1.95.06-1
452- Buchan Milne's Mandrake prep support patch
453- Buchan Milne's macro additions to template-dkms-mkrpm.spec
454- Buchan Milne's typo corrections in mkrpm
455- Buchan Milne's change to how mkrpm works (mktarball happen in rpm prep)
456
457* Tue Jul 06 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 1.94.16-1
458- Added a dependency on modutils for usage of modinfo
459- Added version sanity check
460- dkms_autoinstaller now check for sanity of version
461- Changed conversion algorithm for /var/dkms to /var/lib/dkms
462- Changed all warning to get to stderr
463- set_module_suffix doesn't use version_checker because its too slow
464
465* Thu Jul 01 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 1.94.06-1
466- Reworked version checking to handle non-digit characters
467- Added coreutils as a dependency
468- Create a tempdir in mkdriverdisk, whoops (thanks Charles Duffy)
469
470* Wed Jun 30 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 1.94.03-1
471- dkms_dbversion belongs in /var/lib/dkms (thanks Thomas Palmieri)
472- Added a version checking subroutine
473- Removed gt2dot4 variable in favor of kernel version checking
474- MAKE is no longer required.  If none specified, it uses a default.
475
476* Thu Jun 24 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 1.94.01-1
477- Buchan Milne's optimization of the arch detection code
478
479* Wed Jun 23 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 1.93.14-1
480- Fixed bug when find finds more than one thing (thanks Paul Howarth)
481- Changed arch detection code to first try RPM which always will get it right (thanks Vladimir Simonov)
482
483* Tue Jun 22 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 1.93.12-1
484- Initial mkrpm is working
485- Added --source-only option to mktarball
486- mkrpm handles --source-only
487- Updated manpage
488
489* Thu Jun 17 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 1.93.04-1
490- Started adding mkrpm
491
492* Wed Jun 16 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 1.93.01-1
493- Fixed dkms_autoinstaller bugs (thanks Vladimir Simonov)
494- Fixed paths in the tarball's install.sh
495
496* Tue Jun 15 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 1.92.33-1
497- kernelver/arch handling for mktarball
498
499* Mon Jun 14 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 1.92.26-1
500- Added support for RH v2 driver disks (they support multiple arches)
501
502* Fri Jun 11 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 1.92.24-1
503- Continue rework of kernelver/arch handling
504- Added PATH fix (thanks Andrey Ulanov <andrey.ulanov@acronis.com>)
505- config_contents should not be local (thanks Andrey Ulanov)
506- If no config in /configs, just use .config (thanks Andrey Ulanov)
507- match now pays attention to --kernelsourcedir
508
509* Wed Jun 09 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 1.92.06-1
510- Started coding new kernelver arch CLI handling
511
512* Mon Jun 07 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 1.92.04-1
513- Added STRIP[] directive.  By default dkms now runs strip -g on all built modules.
514- Fix set_module_suffix in dkms build
515- Changed /etc/dkms_framework.conf to /etc/dkms/framework.conf
516- Added reload into dkms_autoinstaller to limit Mandrake error messages
517- Moved /var/dkms to /var/lib/dkms !!!!!!!!!!!!!!!!
518
519* Fri Jun 04 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 1.92.01-1
520- PRE_BUILD, POST_BUILD, POST_ADD, etc all now allow their scripts to accept parameters
521
522* Thu Jun 03 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 1.91.18-1
523- Added --installtree option to specify different install location besides /lib/modules
524- Took Charles Duffy's advice and removed brackets on error messages
525
526* Wed Jun 02 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 1.91.14-1
527- Added set_module_suffix function
528
529* Tue Jun 01 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 1.91.12-1
530- Added a PRE_BUILD dkms.conf directive.
531
532* Thu May 27 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 1.91.11-1
533- Added build time check for gcc and make if there is a build failure
534- You can now specify --archive to mktarball to control the naming of the made tarball (thanks Vladimir Simonov)
535
536* Wed May 26 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 1.91.07-1
537- Removed rpm dependency on gcc (thanks Vladimir Simonov)
538- Re-implemented dkms status recursively
539
540* Mon May 24 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 1.91.01-1
541- Added local variable declarations to local variables
542
543* Fri May 21 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 1.90.46-1
544- Vladimir Simonov's invoke_command improvements for keeping /tmp clean
545
546* Thu May 20 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 1.90.45-1
547- Pass --targetarch to dkms_mkkerneldoth (thanks to Vladimir Simonov <validimir.simonov@acronis.com>)
548- Moved arch detection into a function called detect_arch
549
550* Wed May 19 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 1.90.44-1
551- Bug fixes on arch support
552- Updated man page
553
554* Tue May 18 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 1.90.32-1
555- Completing arch awareness and transition scripts
556- Created upgrade_dkms_archify.sh to update DKMS trees for arch support
557
558* Mon May 17 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 1.90.06-1
559- Continued adding arch awareness
560
561* Thu May 13 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 1.90.01-1
562- Started adding arch awareness into the DKMS tree
563
564* Fri May 07 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 1.10-1
565- bumped the revision
566
567* Thu May 06 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 1.09.21-1
568- Improved readability of install and uninstall text to the screen
569- You can now specify multiple actions in the same command
570
571* Wed May 05 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 1.09.05-1
572- Added arch_used as part of the filename of a tarball created by mktarball
573- If multiple original modules exist in a single kernel, the one in /updates is preferred
574- Changed multiple original module handling to move out and store all collisions
575
576* Mon May 03 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 1.09.01-1
577- Changed 2.6 prep prepare-all target usage to make modules_prepare
578- Changed 2.6 make command to always use M= as this is fixed in 2.6.6-rc3-bk5
579
580* Fri Apr 30 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 1.09-1
581- If module build exit status is bad, die accordingly
582- 2.6 kernel prep changes (not quite there yet, still broken)
583
584* Thu Apr 29 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 1.08.06-1
585- Added BUILD_EXCLUSIVE_KERNEL & BUILD_EXCLUSIVE_ARCH directives for dkms.conf
586- Tweaked dkms_autoinstaller to more gracefully handle a build failure
587
588* Tue Apr 27 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 1.08.02-1
589- Got rid of make clean warning if not present
590
591* Tue Apr 20 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 1.08.01-1
592- Fixed error message when compiling with --no-prepare-kernel
593
594* Tue Apr 13 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 1.08-1
595- Fixed the format of rhdd-6.1 for Red Hat driver disks
596- Update man page with new white paper info
597
598* Thu Apr 1 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 1.07-1
599- Added work-around to recognize ia32e kernel config instead of x86_64
600- Got rid of start and stop functions which were no-ops anyway
601
602* Thu Mar 25 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 1.06-1
603- Added a fix to keep the driver disk filename from being so long that it breaks
604
605* Mon Feb 09 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 1.05-1
606- Added a fix to resolve RHEL21 depmod errors when an obsolete reference is found
607
608* Thu Jan 15 2004 Gary Lerhaupt <gary_lerhaupt@dell.com> 1.02-1
609- Fixed mkinitrd for ia64
610
611* Tue Dec 09 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 1.00.01-1
612- Fixed /usr/share/doc/dkms-<version> mode to 755
613
614* Mon Dec 01 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 1.00-1
615- Bumped version to 1.00
616
617* Mon Nov 24 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.99.02-1
618- Add -t vfat to loopback mount during creation of driver disk
619
620* Fri Nov 21 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.99.01-1
621- Only edit /etc/modules.conf if remake_initrd is set or if this is the last uninstall and no original module exists
622- Added MODULES_CONF_OBSOLETE_ONLY array directive in dkms.conf
623- Updated man page
624
625* Wed Nov 19 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.46.05-1
626- Fixed a bug in mktarball to limit the tarball name to less than 255 chars
627
628* Tue Nov 18 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.46.04-1
629- Binary only tarballs now contain a copy of dkms.conf so that they can be force loaded
630
631* Mon Nov 17 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.45.03-1
632- Updated man page, recommended rpm naming: <module>-<version>-<rpmversion>dkms.noarch.rpm
633
634* Thu Nov 13 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.45.02-1
635- dkms_autoinstaller is now installed to /etc/init.d for cross-distro happiness
636
637* Fri Nov 07 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.45.01-1
638- Added kernel config prepping for hugemem kernel (thanks Amit Bhutani)
639- modules.conf only now gets changed during install or uninstall of active module
640
641* Mon Nov 03 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.44.05-1
642- Changed MODULES_CONF_ALIAS_TYPE to an array in dkms.conf
643- Added MODULES_CONF_OBSOLETES array in dkms.conf
644- Reworked modules_conf_modify to make use of OBSOLETES logic
645- Updated man page
646
647* Fri Oct 31 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.42.03-1
648- Added --binaries-only option to mktarball
649- Updated man page
650
651* Thu Oct 30 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.41.15-1
652- If depmod or mkinitrd fail during install, automatically go back to built state
653- Warn heavily if mkinitrd fails during uninstall
654
655* Wed Oct 29 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.41.11-1
656- Removed paths from dkms calls in sample.spec
657- Fixed typo of KERNELRELEASE
658
659* Wed Oct 29 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.41.10-1
660- Added Red Hat specific kernel prep to avoid make dep (Thanks Matt Domsch)
661- Added dkms_mkkerneldoth script to support RH kernel prep
662- Moved dkms from /sbin/ to /usr/sbin
663- Fixed typo which caused original_module not to get replaced on uninstall
664- No longer edit Makefiles, just specify KERNELVERSION=$kernel_version on the command line
665- Removed unnecessary depmod during uninstall
666
667* Thu Oct 23 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.40.16-1
668- Fixed mkdriverdisk to copy rhdd-6.1 file into driver disk image
669
670* Wed Oct 22 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.40.15-1
671- Changed expected driver disk filename from module-info to modinfo to work on legacy RH OSs
672
673* Tue Oct 14 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.40.14-1
674- Unset all arrays before using them.  duh.
675
676* Tue Oct 07 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.40.12-1
677- Fixed bug in autoinstaller where it wasn't looking for dkms.conf through source symlink
678
679* Thu Oct 02 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.40.11-1
680- Added --rpm_safe_upgrade flag
681- Updated the man page and sample.spec
682
683* Wed Oct 01 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.40.05-1
684- No longer copy dkms.conf into /var/dkms tree, just go to the source_tree so as to reduce duplication
685- Got rid of --post-add, --post-build, --post-install and --post-remove
686- Replaced the above with DKMS directives POST_ADD, POST_BUILD, POST_INSTALL, POST_REMOVE
687- Fixed ldtarball and mktarball to no longer look for these duplicate files
688- Added a sample.conf for /usr/share/doc
689- Updated dkms_dbversion to 1.01 from 1.00 due to these changes
690- Update the man page
691
692* Tue Sep 30 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.39.17-1
693- Added diff checking in status command in case modules are overwritten by someone else
694- Fixed already built error message in build_module
695- Changed build-arch to noarch
696- Updated sample.spec
697- Change dest_module_location to not get prefaced by /lib/modules/$kernel_version
698- When saving old initrd, copy it instead of moving it in case new one doesn't build
699- Only create source symlink during loadtarball if --force or if it doesn't exist
700- Decide to completely remove during remove_module after doing find with maxdepth of 0 not 1
701
702* Mon Sep 29 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.39.08-1
703- Reworked mktarball format to remove dependence on /var/dkms and /usr/src
704- Reworked ldtarball to match new tarball format
705- Ldtarball now uses --archive=tarball-location flag instead of --config flag
706- Ldtarball can now load any old source tarball as long as it contains a good dkms.conf
707- Added --kernelsourcedir cli option to provide alternate location for kernel source
708- Driver disk files are now looked for in /redhat_driver_disk
709- Added $tmp_location specifiable in /etc/dkms_framework.conf to specify your /tmp dir (default /tmp)
710- Updated man page
711
712* Thu Sep 25 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.38.03-1
713- Fixed tmp_dir_name typo in ldtarball
714- Fixed mkdriverdisk to correctly create kernel/module structure
715- Don't expect a rhdd-6.1 file for RH driver disk, dkms will create it
716- Remove mkdriverdisk warning on non BOOT kernels
717- Moved driver_disk directory location to underneath $module_version
718- mkdriverdisk can now accept multiple kernel versions
719- Updated man page with info about $dkms_tree and $source_tree as dkms.conf variables
720
721* Wed Sep 24 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.37.10-1
722- Don't allow installs of modules onto non-existant kernels
723- Suppressed stderr on some commands
724- Fixed brain-dead bug for REMAKE INITRD
725- During uninstall, dont remake initrd if it was not installed
726- ldtarball into unique tempdir and delete it when finished
727
728* Tue Sep 23 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.37.04-1
729- Changed PATCH to array based system (added PATCH_MATCH array)
730- PATCHes can now be matched against regular expressions, not just substrings
731- Changed MODULES_CONF to array based system
732- CHANGED MAKE to array based system (added MAKE_MATCH array)
733- MAKEs can now be matched against regular expressions, not just substrings.
734- Updated man page
735
736* Mon Sep 22 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.36.10-1
737- Changed autoinstaller bootup priority from 08 to 04
738- Changed invoke_command routine to use mktemp for better security
739- Changed invoke_command in dkms_autoinstaller too
740
741* Fri Sep 19 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.36.05-1
742- Continued bug testing and fixing new features
743
744* Wed Sep 17 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.36.02-1
745- Got rid of MODULE_NAME: replaced with BUILT_MODULE_NAME, DEST_MODULE_NAME arrays
746- Got rid of LOCATION: replaced with BUILT_MODULE_LOCATION, DEST_MODULE_LOCATION arrays
747- Update man page
748
749* Tue Sep 16 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.36.01-1
750- Fixed the setting of the gt2dot4 variable
751
752* Wed Sep 10 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.35.02-1
753- Added PACKAGE_NAME, PACKAGE_VERSION requirements to dkms.conf for gmodconfig use
754- Fixed creation of /var/dkms before cp of dkms_dbversion in install.sh
755
756* Mon Sep 08 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.34.10-1
757- Continued adding autoinstall stuff
758- Updated man page
759
760* Fri Sep 05 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.34.01-1
761- Added dkms_autoinstaller service (builds module on boot if AUTOINSTALL="yes" in dkms.conf)
762- DKMS usage no longer sent to std_err
763- Added --no-prepare-kernel cli option
764
765* Fri Aug 08 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.33.02-1
766- Fixed quote bugs in match (Reported by: John Hull <john_hull@dell.com>)
767- Added Fred Treasure to the AUTHORS list
768- Added dkms_dbversion file to DKMS tree to track architecture of dkms db layout
769
770* Thu Jul 03 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.32.04-1
771- Added mkinitrd support for SuSE (etc_sysconfig_kernel_modify)
772- Added generic make command for kernel >2.4 (make -C <path-to-kernel-source> SUBDIRS=<build dir> modules)
773- Fixed kernel prepare to do Red Hat/Generic by default
774- Only do make dep if < 2.5
775
776* Tue Jun 03 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.31.04-1
777- Modified the Red Hat prep routine to be smaller and more robust (including summit support)
778- Added sample.spec to the sources for /usr/share/doc
779- If you save a .config before make mrproper, return it right afterwards
780- Updated the man page
781
782* Fri May 30 2003 Gary Lerhaupt <gary_lerahupt@dell.com> 0.30.17-1
783- Added a remake_initrd function to keep SuSE from doing wrong things
784- If you know the correct right steps for rebuilding SuSE initrds, please let me know!
785- Updated man page
786
787* Thu May 29 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.30.15-1
788- Added a native readlink function to make sure it exists
789- Added a mkdir -p to $location to make sure it exists
790- Added --directive
791
792* Wed May 28 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.30.05-1
793- Added kernel preparation support for SLES/United Linux (Many thanks to: Fred Treasure <fwtreas@us.ibm.com>)
794
795* Tue May 20 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.29.09-1
796- On remove, to remove all kernel versions you must now specify --all
797- Added grep, cpio and gzip to the Requires of the RPM
798- Added cleaning kernel tree (make mrproper) after last build completes
799- Before prepare kernel, the current .config is stored in memory to be restored later
800- Added a verbose warning to the status command to remind people it only shows DKMS modules
801- Added /etc/dkms_framwork.conf for controlling source_tree and dkms_tree
802- Added the undocumented --dkmstree and --sourcetree options for cli control of these vars
803- When looking for original modules, dkms now employs the find command to expand search past $location
804- Updated man page
805
806* Wed May 14 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.28.05-1
807- Fixed a typo in the man page.
808
809* Mon May 05 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.28.04-1
810- Fixed ldtarball/mktarball to obey source_tree & dkms_tree (Reported By: Jordan Hargrave <jordan_hargrave@dell.com>)
811- Added DKMS mailing list to man page
812
813* Tue Apr 29 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.27.05-1
814- Changed NEEDED_FOR_BOOT to REMAKE_INITRD as this makes more sense
815- Redid handling of modifying modules.conf
816- Added MODULE_CONF_ALIAS_TYPE to specs
817
818* Mon Apr 28 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.26.12-1
819- Started adding ldtarball support
820- added the --force option
821- Update man page
822
823* Thu Apr 24 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.26.05-1
824- Started adding mktarball support
825- Fixed up the spec file to use the tarball
826
827* Tue Mar 25 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.25.14-1
828- Continued integrating mkdriverdisk
829- Updated man page
830
831* Mon Mar 24 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.25.03-1
832- Added renaming ability to modules after builds (MODULE_NAME="beforename.o:aftername.o")
833- Started adding mkdriverdisk support
834- Added distro parameter for use with mkdriverdisk
835- Now using readlink to determine symlink pointing location
836- Added redhat BOOT config to default location of config files
837- Fixed a bug in read_conf that caused the wrong make subdirective to be used
838- Remove root requirement for build action
839
840* Wed Mar 19 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.23.19-1
841- Fixed archiving of original modules (Reported by: Kris Jordan <kris@sagebrushnetworks.com>)
842
843* Wed Mar 12 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.23.18-1
844- Added kernel specific patching ability
845
846* Mon Mar 10 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.23.16-1
847- Removed the sourcing in of /etc/init.d/functions as it was unused anyway
848- Implemented generic patching support
849- Updated man page
850- Fixed timing of the creation of DKMS built infrastructure in case of failure
851
852* Fri Mar 07 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.23.11-1
853- Builds now occur in /var/dkms/$module/$module_version/build and not in /usr/src
854- Fixed the logging of the kernel_config
855
856* Thu Mar 06 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.23.01-1
857- Started adding patch support
858- Redid reading implementation of modules_conf entries in dkms.conf (now supports more than 5)
859- Updated man page
860
861* Tue Mar 04 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.22.06-1
862- Module names are not just assumed to end in .o any longer (you must specify full module name)
863- At exit status to invoke_command when bad exit status is returned
864
865* Fri Feb 28 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.22.03-1
866- Changed the way variables are handled in dkms.conf, %kernelver to $kernelver
867
868* Mon Feb 24 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.22.02-1
869- Fixed a typo in install
870
871* Tue Feb 11 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.22.01-1
872- Fixed bug in remove which made it too greedy
873- Updated match code
874
875* Mon Feb 10 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.21.16-1
876- Added uninstall action
877- Updated man page
878
879* Fri Feb 07 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.20.06-1
880- Added --config option to specify where alternate .config location exists
881- Updated the man page to indicate the new option.
882- Updated the spec to allow for software versioning printout
883- Added -V which prints out the current dkms version and exits
884
885* Thu Jan 09 2003 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.19.01-1
886- Added GPL stuffs
887
888* Mon Dec 09 2002 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.18.04-1
889- Added support for multiple modules within the same install
890- Added postadd and fixed up the man page
891
892* Fri Dec 06 2002 Gary Lerhaupt <gary_lerhaupt@dell.com> 0.17.01-1
893- Cleaned up the spec file.
894
895* Fri Nov 22 2002 Gary Lerhaupt <gary_lerhaupt@dell.com>
896- Fixed a bug in finding MAKE subdirectives
897
898* Thu Nov 21 2002 Gary Lerhaupt <gary_lerhaupt@dell.com>
899- Fixed make.log path error when module make fails
900- Fixed invoke_command to work under RH8.0
901- DKMS now edits kernel makefile to get around RH8.0 problems
902
903* Wed Nov 20 2002 Gary Lerhaupt <gary_lerhaupt@dell.com>
904- Reworked the implementation of -q, --quiet
905
906* Tue Nov 19 2002 Gary Lerhaupt <gary_lerhaupt@dell.com>
907- Version 0.16: added man page
908
909* Mon Nov 18 2002 Gary Lerhaupt <gary_lerhaupt@dell.com>
910- Version 0.13: added match option
911- Version 0.14: dkms is no longer a SysV service
912- Added depmod after install and remove
913- Version 0.15: added MODULES_CONF directives in dkms.conf
914
915* Fri Nov 15 2002 Gary Lerhaupt <gary_lerhaupt@dell.com>
916- Version 0.12: added the -q (quiet) option
917
918* Thu Nov 14 2002 Gary Lerhaupt <gary_lerhaupt@dell.com>
919- Version 0.11: began coding the status function
920
921* Wed Nov 13 2002 Gary Lerhaupt <gary_lerhaupt@dell.com>
922- Changed the name to DKMS
923- Moved original_module to its own separate directory structure
924- Removal now does a complete clean up
925
926* Mon Nov 11 2002 Gary Lerhaupt <gary_lerhaupt@dell.com>
927- Split build into build and install
928- dkds.conf is now sourced in
929- added kernelver variable to dkds.conf
930
931* Fri Nov 8 2002 Gary Lerhaupt <gary_lerhaupt@dell.com>
932- Added date to make.log
933- Created the prepare_kernel function
934
935* Thu Nov 7 2002 Gary Lerhaupt <gary_lerhaupt@dell.com>
936- Barebones implementation complete
937
938* Wed Oct 30 2002 Gary Lerhaupt <gary_lerhaupt@dell.com>
939- Initial coding
Note: See TracBrowser for help on using the repository browser.