dkms-vl.spec 38 KB

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