kudzu-vl.spec 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791
  1. Name: kudzu
  2. Version: 1.2.86
  3. Release: 3%{?_dist_release}
  4. License: GPL
  5. Summary: The Vine Linux hardware probing tool.
  6. Summary(ja): Vine Linux ハードウエア検出ツール
  7. Group: Applications/System
  8. Source: kudzu-%{version}.tar.bz2
  9. Patch10: kudzu-1.2.85-libresolv.patch
  10. Patch20: kudzu-1.2.86-new-sysfs.patch
  11. Patch100: kudzu-1.2.86-vine.patch
  12. BuildRoot: %{_tmppath}/%{name}-root
  13. BuildRequires: pciutils-devel >= 2.2, python-devel, python, newt-devel, gettext
  14. BuildRequires: pciutils-static
  15. BuildRequires: zlib-devel
  16. Obsoletes: rhs-hwdiag setconsole
  17. Requires(post): chkconfig
  18. Requires(preun): chkconfig
  19. Requires: pam >= 0.74-17, hwdata
  20. Conflicts: netconfig < 0.8.18
  21. Conflicts: Xconfigurator <= 4.9
  22. Conflicts: mouseconfig < 4.18
  23. Conflicts: initscripts < 8.40
  24. Requires: hwdata >= 0.146.1
  25. %description
  26. Kudzu is a hardware probing tool run at system boot time to determine
  27. what hardware has been added or removed from the system.
  28. %description -l ja
  29. Kudzu は,システムに追加・削除したハードウェアをブート時に検出する
  30. ツールです.
  31. %package devel
  32. Summary: Development files needed for hardware probing using kudzu.
  33. Summary(ja): ハードウェア検出のための開発ライブラリ
  34. Group: Development/Libraries
  35. Requires: pciutils-devel
  36. %description devel
  37. The kudzu-devel package contains the libkudzu library, which is used
  38. for hardware probing and configuration.
  39. %description -l ja devel
  40. kudzu-devel パッケージは libkudzu と libmodules を含んでいます.
  41. いずれもハードウェアの検出や設定に使われるライブラリです.
  42. %prep
  43. %setup -q
  44. %patch10 -p1 -b .resolv
  45. %patch20 -p1 -b .new-sysfs
  46. %patch100 -p1 -b .debug
  47. # hack: do not start kudzu on s390/s390x on bootup
  48. %ifarch s390 s390x
  49. perl -pi -e "s/345/-/g" kudzu.init
  50. %endif
  51. sed -i -e 's/python2/python/g' Makefile
  52. %build
  53. ln -s `pwd` kudzu
  54. make RPM_OPT_FLAGS="%{optflags} -I." all kudzu
  55. %install
  56. rm -rf $RPM_BUILD_ROOT
  57. make install install-lib DESTDIR=$RPM_BUILD_ROOT libdir=$RPM_BUILD_ROOT/%{_libdir}
  58. %clean
  59. rm -rf $RPM_BUILD_ROOT
  60. %triggerun -- kudzu < 1.2.85-1
  61. /sbin/chkconfig --del kudzu
  62. %files
  63. %defattr(-,root,root)
  64. %doc README
  65. %{_libdir}/python*/site-packages/*
  66. %Files devel
  67. %defattr(-,root,root)
  68. %{_libdir}/libkudzu.a
  69. %{_includedir}/kudzu
  70. %changelog
  71. * Sun May 12 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.86-3
  72. - add patch to fix segv on hw probe.
  73. * Sat Jan 07 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.2.86-2
  74. - remove Requires: hal
  75. * Tue May 24 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.86-1
  76. - update to 1.2.86
  77. - add patch20 to work with new sysfs
  78. * Tue Apr 19 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.2.85-5
  79. - rebuild with rpm-4.8.1
  80. * Sun Feb 07 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.2.85-4
  81. - add BuildRequires: pciutils-static, zlib-devel
  82. * Wed Feb 03 2010 Shu KONNO <owa@bg.wakwak.com> 1.2.85-3
  83. - rebuilt with python-2.6.4
  84. * Thu Feb 26 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.85-2
  85. - add -lresolv for _kudzumodule.so
  86. * Mon Aug 25 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.85-1
  87. - new upstream release
  88. - remove kudzu binary and init scripts
  89. * Tue Oct 31 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.95.15-0vl7
  90. - add remove redhatify string.
  91. * Sat Oct 21 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.95.15-0vl6
  92. - add %%triggerun script to remove obsolete fstab entry (<BTS:256>)
  93. * Sat Oct 21 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.95.15-0vl5
  94. - add Patch30 not to configure mice on boot.
  95. * Mon Sep 18 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.95.15-0vl4
  96. - fix kanjicode of spec file (<BTS:197>)
  97. * Sun Sep 17 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.95.15-0vl3
  98. - add Patch20 to use legacy mouseconfig in fix-mouse-psaux script.
  99. * Sat Aug 19 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.95.15-0vl2
  100. - add Patch10
  101. - do not use dietlibc
  102. * Sat Aug 05 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1.95.15-0vl1
  103. - new upstream source
  104. - merge changes with RHEL4 version of kudzu
  105. * Sat Jun 24 2006 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 0.99.60-1vl12
  106. - rebuild
  107. * Sat Feb 18 2006 Shu KONNO <owa@bg.wakwak.com> 0.99.60-1vl11
  108. - added kudzu-0.99.60-pci.patch
  109. - replaced lib to %%{_lib} in Makefile
  110. - rebuilt for x86_64 architecture
  111. * Sun Apr 03 2005 Shu KONNO <owa@bg.wakwak.com> 0.99.60-1vl10
  112. - rebuild with python-2.4.1-0vl1
  113. * Fri Dec 17 2004 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 0.99.60-1vl9
  114. - added Patch14 (for problem regarding KUDZU_ARGS handling)
  115. * Tue Jul 27 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 0.99.60-1vl8
  116. - do not start kudzu if /etc/sysconfig/kudzu does not exist or
  117. "KUDZU=off" is defined in /etc/sysconfig/kudzu.
  118. * Tue Jun 22 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 0.99.60-1vl7
  119. - don't remove mouse symlink for all architecture.
  120. * Thu Jun 17 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 0.99.60-1vl6
  121. - add Patch11 to add iocharset=euc-jp in updfstab.
  122. * Tue Jun 8 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 0.99.60-1vl5
  123. - add patch10 to support Xorg X11 and to run in safe mode
  124. - update ja.po
  125. * Sat Apr 17 2004 Shu KONNO <owa@bg.wakwak.com> 0.99.60-1vl4
  126. - rebuild with python-2.3.3-0vl1
  127. * Sat Apr 10 2004 Shu KONNO <owa@bg.wakwak.com> 0.99.60-1vl3.1
  128. - rebuild with python-2.3.3-0vl0.3 (for TestPkg)
  129. * Wed Jan 29 2003 Tomoya TAKA <taka@vinelinux.org> 0.99.60-1vl3
  130. - rebuild against python-2.2
  131. * Mon Dec 16 2002 Tomoya TAKA <taka@vinelinux.org> 0.99.60-1vl2
  132. - ddcprobe requires {asm,sys}/vm86.h, which is only available for %%ix86 archs
  133. - the spec was in Shift-JIS. fixed.
  134. * Fri Nov 15 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 0.99.60-1vl1
  135. - user hwdata package for pcitable database.
  136. - merged with upstream CVS.
  137. - firewire controller support (#65386, <hjl@gnu.org>)
  138. - minimal firewire bus probing
  139. - fix serial console support
  140. - fix assorted brokenness in the DDC probing
  141. - collapsed jaz/zip entries into consistent /mnt/jaz, /mnt/zip mount points
  142. - added CAMERA search string for updfstab (Minolta S304, at least)
  143. - don't initialize full device lists on all probes (<ewt@redhat.com>)
  144. - more modules.pcimap blacklisting (#66652)
  145. - fix uninitialized variable (#63664)
  146. - fix segfault in pciserial code
  147. - set buffering for reading /proc/partitions (#61617, #56815)
  148. - add support for USB2 (ehci-hcd)
  149. - add device entries for *all* usb interfaces, not just the first (#52758)
  150. - fix various ethernet device removal bugs (#61169)
  151. - require hwdata, tweak paths accordingly
  152. - rename config file to updfstab.conf
  153. updated updfstab to use a config file
  154. - don't print out VBE videocards when asked for DDC monitors, and vice
  155. versa
  156. * Mon Oct 07 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 0.99.42-1vl13
  157. - modify pcitable to support newer device.
  158. * Fri Jun 7 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 0.99.42-1vl12
  159. - modify pcitable for CyberBladeXPAi1 to use its own Cards entry.
  160. * Tue Jun 4 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 0.99.42-1vl11
  161. - update pcitable. (add 845G support: not tested)
  162. * Sun Jun 2 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 0.99.42-1vl10
  163. - update pcitable.
  164. * Tue Mar 26 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 0.99.42-1vl9
  165. - update pcitable for S3 SuperSavage series cards.
  166. * Sun Mar 17 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 0.99.42-1vl8
  167. - update pcitable
  168. OLD DECchip21?4? cards needs tulip_old (not tulip).
  169. * Sun Mar 17 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 0.99.42-1vl7
  170. - don't make symlink for /dev/mouse when we detect usb mouse.
  171. * Sat Mar 16 2002 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 0.99.42-1vl6
  172. - modified Patch20 to disable removing /dev/mouse symlink on ppc
  173. * Sun Feb 24 2002 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 0.99.42-1vl5
  174. - added Patch20 to disable video card probe on ppc
  175. * Mon Feb 18 2002 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 0.99.42-1vl4
  176. - Oops the spec was in Shift-JIS. Fixed.
  177. * Thu Jan 10 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 0.99.42-1vl3
  178. - more pcitable
  179. * Mon Jan 07 2002 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 0.99.42-1vl2
  180. - fixed spec typo
  181. - ee100pro-diag requires sys/io.h, which is only available for %%ix86 archs
  182. * Sun Jan 6 2002 Daisuke SUZUKI <daisuke@linux.or.jp> 0.99.42-1vl1
  183. - new upstream version 0.99.42-1
  184. - build for Vine Linux
  185. * Fri Jan 4 2002 Bill Nottingham <notting@redhat.com>
  186. - fix LRMI to work with pthreads
  187. * Thu Jan 3 2002 Bill Nottingham <notting@redhat.com>
  188. - split vbe-probed memory into its own video device
  189. - fix a segfault in pci.c on bad pcitable data
  190. * Thu Oct 11 2001 Bill Nottingham <notting@redhat.com>
  191. - go to the head of the tree. mmm, python 2.2
  192. * Tue Sep 25 2001 Bill Nottingham <notting@redhat.com>
  193. - dink with eepro100 eeproms
  194. * Sat Sep 8 2001 Bill Nottingham <notting@redhat.com>
  195. - add G550 pci id
  196. * Thu Sep 6 2001 Bill Nottingham <notting@redhat.com>
  197. - fix enabling of bcm5820 in boot environment
  198. * Tue Aug 28 2001 Bill Nottingham <notting@redhat.com>
  199. - fix po file headers (#52701)
  200. * Fri Aug 24 2001 Bill Nottingham <notting@redhat.com>
  201. - only refer to things in the cards DB
  202. - we configure CLASS_OTHER now too (#51707)
  203. * Fri Aug 24 2001 Mike A. Harris <mharris@redhat.com>
  204. - Updated ATI video hardware PCI ID's and sync'd with XFree86's ID's
  205. * Wed Aug 22 2001 Mike A. Harris <mharris@redhat.com>
  206. - Fixed Radeon QD PCI ID, and a few others.
  207. - Fixed broken pt_BR.po file so kudzu will actually build.
  208. * Wed Aug 22 2001 Bill Nottingham <notting@redhat.com>
  209. - move PS/2 probe to PROBE_SAFE (fixes #52040, indirectly...)
  210. * Wed Aug 15 2001 Bill Nottingham <notting@redhat.com>
  211. - fix checking of module aliases during device unconfiguration (#51100)
  212. * Mon Aug 13 2001 Bill Nottingham <notting@redhat.com>
  213. - add another megaraid variant to the pcitable
  214. - add some configuration for bcm5820 cards (#51707)
  215. * Fri Aug 10 2001 Bill Nottingham <notting@redhat.com>
  216. - pcitable & translation updates (including fixing #51479)
  217. * Mon Aug 6 2001 Bill Nottingham <notting@redhat.com>
  218. - enumerate cardbus bridges before the rest of the PCI bus scan
  219. (fixes #35136, #41972, #49842, possibly others)
  220. * Wed Aug 1 2001 Bill Nottingham <notting@redhat.com>
  221. - don't override generic pcitable entries with subvendor/subdevice
  222. specific entries from modules.pcimap unless it uses a different module
  223. (#46454, #50604)
  224. - don't try to configure X if they don't appear to have it installed
  225. (#50088)
  226. * Thu Jul 26 2001 Bill Nottingham <notting@redhat.com>
  227. - fix changes from yesterday
  228. * Wed Jul 25 2001 Bill Nottingham <notting@redhat.com>
  229. - shrink parts of libkudzu_loader.a
  230. * Tue Jul 24 2001 Bill Nottingham <notting@redhat.com>
  231. - put scsi.o in libkudzu_loader.a
  232. * Mon Jul 23 2001 Bill Nottingham <notting@redhat.com>
  233. - USB floppy probing, via scsi.c ugliness
  234. * Mon Jul 23 2001 Florian La Roche <Florian.LaRoche@redhat.de>
  235. - some some more gdth entries
  236. * Thu Jul 19 2001 Bill Nottingham <notting@redhat.com>
  237. - floppy probing!
  238. * Mon Jul 9 2001 Bill Nottingham <notting@redhat.com>
  239. - return fb device for VESA fb devices
  240. * Tue May 8 2001 Bill Nottingham <notting@redhat.com>
  241. - fix updfstab erroring out on floppies, other devices (#39623)
  242. * Mon May 7 2001 Bill Nottingham <notting@redhat.com>
  243. - add a couple of e1000 ids (#39391)
  244. - use dynamic buffer size for /proc/scsi/scsi (#37936)
  245. * Thu May 2 2001 Bill Nottingham <notting@redhat.com>
  246. - handle CLASS_RAID like CLASS_SCSI
  247. - put man pages in man8, not man1
  248. - don't map all i960 stuff to megaraid; use explicit list
  249. * Tue May 01 2001 Erik Troan <ewt@redhat.com>
  250. - added a man page for updfstab
  251. - updfstab added devices even when the full disk device was in fstab already
  252. * Thu Apr 26 2001 Florian La Roche <Florian.LaRoche@redhat.de>
  253. - add hack to not start kudzu on s390/s390x on bootup
  254. * Mon Apr 2 2001 Preston Brown <pbrown@redhat.com>
  255. - mark camera mount types w/a default partition.
  256. * Fri Mar 30 2001 Bill Nottingham <notting@redhat.com>
  257. - fix a couple of random only-on-occasion memory scribbles in pci.c
  258. * Thu Mar 29 2001 Bill Nottingham <notting@redhat.com>
  259. - if we're running for the first time, don't configure additional mice
  260. if some existing mouse is configured
  261. * Wed Mar 28 2001 Bill Nottingham <notting@redhat.com>
  262. - more PS/2 probe tweaks to work with yet more strange KVMs
  263. - random pcitable tweaks (G450, etc.)
  264. * Mon Mar 26 2001 Bill Nottingham <notting@redhat.com>
  265. - don't segfault if they don't have a PS/2 port
  266. * Thu Mar 22 2001 Bill Nottingham <notting@redhat.com>
  267. - cosmetic pcitable tweaks
  268. * Wed Mar 21 2001 Bill Nottingham <notting@redhat.com>
  269. - don't map a particular Compaq i960 thing to megaraid (#32082)
  270. * Tue Mar 20 2001 Erik Troan <ewt@redhat.com>
  271. - set detached for usb devices that aren't plugged in
  272. - don't put detached dfevices in the fstab
  273. * Mon Mar 19 2001 Bill Nottingham <notting@redhat.com>
  274. - only probe once in updfstab
  275. - fix aumix lines, again (#32163)
  276. - fix it so we don't reconfigure configured USB mice (#32236)
  277. * Fri Mar 16 2001 Erik Troan <ewt@redhat.com>
  278. - check for Y-E (Vaio) floppies
  279. * Fri Mar 16 2001 Erik Troan <ewt@redhat.com>
  280. - updfstab ignores partition tables that look invalid
  281. * Thu Mar 14 2001 Bill Nottingham <notting@redhat.com>
  282. - fix ps2 probe
  283. - fix long latent bug in python module
  284. - add new it/de/fr/es .po files
  285. * Wed Mar 13 2001 Bill Nottingham <notting@redhat.com>
  286. - add some documentation on the hwconf file
  287. * Tue Mar 12 2001 Bill Nottingham <notting@redhat.com>
  288. - new and improved PS/2 probe (<bcrl@redhat.com>)
  289. * Mon Mar 12 2001 Bill Nottingham <notting@redhat.com>
  290. - fix two segfaults, one in the isapnp code, one in the ddc code
  291. * Thu Mar 8 2001 Bill Nottingham <notting@redhat.com>
  292. - some pcitable updates
  293. - update to updfstab (pam_console support)
  294. - don't try and load IDE modules if we don't need to
  295. * Wed Mar 7 2001 Bill Nottingham <notting@redhat.com>
  296. - clean up mouse handling (#30939, #21483, #18862, others)
  297. - ignore non-native ISAPnP stuff for now (#30805)
  298. * Thu Mar 1 2001 Bill Nottingham <notting@redhat.com>
  299. - fix a segfault and other weirdness in the SCSI probe (#30168)
  300. * Wed Feb 28 2001 Bill Nottingham <notting@redhat.com>
  301. - fix a SCSI order bug
  302. * Tue Feb 27 2001 Preston Brown <pbrown@redhat.com>
  303. - identify 16meg G450
  304. * Tue Feb 27 2001 Bill Nottingham <notting@redhat.com>
  305. - enable the ISAPnP stuff (part of #29450)
  306. - fix a segfault
  307. * Mon Feb 26 2001 Bill Nottingham <notting@redhat.com>
  308. - merge in some stuff in pcitable that got lost
  309. * Sun Feb 25 2001 Bill Nottingham <notting@redhat.com>
  310. - don't return CLASS_NETWORK for everything in PCI_BASE_CLASS_NETWORK
  311. (like, say, ISDN cards) (#29308)
  312. * Fri Feb 23 2001 Bill Nottingham <notting@redhat.com>
  313. - only probe the PCI bus in module_upgrade (#29092, sort of)
  314. - random cleanups, plug some memory leaks
  315. - don't give SCSI device names to non-SCSI devices
  316. * Fri Feb 23 2001 Preston Brown <pbrown@redhat.com>
  317. - don't make duplicate fstab entries for devices that have the same dev entry but match different patterns.
  318. * Thu Feb 22 2001 Bill Nottingham <notting@redhat.com>
  319. - write aliases for multiple usb controllers
  320. * Wed Feb 21 2001 Bill Nottingham <notting@redhat.com>
  321. - add a new i810_audio id
  322. - read modules.pcimap from the normal directory if we're running the BOOT
  323. kernel
  324. * Tue Feb 20 2001 Bill Nottingham <notting@redhat.com>
  325. - write lines to modules.conf to save/restore sound settings (#28504)
  326. - fix module_upgrade for eth0 aliases
  327. * Tue Feb 20 2001 Preston Brown <pbrown@redhat.com>
  328. - set up agpgart on i860s.
  329. - improvements and fixes to updfstab, including mounting IOMEGA devices in the format they prefer.
  330. * Fri Feb 16 2001 Matt Wilson <msw@redhat.com>
  331. - set usbDeviceList to NULL in freeUsbDevices
  332. * Thu Feb 15 2001 Bill Nottingham <notting@redhat.com>
  333. - fix USB multiple probe segfault
  334. * Wed Feb 14 2001 Bill Nottingham <notting@redhat.com>
  335. - fix updfstab up some
  336. * Wed Feb 14 2001 Preston Brown <pbrown@redhat.com>
  337. - final translation update
  338. * Tue Feb 13 2001 Preston Brown <pbrown@redhat.com>
  339. - sync pcitable w/Xconfigurator.
  340. * Tue Feb 13 2001 Bill Nottingham <notting@redhat.com>
  341. - fix configuration of PCI modems (#27414)
  342. * Mon Feb 12 2001 Bill Nottingham <notting@redhat.com>
  343. - fix python module
  344. * Sun Feb 11 2001 Bill Nottingham <notting@redhat.com>
  345. - expand the USB probing; return all sorts of devices, and more sane
  346. descriptions
  347. * Sun Feb 11 2001 Erik Troan <ewt@redhat.com>
  348. - added sony devices to updfstab
  349. - look through /proc/partitions for actual partition to mount
  350. - made symlinks optional, and only create them for /dev/cdrom
  351. * Fri Feb 9 2001 Bill Nottingham <notting@redhat.com>
  352. - don't bother showing a dialog for hardware we aren't going to do anything
  353. with
  354. - don't configure CD-ROMs
  355. * Thu Feb 08 2001 Preston Brown <pbrown@redhat.com>
  356. - update pcitable with new XFree86 stuff
  357. * Thu Feb 08 2001 Erik Troan <ewt@redhat.com>
  358. - added updfstab
  359. - don't report ide devices bound to ide-scsi -- they're really scsi devices
  360. * Wed Feb 7 2001 Matt Wilson <msw@redhat.com>
  361. - added modules.o to LOADEROBJS in Makefile
  362. - remove modules.o from LOADEROBJS and add stub functions in kudzu.c
  363. * Wed Feb 7 2001 Bill Nottingham <notting@redhat.com>
  364. - add in modules.conf upgrader
  365. - describe the types of hardware that's added or removed in the dialog
  366. * Mon Feb 5 2001 Bill Nottingham <notting@redhat.com>
  367. - map disabled PCI devices to 'disabled', not to 'ignore'
  368. * Thu Feb 1 2001 Bill Nottingham <notting@redhat.com>
  369. - fix calling of VESA BIOS stuff (#24176)
  370. * Wed Jan 31 2001 Bill Nottingham <notting@redhat.com>
  371. - fix detection of disabled video boards
  372. * Fri Jan 26 2001 Trond Eivind Glomsr藷?<teg@redhat.com>
  373. - fix bug in USB detection
  374. * Thu Jan 25 2001 Bill Nottingham <notting@redhat.com>
  375. - fix some broken pcitable entries
  376. - add BUS_USB to python module
  377. * Wed Jan 24 2001 Bill Nottingham <notting@redhat.com>
  378. - fix it so we actually pay attention to which button they push (#24858)
  379. * Wed Jan 24 2001 Preston Brown <pbrown@redhat.com>
  380. - final i18n update before beta
  381. * Sun Jan 21 2001 Bill Nottingham <notting@redhat.com>
  382. - change i18n mechanism
  383. * Sat Jan 20 2001 Bill Nottingham <notting@redhat.com>
  384. - add hack for 'configure/unconfigure all' in interactive mode
  385. * Thu Jan 18 2001 Erik Troan <ewt@redhat.com>
  386. - pcitable update for natsemi module
  387. * Wed Jan 17 2001 Bill Nottingham <notting@redhat.com>
  388. - pcitable updates
  389. * Tue Jan 9 2001 Bill Nottingham <notting@redhat.com>
  390. - don't write modules.conf aliases for cardbus network stuff
  391. * Thu Dec 28 2000 Bill Nottingham <notting@redhat.com>
  392. - fix continual redetection of SOCKET devices
  393. * Fri Dec 22 2000 Bill Nottingham <notting@redhat.com>
  394. - read modules.pcimap as well
  395. - pcitable updates
  396. * Tue Dec 19 2000 Bill Nottingham <notting@redhat.com>
  397. - map yenta_socket driver for cardbus bridges (CLASS_SOCKET)
  398. * Wed Dec 13 2000 Bill Nottingham <notting@redhat.com>
  399. - work around a possible glibc bug
  400. - fix up the USB device stuff
  401. * Tue Dec 12 2000 Bill Nottingham <notting@redhat.com>
  402. - fix segfault caused by yesterday's changes
  403. - stub load/removeModule for the loader
  404. * Mon Dec 11 2000 Bill Nottingham <notting@redhat.com>
  405. - libmodules gets integrated into libkudzu
  406. - load necessary modules before probing
  407. * Fri Dec 8 2000 Bill Nottingham <notting@redhat.com>
  408. - a WORM device is a CD-ROM (#19250)
  409. * Tue Dec 05 2000 Michael Fulbright <msf@redhat.com>
  410. - fix for IDE CDROM probing segfault
  411. * Mon Nov 20 2000 Erik Troan <ewt@redhat.com>
  412. - fix for scd devices > scd9
  413. * Sat Nov 18 2000 Bill Nottingham <notting@redhat.com>
  414. - don't use files in /tmp to determine whether to switch runlevels
  415. * Sat Oct 21 2000 Matt Wilson <msw@redhat.com>
  416. - install kudzu.py into /usr/lib/python1.5/site-packages, not
  417. /usr/lib/python1.5/
  418. - added backwards compatibility for old python interface
  419. - fixed crashes in python C binding
  420. * Wed Oct 18 2000 Bill Nottingham <notting@redhat.com>
  421. - pcitable updates
  422. - don't 'configure' agpgart on alpha
  423. - don't configure usb controllers if there are no modules
  424. * Wed Oct 04 2000 Trond Eivind Glomsr藷?<teg@redhat.com>
  425. - segfault fix
  426. * Tue Oct 03 2000 Trond Eivind Glomsr藷?<teg@redhat.com>
  427. - some fixes to avoid segfaulting with serial devices
  428. in kudzu if no PnP-description is available
  429. - minor fix to the makefile
  430. * Fri Sep 29 2000 Trond Eivind Glomsr藷?<teg@redhat.com>
  431. - rewritten USB support
  432. - new python module (formerly kudzu2), giving access to
  433. more information
  434. * Wed Sep 13 2000 Trond Eivind Glomsr藷?<teg@redhat.com>
  435. - include more info in the kudzu2 python module
  436. * Fri Sep 08 2000 Trond Eivind Glomsr藷?<teg@redhat.com>
  437. - new kudzu2 python module which gives access to all
  438. of the information available on the device in the C
  439. library. Hopefully will be the main module soonish.
  440. * Wed Aug 30 2000 Bill Nottingham <notting@redhat.com>
  441. - pcitable tweaks
  442. * Thu Aug 24 2000 Erik Troan <ewt@redhat.com>
  443. - updated it/es translations
  444. * Thu Aug 24 2000 Bill Nottingham <notting@redhat.com>
  445. - fix segfault when passed '-f <some file that doesn't exist>'
  446. * Wed Aug 23 2000 Bill Nottingham <notting@redhat.com>
  447. - fix some ATI Mobility mappings
  448. - use ftw() to look for modules; it's the only sane way to handle
  449. 2.4 kernels
  450. * Sat Aug 19 2000 Bill Nottingham <notting@redhat.com>
  451. - fix network device ordering
  452. * Tue Aug 15 2000 Bill Nottingham <notting@redhat.com>
  453. - disabled things also have IRQ 255. Neat.
  454. * Wed Aug 9 2000 Bill Nottingham <notting@redhat.com>
  455. - actually include translation files. Duh.
  456. * Wed Aug 9 2000 Tim Waugh <twaugh@redhat.com>
  457. - avoid overflowing the monitor id buffer (#15795)
  458. * Tue Aug 8 2000 Erik Troan <ewt@redhat.com>
  459. - look for PCMCIA IDE devices (they aren't in /proc)
  460. * Mon Aug 7 2000 Bill Nottingham <notting@redhat.com>
  461. - handle probing for excessive numbers of SCSI devices
  462. - tweak IRQ 0 ignoring slightly
  463. * Sun Aug 6 2000 Bill Nottingham <notting@redhat.com>
  464. - ignore devices on IRQ 0
  465. * Fri Aug 4 2000 Bill Nottingham <notting@redhat.com>
  466. - fix subdevice sorting in pci device table (#14503)
  467. * Fri Aug 4 2000 Florian La Roche <Florian.LaRoche@redhat.com>
  468. - make some functions in pci.c "static"
  469. * Wed Aug 2 2000 Bill Nottingham <notting@redhat.com>
  470. - assorted pcitable and translation fixes
  471. * Fri Jul 28 2000 Bill Nottingham <notting@redhat.com>
  472. - fixes so translations get activated
  473. * Wed Jul 26 2000 Bill Nottingham <notting@redhat.com>
  474. - pcitable fixes (Neomagic, Matrox)
  475. * Wed Jul 26 2000 Matt Wilson <msw@redhat.com>
  476. - new translations for de fr it es
  477. * Tue Jul 25 2000 Bill Nottingham <notting@redhat.com>
  478. - pci.ids updates
  479. - probe for memory in DDC probe
  480. - link vbe library in directly
  481. * Tue Jul 25 2000 Florian La Roche <Florian.LaRoche@redhat.de>
  482. - update gdth ICP vortex entries
  483. * Mon Jul 24 2000 Bill Nottingham <notting@redhat.com>
  484. - turn off DDC probing in generic hardware probe
  485. - random pcitable updates
  486. * Tue Jul 18 2000 Michael Fulbright <msf@redhat.com>
  487. - enable USB bus probing for loader
  488. * Tue Jul 18 2000 Bill Nottingham <notting@redhat.com>
  489. - pcitable updates
  490. * Fri Jul 14 2000 Matt Wilson <msw@redhat.com>
  491. - added USB probing to kudzu_loader library
  492. * Fri Jul 14 2000 Bill Nottingham <notting@redhat.com>
  493. - move initscript back
  494. * Tue Jul 11 2000 Florian La Roche <Florian.LaRoche@redhat.de>
  495. - add another ncr/sym controller to pcitable
  496. * Mon Jul 3 2000 Trond Eivind Glomsr藷?<teg@redhat.com>
  497. - USB mouse detection
  498. * Mon Jul 3 2000 Bill Nottingham <notting@redhat.com>
  499. - preliminary USB probing (from Trond)
  500. * Tue Jun 27 2000 Bill Nottingham <notting@redhat.com>
  501. - add /etc/sysconfig/kudzu where you can force only safe probes on boot
  502. * Mon Jun 26 2000 Bill Nottingham <notting@redhat.com>
  503. - configure USB controllers
  504. - initscript path munging
  505. * Sun Jun 18 2000 Bill Nottingham <notting@redhat.com>
  506. - fix broken bus handling in library
  507. * Thu Jun 15 2000 Bill Nottingham <notting@redhat.com>
  508. - add r128 driver mappings
  509. * Thu Jun 15 2000 Matt Wilson <msw@redhat.com>
  510. - hacks to probe vesa and vga16 framebuffers
  511. * Tue Jun 13 2000 Bill Nottingham <notting@redhat.com>
  512. - DDC probing fixes
  513. * Wed Jun 7 2000 Bill Nottingham <notting@redhat.com>
  514. - add in monitor probing
  515. * Mon Jun 4 2000 Bill Nottingham <notting@redhat.com>
  516. - pcitable fixes
  517. * Thu Jun 1 2000 Bill Nottingham <notting@redhat.com>
  518. - modules.confiscation
  519. * Tue May 30 2000 Erik Troan <ewt@redhat.com>
  520. - moved kudzumodule to main kudzu package
  521. * Wed May 10 2000 Bill Nottingham <notting@redhat.com>
  522. - add support for PCI subvendor, subdevice IDs
  523. * Tue Apr 4 2000 Bill Nottingham <notting@redhat.com>
  524. - add fix for odd keyboard controllers
  525. * Tue Mar 28 2000 Erik Troan <ewt@redhat.com>
  526. - added kudzumodule to devel package
  527. - added libkudzu_loader to devel
  528. * Sat Mar 4 2000 Matt Wilson <msw@redhat.com>
  529. - added 810 SVGA mapping
  530. * Thu Mar 2 2000 Bill Nottingham <notting@redhat.com>
  531. - fixes in pci device list merging
  532. * Thu Feb 24 2000 Bill Nottingham <notting@redhat.com>
  533. - fix aliasing and configuration of network devices
  534. - only configure modules that are available
  535. * Mon Feb 21 2000 Bill Nottingham <notting@redhat.com>
  536. - fix handling of token ring devices
  537. * Thu Feb 17 2000 Bill Nottingham <notting@redhat.com>
  538. - yet more serial fixes
  539. * Wed Feb 16 2000 Bill Nottingham <notting@redhat.com>
  540. - more serial fixes; bring back DTR and RTS correctly
  541. * Fri Feb 4 2000 Bill Nottingham <notting@redhat.com>
  542. - don't run serial probe on serial console, fixed right
  543. * Tue Feb 1 2000 Bill Nottingham <notting@redhat.com>
  544. - fix previous fixes.
  545. * Wed Jan 26 2000 Bill Nottingham <notting@redhat.com>
  546. - fix add/remove logic somewhat
  547. * Wed Jan 19 2000 Bill Nottingham <notting@redhat.com>
  548. - don't run serial probe on serial console
  549. * Fri Jan 7 2000 Bill Nottingham <notting@redhat.com>
  550. - fix stupid bug in configuring scsi/net cards
  551. * Mon Oct 25 1999 Bill Nottingham <notting@redhat.com>
  552. - oops, don't try to configure 'unknown's.
  553. * Mon Oct 11 1999 Bill Nottingham <notting@redhat.com>
  554. - fix creation of /etc/sysconfig/soundcard...
  555. * Wed Oct 6 1999 Bill Nottingham <notting@redhat.com>
  556. - add inittab munging for sparc serial consoles...
  557. * Thu Sep 30 1999 Bill Nottingham <notting@redhat.com>
  558. - add sun keyboard probing (from jakub)
  559. - add some bttv support
  560. * Wed Sep 22 1999 Bill Nottingham <notting@redhat.com>
  561. - run 'telinit 5' if needed in the initscript
  562. * Mon Sep 20 1999 Bill Nottingham <notting@redhat.com>
  563. - new & improved UI
  564. - module aliasing fixes
  565. * Thu Sep 9 1999 Bill Nottingham <notting@redhat.com>
  566. - sanitize, homogenize, sterilize...
  567. * Wed Sep 8 1999 Bill Nottingham <notting@redhat.com>
  568. - get geometry for ide drives
  569. - enumerate buses (jj@ultra.linux.cz)