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

Revision 521, 38.2 KB checked in by daisuke, 14 years ago (diff)

import VineSeed package specs

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