udev-vl.spec 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167
  1. %define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
  2. %define debug false
  3. %define udev_scriptdir /lib/udev
  4. %define firmwaredir /lib/firmware
  5. Summary: A userspace implementation of devfs
  6. Summary(ja): ユーザスペース実装のデバイスファイルシステム
  7. Name: udev
  8. Version: 154
  9. Release: 7%{?_dist_release}
  10. License: GPL
  11. Group: System Environment/Base
  12. URL: http://kernel.org/pub/linux/utils/kernel/hotplug/
  13. Source: ftp://ftp.kernel.org/pub/linux/utils/kernel/hotplug/%{name}-%{version}.tar.bz2
  14. Source1: start_udev
  15. Source3: udev-post.init
  16. Source4: fw_unit_symlinks.sh
  17. Source5: udev.sysconfig
  18. #
  19. Patch101: udev-151-rules.patch
  20. Patch102: udev-revert-remove-support-for-ide-device.patch
  21. # vine patch
  22. ExclusiveOS: Linux
  23. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  24. BuildRequires: sed, flex
  25. BuildRequires: pam-devel, glib2-devel, bison
  26. BuildRequires: findutils
  27. BuildRequires: hwdata
  28. BuildRequires: gobject-introspection-devel >= 0.6.2
  29. BuildRequires: gtk-doc
  30. BuildRequires: usbutils >= 0.82
  31. BuildRequires: gperf
  32. BuildRequires: libacl-devel
  33. BuildRequires: libusb-devel
  34. Requires(pre): /bin/sh fileutils
  35. Requires(pre): MAKEDEV >= 3.21
  36. Requires: MAKEDEV >= 3.21
  37. Requires: util-linux-ng >= 2.16
  38. Obsoletes: dev < 3.22
  39. Conflicts: dev < 3.22
  40. Provides: dev = 3.22
  41. Obsoletes: murasaki, usbmgr, hotplug
  42. Requires: pam
  43. Vendor: Project Vine
  44. Distribution: Vine Linux
  45. Packager: daisuke
  46. %description
  47. The udev package contains an implementation of devfs in
  48. userspace using sysfs and netlink.
  49. %package -n libudev
  50. Summary: Dynamic library to access udev device information
  51. Group: System Environment/Libraries
  52. Obsoletes: libudev0 <= 142
  53. Provides: libudev0 = 143
  54. %description -n libudev
  55. This package contains the dynamic library libudev, which provides access
  56. to udev device information, and an interface to search devices in sysfs.
  57. %package -n libudev-devel
  58. Summary: Development files for libudev
  59. Group: Development/Libraries
  60. Requires: udev = %{version}-%{release}
  61. Requires: libudev = %{version}-%{release}
  62. %description -n libudev-devel
  63. This package contains the development files for the library libudev, a
  64. dynamic library, which provides access to udev device information.
  65. %package -n libudev-static
  66. Summary: Static libraries for libudev
  67. Group: Development/Libraries
  68. Requires: libudev-devel = %{version}-%{release}
  69. %description -n libudev-static
  70. This package contains the static library libudev, which provides
  71. access to udev device information.
  72. %package -n libgudev1
  73. Summary: Libraries for adding libudev support to applications that use glib
  74. Group: Development/Libraries
  75. Requires: libudev >= 142
  76. # remove the following lines for libgudev so major 1
  77. Provides: libgudev = 20090518
  78. Obsoletes: libgudev <= 20090517
  79. %description -n libgudev1
  80. This package contains the libraries that make it easier to use libudev
  81. functionality from applications that use glib.
  82. %package -n libgudev1-devel
  83. Summary: Header files for adding libudev support to applications that use glib
  84. Group: Development/Libraries
  85. Requires: libudev-devel >= 142
  86. Provides: libgudev-devel = 20090518
  87. Obsoletes: libgudev-devel <= 20090517
  88. Requires: libgudev1 = %{version}-%{release}
  89. %description -n libgudev1-devel
  90. This package contains the header and pkg-config files for developing
  91. glib-based applications using libudev functionality.
  92. # compat32
  93. %package -n compat32-libudev
  94. Summary: A userspace implementation of devfs
  95. Summary(ja): ユーザスペース実装のデバイスファイルシステム
  96. Group: System Environment/Base
  97. Requires: libudev = %{version}-%{release}
  98. %description -n compat32-libudev
  99. The udev package contains an implementation of devfs in
  100. userspace using sysfs and netlink.
  101. %package -n compat32-libudev-devel
  102. Summary: Development files for libudev
  103. Group: Development/Libraries
  104. Requires: compat32-libudev = %{version}-%{release}
  105. %description -n compat32-libudev-devel
  106. This package contains the development files for the library libudev, a
  107. dynamic library, which provides access to udev device information.
  108. %package -n compat32-libgudev1
  109. Summary: Libraries for adding libudev support to applications that use glib
  110. Group: Development/Libraries
  111. Requires: compat32-libudev >= %{version}-%{release}
  112. %description -n compat32-libgudev1
  113. This package contains the libraries that make it easier to use libudev
  114. %package -n compat32-libgudev1-devel
  115. Summary: Header files for adding libudev support to applications that use glib
  116. Group: Development/Libraries
  117. Requires: compat32-libudev-devel
  118. Requires: compat32-libgudev1 = %{version}-%{release}
  119. %description -n compat32-libgudev1-devel
  120. This package contains the header and pkg-config files for developing
  121. glib-based applications using libudev functionality.
  122. %prep
  123. %setup -q
  124. %patch101 -p1
  125. %patch102 -p1
  126. %build
  127. autoreconf -f -i
  128. %configure \
  129. --without-selinux \
  130. --prefix=%{_prefix} --exec-prefix="" \
  131. --sysconfdir=%{_sysconfdir} --with-libdir-name=%{_lib} \
  132. --sbindir="/sbin" --libexecdir=%{udev_scriptdir} \
  133. --with-rootlibdir=/%{_lib} --enable-introspection \
  134. --enable-debug --enable-static
  135. make %{?_smp_mflags}
  136. %install
  137. rm -rf $RPM_BUILD_ROOT
  138. mkdir -p $RPM_BUILD_ROOT%{_sbindir}
  139. make DESTDIR=$RPM_BUILD_ROOT install
  140. rm -fr $RPM_BUILD_ROOT%{_docdir}/udev
  141. rm -f $RPM_BUILD_ROOT/%{_libdir}/*.la
  142. rm -f $RPM_BUILD_ROOT/%{_libdir}/libgudev1-*.a
  143. rm -f $RPM_BUILD_ROOT%{_sysconfdir}/udev/udev.rules
  144. rm -f $RPM_BUILD_ROOT%{_sysconfdir}/init.d/udev
  145. rm -f $RPM_BUILD_ROOT%{_sysconfdir}/hotplug.d/default/10-udev.hotplug
  146. mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/udev/{rules.d,makedev.d,scripts,devices}
  147. mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/dev.d
  148. mkdir -p $RPM_BUILD_ROOT%{_bindir}
  149. touch $RPM_BUILD_ROOT%{_sysconfdir}/scsi_id.config
  150. # force relative symlinks
  151. ln -sf ..%{udev_scriptdir}/scsi_id $RPM_BUILD_ROOT/sbin/scsi_id
  152. ln -sf ../../sbin/udevadm $RPM_BUILD_ROOT%{_bindir}/udevinfo
  153. ln -sf ../../sbin/udevadm $RPM_BUILD_ROOT%{_bindir}/udevtest
  154. ln -sf ../../sbin/udevadm $RPM_BUILD_ROOT%{_sbindir}/udevmonitor
  155. ln -sf udevadm $RPM_BUILD_ROOT/sbin/udevtrigger
  156. ln -sf udevadm $RPM_BUILD_ROOT/sbin/udevsettle
  157. ln -sf udevadm $RPM_BUILD_ROOT/sbin/udevcontrol
  158. mkdir -p $RPM_BUILD_ROOT%{udev_scriptdir}/{,devices}
  159. for i in \
  160. rules/redhat/*.rules \
  161. %ifarch ppc ppc64
  162. rules/packages/40-ppc.rules \
  163. %endif
  164. ; do
  165. install -m 0644 "$i" "$RPM_BUILD_ROOT%{udev_scriptdir}/rules.d/${i##*/}"
  166. done
  167. mkdir -p $RPM_BUILD_ROOT%{udev_scriptdir}/{,devices}
  168. install -m 0755 %{SOURCE4} $RPM_BUILD_ROOT%{udev_scriptdir}/fw_unit_symlinks.sh
  169. mkdir -p $RPM_BUILD_ROOT%{_datadir}/udev
  170. install -m 0755 %{SOURCE1} $RPM_BUILD_ROOT/sbin/start_udev
  171. mkdir -p -m 0755 $RPM_BUILD_ROOT%{firmwaredir}
  172. mkdir -p -m 0755 $RPM_BUILD_ROOT%{_sysconfdir}/modprobe.d
  173. cat > $RPM_BUILD_ROOT%{_sysconfdir}/modprobe.d/floppy-pnp.conf <<EOF
  174. alias pnp:dPNP0700 floppy
  175. alias acpi:PNP0700: floppy
  176. EOF
  177. mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/rc.d/init.d
  178. install -m 0755 %{SOURCE3} $RPM_BUILD_ROOT%{_sysconfdir}/rc.d/init.d/udev-post
  179. mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig
  180. install -m 0755 %{SOURCE5} $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/udev
  181. mkdir -p $RPM_BUILD_ROOT/var/lib/udev/makedev.d
  182. %pre
  183. getent group video >/dev/null || /usr/sbin/groupadd -g 39 video || :
  184. getent group audio >/dev/null || /usr/sbin/groupadd -g 63 audio || :
  185. getent group cdrom >/dev/null || /usr/sbin/groupadd -g 11 cdrom || :
  186. getent group tape >/dev/null || /usr/sbin/groupadd -g 33 tape || :
  187. getent group dialout >/dev/null || /usr/sbin/groupadd -g 18 dialout || :
  188. %preun
  189. if [ $1 = 0 -a -f %{_initrddir}/udev ]; then
  190. if [ -x /sbin/pidof ]; then
  191. pid=$(/sbin/pidof udevd)
  192. if [ -n "$pid" ]; then
  193. kill $pid
  194. fi
  195. fi
  196. /sbin/chkconfig --del udev
  197. fi
  198. if [ "$1" = 0 ]; then
  199. /sbin/chkconfig --del udev-post
  200. fi
  201. exit 0
  202. %post
  203. if [ "$1" -ge "1" -a -x /sbin/pidof ]; then
  204. pid=$(/sbin/pidof udevd)
  205. if [ -n "$pid" ]; then
  206. kill $pid
  207. /sbin/udevd -d
  208. fi
  209. fi
  210. /sbin/ldconfig
  211. /sbin/chkconfig --add udev-post
  212. exit 0
  213. %postun -p /sbin/ldconfig
  214. %triggerpostun -- dev <= 0:3.21-1vl1
  215. if [ $2 = 0 ]; then
  216. if [ -x /sbin/MAKEDEV ]; then
  217. /sbin/MAKEDEV null
  218. /sbin/MAKEDEV console
  219. else
  220. /bin/mknod /dev/null c 1 3
  221. /bin/mknod /dev/console c 5 1
  222. fi
  223. if [ "$(/sbin/kernelversion)" == "2.6" ] &&
  224. [ $(($(uname -r |cut -f1 -d-|cut -f3 -d.))) -gt 15 ]
  225. then
  226. /sbin/start_udev >/dev/null 2>&1
  227. if [ -e /dev/mapper/control -a -x /sbin/lvm ]; then
  228. /sbin/lvm vgmknodes >/dev/null 2>&1
  229. fi
  230. fi
  231. fi
  232. exit 0
  233. %clean
  234. rm -rf $RPM_BUILD_ROOT
  235. %files
  236. %defattr(-,root,root)
  237. %doc COPYING README TODO ChangeLog
  238. %attr(0755,root,root) /sbin/udevadm
  239. %attr(0755,root,root) /sbin/udevcontrol
  240. %attr(0755,root,root) /sbin/udevtrigger
  241. %attr(0755,root,root) /sbin/udevsettle
  242. %attr(0755,root,root) /sbin/udevd
  243. %attr(0755,root,root) /sbin/start_udev
  244. %attr(0755,root,root) /sbin/scsi_id
  245. %attr(0755,root,root) %{udev_scriptdir}/scsi_id
  246. %attr(0755,root,root) %{udev_scriptdir}/ata_id
  247. %attr(0755,root,root) %{udev_scriptdir}/collect
  248. %attr(0755,root,root) %{udev_scriptdir}/edd_id
  249. %attr(0755,root,root) %{udev_scriptdir}/usb_id
  250. %attr(0755,root,root) %{udev_scriptdir}/cdrom_id
  251. %attr(0755,root,root) %{udev_scriptdir}/path_id
  252. %attr(0755,root,root) %{udev_scriptdir}/hid2hci
  253. %attr(0755,root,root) %{udev_scriptdir}/create_floppy_devices
  254. %attr(0755,root,root) %{udev_scriptdir}/fw_unit_symlinks.sh
  255. %attr(0755,root,root) %{udev_scriptdir}/firmware
  256. %attr(0755,root,root) %{udev_scriptdir}/fstab_import
  257. %attr(0644,root,root) %{udev_scriptdir}/rule_generator.functions
  258. %attr(0755,root,root) %{udev_scriptdir}/write_cd_rules
  259. %attr(0755,root,root) %{udev_scriptdir}/write_net_rules
  260. %attr(0755,root,root) %{udev_scriptdir}/input_id
  261. %attr(0755,root,root) %{udev_scriptdir}/keyboard-force-release.sh
  262. %attr(0755,root,root) %{udev_scriptdir}/mobile-action-modeswitch
  263. %attr(0755,root,root) %{_sysconfdir}/rc.d/init.d/udev-post
  264. %attr(0755,root,root) %{_bindir}/udevtest
  265. %attr(0755,root,root) %{_bindir}/udevinfo
  266. %attr(0755,root,root) %{_sbindir}/udevmonitor
  267. %attr(0755,root,root) %dir %{_sysconfdir}/udev/
  268. %attr(0755,root,root) %dir %{_sysconfdir}/udev/rules.d/
  269. %attr(0755,root,root) %dir %{udev_scriptdir}/
  270. %attr(0755,root,root) %dir %{udev_scriptdir}/rules.d/
  271. %attr(0755,root,root) %dir %{udev_scriptdir}/devices/
  272. %attr(0755,root,root) %dir %{_sysconfdir}/udev/makedev.d/
  273. %config(noreplace) %attr(0644,root,root) %{_sysconfdir}/sysconfig/udev
  274. %config(noreplace) %attr(0644,root,root) %{_sysconfdir}/udev/udev.conf
  275. %attr(0644,root,root) %{udev_scriptdir}/rules.d/*.rules
  276. %config(noreplace) %attr(0644,root,root) %{_sysconfdir}/scsi_id.config
  277. %config %attr(0644,root,root) %{_sysconfdir}/modprobe.d/floppy-pnp.conf
  278. %dir %attr(0755,root,root) %{firmwaredir}
  279. %attr(0644,root,root) %{_mandir}/man8/udev*.8*
  280. %attr(0644,root,root) %{_mandir}/man7/udev*.7*
  281. %attr(0644,root,root) %{_mandir}/man8/scsi_id*.8*
  282. %dir %attr(0755,root,root) /var/lib/udev
  283. %dir %attr(0755,root,root) /var/lib/udev/makedev.d
  284. # Deprecated, but keep the ownership
  285. %ghost %dir %{_sysconfdir}/udev/scripts/
  286. %ghost %dir %{_sysconfdir}/udev/devices/
  287. %ghost %dir %{_sysconfdir}/dev.d/
  288. %attr(0755,root,root) %{udev_scriptdir}/pci-db
  289. %attr(0755,root,root) %{udev_scriptdir}/usb-db
  290. %attr(0755,root,root) %{udev_scriptdir}/keymap
  291. %attr(0755,root,root) %{udev_scriptdir}/udev-acl
  292. %attr(0755,root,root) %{udev_scriptdir}/v4l_id
  293. %attr(0755,root,root) %{udev_scriptdir}/findkeyboards
  294. %attr(0644,root,root) %{udev_scriptdir}/keymaps/*
  295. %attr(0644,root,root) %{_prefix}/lib/ConsoleKit/run-seat.d/udev-acl.ck
  296. %files -n libudev
  297. %attr(0755,root,root) /%{_lib}/libudev.so.*
  298. %files -n libudev-devel
  299. %defattr(0644,root,root,0755)
  300. %doc COPYING
  301. %{_includedir}/libudev.h
  302. %{_libdir}/libudev.so
  303. %{_libdir}/pkgconfig/libudev.pc
  304. %{_datadir}/pkgconfig/udev.pc
  305. %{_datadir}/gtk-doc/html/libudev/*
  306. %files -n libudev-static
  307. %defattr(0644,root,root,0755)
  308. %{_libdir}/libudev.a
  309. %files -n libgudev1
  310. %defattr(0644, root, root, 0755)
  311. %doc COPYING
  312. %attr(0755,root,root) %{_libdir}/libgudev-1.0.so.*
  313. %attr(0644,root,root) %{_libdir}/girepository-1.0/GUdev-1.0.typelib
  314. %files -n libgudev1-devel
  315. %defattr(0644, root, root, 0755)
  316. %doc COPYING
  317. %attr(0755,root,root) %{_libdir}/libgudev-1.0.so
  318. %attr(0644,root,root) %{_includedir}/gudev-1.0/gudev/*.h
  319. %attr(0644,root,root) %{_datadir}/gir-1.0/GUdev-1.0.gir
  320. %dir %{_datadir}/gtk-doc/html/gudev
  321. %attr(0644,root,root) %{_datadir}/gtk-doc/html/gudev/*
  322. %attr(0644,root,root) %{_libdir}/pkgconfig/gudev-1.0*
  323. %if %{build_compat32}
  324. %files -n compat32-libudev
  325. %attr(0755,root,root) /%{_lib}/libudev.so.*
  326. %files -n compat32-libudev-devel
  327. %defattr(0644,root,root,0755)
  328. %{_libdir}/libudev.so
  329. %{_libdir}/pkgconfig/libudev.pc
  330. %{_datadir}/pkgconfig/udev.pc
  331. %files -n compat32-libgudev1
  332. %defattr(0644, root, root, 0755)
  333. %attr(0755,root,root) %{_libdir}/libgudev-1.0.so.*
  334. %files -n compat32-libgudev1-devel
  335. %defattr(0644, root, root, 0755)
  336. %doc COPYING
  337. %attr(0755,root,root) %{_libdir}/libgudev-1.0.so
  338. %attr(0644,root,root) %{_libdir}/pkgconfig/gudev-1.0*
  339. %endif
  340. %changelog
  341. * Sat Jul 09 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 154-7
  342. - add Patch102 (udev-revert-remove-support-for-ide-device.patch)
  343. (bug fix for BTS:1171)
  344. * Sat Jul 09 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 154-6
  345. - create compat32 sub packages
  346. * Tue Apr 05 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 154-3
  347. - enable static library, add libudev-static subpackage.
  348. * Sun Sep 26 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 154-2
  349. - rebuild with rpm-4.8.1 for pkg-config file
  350. - add BuildRequires: gperf, libacl-devel, libusb-devel
  351. * Fri May 14 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 154-1
  352. - new upstream release
  353. - add patch101 to fix rules
  354. * Thu Apr 22 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 153-1
  355. - new upstream release
  356. * Sun Feb 14 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 151-1
  357. - new upstream release
  358. - drop obsolete patches
  359. * Wed Feb 10 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 145-2
  360. - rebuilt with new toolchain
  361. * Mon Oct 19 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 145-1
  362. - new upstream release
  363. - split libudev/libgudev1 to subpackage
  364. - disable static linked binary
  365. * Sat Aug 01 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 141-8
  366. - cleanup start_udev script
  367. * Fri Jul 24 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 141-7
  368. - add retrigger of fail events in udev-post.init
  369. * Mon May 04 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 141-5
  370. - rename floppy-pnp to floppy-pnp.conf
  371. * Fri May 01 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 141-4
  372. - include usb_id man page
  373. * Fri May 01 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 141-3
  374. - move system udev rules to /lib/udev/rules.d
  375. * Mon Apr 27 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 141-2
  376. - modified start_udev to ensure /dev/{null,console} created
  377. before udevd actually starts
  378. * Sun Apr 19 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 141-1
  379. - new upstream release with security fix
  380. (CVE-2009-1185, CVE-2009-1186)
  381. * Sat Mar 28 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 140-2
  382. - update start_udev
  383. - add video, audio, cdrom, tape and dialout to groups
  384. * Sat Mar 14 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 140-1
  385. - new upstream release
  386. * Sun Jan 11 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 136-1
  387. - new upstream release
  388. * Thu Dec 18 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 135-4
  389. - drop patch1000
  390. * Sat Dec 13 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 135-3
  391. - use udevadm instead of udevsettle
  392. - fix selinux stuff
  393. * Mon Dec 08 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 135-2
  394. - update start_udev/udev-post.init scripts
  395. - remove udev.nodes from makedev.d
  396. * Wed Dec 03 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 135-1
  397. - new upstream release
  398. * Wed Sep 03 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 127-1
  399. - new upstream release
  400. * Wed Jul 23 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 125-1
  401. - new upstream release
  402. - remove udevcontrol and udevtrigger (we use udevadm now)
  403. - update start_udev
  404. * Thu Apr 24 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 120-1
  405. - new upstream release
  406. * Thu Mar 20 2008 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 118-1
  407. - add Patch1000 to prevent creating symlink for rtc.
  408. - apply new versioning policy.
  409. * Thu Mar 06 2008 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 118-0vl1
  410. - new upstream release
  411. - sync with fedora development 118-5.fc9
  412. * Tue Aug 22 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 0.97-0vl3
  413. - use MAKEDEV to create devices in %%post
  414. * Tue Aug 22 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 0.97-0vl2
  415. - make console and null device in %%post in first installation.
  416. * Mon Aug 14 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 0.97-0vl1
  417. - new upstream release
  418. * Wed Jul 19 2006 Shu KONNO <owa@bg.wakwak.com> 096-0vl2
  419. - rebuild for x86_64
  420. - changed libdir, usrlibdir with /%%{_lib}, %%{_libdir} in make install
  421. - changed libdir=/lib to /lib64 in libvolume_id.pc
  422. * Wed Jul 12 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 096-0vl1
  423. - new upstream release
  424. * Sun Jul 09 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 095-0vl1
  425. - new upstream release
  426. * Tue Jun 13 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 094-0vl1
  427. - new upstream release
  428. * Fri Jun 02 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 093-0vl1
  429. - new upstream release
  430. * Sun May 21 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 092-0vl4
  431. - make null/console device in triggerpostun scripts
  432. * Sat May 20 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 092-0vl3
  433. - Obsoletes: dev < 3.22
  434. dev>=3.22 does not conflict with udev, it provides statically
  435. generated device files for older kernel.
  436. * Tue May 16 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 092-0vl2
  437. - update 95-pam-console.rules to fix invalid rules. (Patch10)
  438. (thanks to KANEKO Seiji)
  439. * Mon May 15 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 092-0vl1
  440. - new upstream release
  441. * Sun Apr 30 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 091-0vl3
  442. - fix errors in 50-udev.rules (Patch10)
  443. * Thu Apr 27 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 091-0vl2
  444. - import start_udev script from FC
  445. - update {50-udev,51-hotplug}.rules (Patch10)
  446. * Wed Apr 26 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 091-0vl1
  447. - new upstream release
  448. * Mon Apr 17 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 090-0vl1
  449. - new upstream release
  450. * Fri Apr 14 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 089-0vl2
  451. - fix firemware_helper path in 05-udev-early.rules
  452. * Wed Apr 12 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 089-0vl1
  453. - new upstream release
  454. - move *_id helper programs from /sbin to /lib/udev
  455. * Thu Mar 23 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 088-0vl1
  456. - new upstream release
  457. - add udev.7 again. (#15)
  458. * Mon Mar 13 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 087-0vl5
  459. - update udev.rules(Patch10) to replace deprecated format.
  460. * Sun Mar 12 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 087-0vl4
  461. - update udev.rules(Patch10) to make compat symlink(/dev/mouse)
  462. * Fri Mar 10 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 087-0vl3
  463. - update udev.rules(Patch10)
  464. - merge Patch20 to Patch10
  465. * Fri Mar 10 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 087-0vl2
  466. - add 95-pam-console.rules to call pam_console_apply
  467. * Wed Mar 08 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 087-0vl1
  468. - add Patch20 to fix obsolete style rules
  469. * Wed Mar 08 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 087-0vl1
  470. - new upstream release
  471. - add Requires:/PreReq: MAKEDEV >= 3.21
  472. - add Obsoletes:/Provides: dev
  473. * Mon Mar 06 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 086-0vl1
  474. - new upstream release
  475. - add Patch0 for compatibility devices for Vine Linux
  476. * Fri Jan 27 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 078-0vl1
  477. - merged with FC package
  478. * Sun Jun 12 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 058-1vl1
  479. - initial build for Vine Linux
  480. * Tue Jan 24 2006 Harald Hoyer <harald@redhat.com> - 078-7
  481. - put WAIT_FOR_SYSFS rules in 05-udev-early.rules
  482. * Mon Jan 23 2006 Harald Hoyer <harald@redhat.com> - 078-6
  483. - added some WAIT_FOR_SYSFS rules
  484. - removed warning message, if udev_db is not available
  485. * Sun Jan 22 2006 Kristian H淡gsberg <krh@redhat.com> 078-5
  486. - Drop udev dependency (#178621).
  487. * Tue Jan 11 2006 Harald Hoyer <harald@redhat.com> - 078-4
  488. - removed group "video" from the rules
  489. - fixed specfile
  490. - load nvram, floppy, parport and lp modules in
  491. /etc/sysconfig/modules/udev-stw.modules until there
  492. is a better solution
  493. - fixed more floppy module loading
  494. * Fri Dec 23 2005 Harald Hoyer <harald@redhat.com> - 078-3
  495. - fixed floppy module loading
  496. - added monitor socket
  497. - fixed typo in dvb rule
  498. * Wed Dec 21 2005 Bill Nottingham <notting@redhat.com> - 078-2
  499. - udevstart change: allow greylisting of certain modaliases (usb, firewire)
  500. * Wed Dec 21 2005 Harald Hoyer <harald@redhat.com> - 078-1
  501. - version 078
  502. - fixed symlink to pam_console.dev
  503. * Thu Dec 15 2005 Harald Hoyer <harald@redhat.com> - 077-2
  504. - switched back to udevstart and use active /dev/.udev/queue waiting
  505. in start_udev
  506. - removed support for old kernels
  507. - refined some udev.rules
  508. * Mon Dec 13 2005 Harald Hoyer <harald@redhat.com> - 077-1
  509. - version 077
  510. - patch to include udevstart2 in udevd and delay daemonize until queue is empty
  511. * Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
  512. - rebuilt
  513. * Tue Dec 06 2005 Harald Hoyer <harald@redhat.com> - 076-1
  514. - speedup udevd with selinux by calling matchpathcon_init_prefix()
  515. - version 076
  516. * Mon Nov 21 2005 Harald Hoyer <harald@redhat.com> - 075-4
  517. - speedup udev event replay with udevstart2
  518. * Fri Nov 18 2005 Harald Hoyer <harald@redhat.com> - 075-3
  519. - refined start_udev for old kernels
  520. * Fri Nov 11 2005 Harald Hoyer <harald@redhat.com> - 075-2
  521. - moved /etc/udev/scripts to /lib/udev
  522. - moved /etc/udev/devices to /lib/udev/devices
  523. - added new event replay for kernel >= 2.6.15
  524. - added usb devices
  525. - renamed cpu device to cpuid (bug #161538)
  526. - changed vendor string "Onstream" to "On[sS]tream" (bug #173043)
  527. - compiled all *_id programs statically
  528. * Fri Nov 11 2005 Harald Hoyer <harald@redhat.com> - 075-1
  529. - version 075
  530. * Tue Oct 25 2005 Harald Hoyer <harald@redhat.com> - 071-1
  531. - version 071
  532. * Mon Oct 10 2005 Harald Hoyer <harald@redhat.com> - 069-10
  533. - removed group usb
  534. * Mon Oct 10 2005 Harald Hoyer <harald@redhat.com> - 069-9
  535. - added libsepol-devel BuildReq
  536. - refined persistent rules
  537. * Mon Oct 10 2005 Harald Hoyer <harald@redhat.com> - 069-8
  538. - corrected c&p edd_id rule, symlink for js devices
  539. - added -lsepol
  540. * Thu Oct 06 2005 Harald Hoyer <harald@redhat.com> - 069-7
  541. - added edd_id
  542. * Fri Sep 30 2005 Harald Hoyer <harald@redhat.com> - 069-6
  543. - special handling of IEEE1394 firewire devices (bug #168093)
  544. * Fri Sep 23 2005 Harald Hoyer <harald@redhat.com> - 069-5
  545. - added missing path_id
  546. * Wed Sep 21 2005 Harald Hoyer <harald@redhat.com> - 069-4
  547. - readded volume_id now known as vol_id, bug #168883
  548. * Thu Sep 15 2005 Bill Nottingham <notting@redhat.com> - 069-3
  549. - fix firmware loading
  550. * Wed Sep 14 2005 Bill Nottingham <notting@redhat.com> - 069-2
  551. - own /lib/firmware (#167016)
  552. * Wed Sep 14 2005 Harald Hoyer <harald@redhat.com> - 069-1
  553. - version 069
  554. * Thu Aug 04 2005 Harald Hoyer <harald@redhat.com> - 063-6
  555. - compile with pie .. again... (#158935)
  556. - fixed typo in echo (#138509)
  557. * Tue Aug 02 2005 Harald Hoyer <harald@redhat.com> - 063-5
  558. - fixed scsi hotplug replay
  559. * Tue Aug 02 2005 Bill Nottingham <notting@redhat.com> - 063-5
  560. - add rule to allow function id matching for pcmcia after loading
  561. modules (#164665)
  562. * Tue Aug 02 2005 Harald Hoyer <harald@redhat.com> - 063-4
  563. - fixed typo for tape devices and changed mode to 0660
  564. * Thu Jul 28 2005 Harald Hoyer <harald@redhat.com> - 063-3
  565. - changed "SYMLINK=" to "SYMLINK+="
  566. * Sun Jul 24 2005 Bill Nottingham <notting@redhat.com> - 063-2
  567. - don't set SEQNUM for scsi replay events (#163729)
  568. * Tue Jul 19 2005 Bill Nottingham <notting@redhat.com> - 063-1
  569. - update to 063
  570. - handle the hotplug events for ieee1394, scsi, firmware
  571. * Fri Jul 08 2005 Bill Nottingham <notting@redhat.com> - 062-2
  572. - update to 062
  573. - use included ata_id, build usb_id
  574. - load modules for pci, usb, pcmcia
  575. - ship RELEASE-NOTES in %%doc
  576. * Thu Jul 07 2005 Harald Hoyer <harald@redhat.com> - 058-2
  577. - compile with pie
  578. * Fri May 20 2005 Bill Nottingham <notting@redhat.com> - 058-1
  579. - update to 058, fixes conflict with newer kernels (#158371)
  580. * Thu May 12 2005 Harald Hoyer <harald@redhat.com> - 057-6
  581. - polished persistent scripts
  582. * Thu May 5 2005 Bill Nottingham <notting@redhat.com> - 057-5
  583. - rebuild
  584. * Thu May 5 2005 Bill Nottingham <notting@redhat.com> - 057-4
  585. - better check for mounted tmpfs on /dev (#156862)
  586. * Wed Apr 27 2005 Peter Jones <pjones@redhat.com> - 057-3
  587. - use udevstart rather than udev for udevstart.static
  588. * Thu Apr 21 2005 Harald Hoyer <harald@redhat.com> - 057-2
  589. - added Inifiniband devices (bug #147035)
  590. - fixed pam_console.dev (bug #153250)
  591. * Mon Apr 18 2005 Harald Hoyer <harald@redhat.com> - 057-1
  592. - version 057
  593. * Fri Apr 15 2005 Dan Walsh <dwalsh@redhat.com> - 056-2
  594. - Fix SELinux during creation of Symlinks
  595. * Mon Apr 11 2005 Harald Hoyer <harald@redhat.com> - 056-1
  596. - updated to version 056
  597. - merged permissions in the rules file
  598. - added udevpermconv.sh to convert old permission files
  599. * Mon Mar 28 2005 Warren Togami <wtogami@redhat.com> - 050-10
  600. - own default and net dirs (#151368 Hans de Goede)
  601. * Mon Mar 07 2005 Warren Togami <wtogami@redhat.com> - 050-9
  602. - fixed rh#150462 (udev DRI permissions)
  603. * Wed Mar 02 2005 Harald Hoyer <harald@redhat.com> - 050-8
  604. - fixed rh#144598
  605. * Fri Feb 18 2005 Harald Hoyer <harald@redhat.com> - 050-6
  606. - introducing /etc/udev/makedev.d/50-udev.nodes
  607. - glibcstatic patch modified to let gcc4 compile udev
  608. * Thu Feb 10 2005 Harald Hoyer <harald@redhat.com> - 050-5
  609. - doh, reverted the start_udev devel version, which slipped in
  610. * Thu Feb 10 2005 Harald Hoyer <harald@redhat.com> - 050-3
  611. - fixed forgotten " in udev.rules
  612. * Tue Jan 11 2005 Harald Hoyer <harald@redhat.com> - 050-2
  613. - removed /dev/microcode, /dev/cpu/microcode is now the real node
  614. - cleaned up start_udev
  615. * Tue Jan 11 2005 Harald Hoyer <harald@redhat.com> - 050-1
  616. - version 050
  617. - /dev/cpu/0/microcode -> /dev/cpu/microcode
  618. * Tue Dec 21 2004 Dan Walsh <dwalsh@redhat.com> - 048-4
  619. - Call selinux_restore to fix labeling problem in selinux
  620. - Fixes rh#142817
  621. * Tue Dec 21 2004 Harald Hoyer <harald@redhat.com> - 048-3
  622. - maybe fixed bug rh#143367
  623. * Thu Dec 16 2004 Harald Hoyer <harald@redhat.com> - 048-2
  624. - fixed a case where reading /proc/ide/hd?/media returns EIO
  625. (bug rh#142713)
  626. - changed all device node permissions of group "disk" to 0640
  627. (bug rh#110197)
  628. - remove $udev_db with -fr in case of a directory (bug rh#142962)
  629. * Mon Dec 13 2004 Harald Hoyer <harald@redhat.com> - 048-1
  630. - version 048
  631. - major specfile cleanup
  632. * Thu Nov 04 2004 Harald Hoyer <harald@redhat.com> - 042-1
  633. - version 042
  634. * Thu Nov 04 2004 Harald Hoyer <harald@redhat.com> - 039-10
  635. - speed improvement, scripts in rules are now executed only once,
  636. instead of four times
  637. * Thu Nov 04 2004 Harald Hoyer <harald@redhat.com> - 039-9
  638. - removed wrong SIG_IGN for SIGCHLD
  639. - moved ide media check to script to wait for the procfs
  640. * Wed Nov 3 2004 Jeremy Katz <katzj@redhat.com> - 039-8.FC3
  641. - recreate lvm device nodes if needed in the trigger (#137807)
  642. * Wed Nov 03 2004 Harald Hoyer <harald@redhat.com> - 039-6.FC3.2
  643. - replace udev.conf by default
  644. - LANG=C for fgrep in start_udev; turn grep into fgrep
  645. * Tue Nov 02 2004 Harald Hoyer <harald@redhat.com> - 039-6.FC3.1
  646. - speed up pam_console.dev
  647. - mount pts and shm, in case of the dev trigger
  648. - increased timeout for udevstart
  649. - removed syslog() from signal handler (caused vmware locks)
  650. - turned off logging, which speeds up the boot process
  651. * Thu Oct 21 2004 Harald Hoyer <harald@redhat.com> - 039-6
  652. - fixed typo
  653. * Thu Oct 21 2004 Harald Hoyer <harald@redhat.com> - 039-5
  654. - added udev-039-norm.patch, which prevents removal of hd* devices,
  655. because the kernel sends remove/add events, if an IDE removable device
  656. is close(2)ed. mke2fs, e.g. would fail in this case.
  657. * Wed Oct 20 2004 Harald Hoyer <harald@redhat.com> - 039-4
  658. - do not call dev.d scripts, if network interface hasn't changed
  659. the name
  660. - correct wait for dummy network devices
  661. - removed NONBLOCK from volume-id
  662. - do not log in udev.static, which should fix bug 136005
  663. * Mon Oct 18 2004 Harald Hoyer <harald@redhat.com> - 039-3
  664. - refined wait_for_sysfs for udev.static
  665. * Mon Oct 18 2004 Harald Hoyer <harald@redhat.com> - 039-2
  666. - improved wait_for_sysfs for virtual consoles with Kay Siever's patch
  667. - wait for ppp class
  668. - wait for LVM dm- devices
  669. - integrate wait_for_sys in udev.static for the initrd
  670. * Mon Oct 18 2004 Harald Hoyer <harald@redhat.com> - 039-1
  671. - version 039, fixes also manpage bug 135996
  672. - fixed glibc issue for static version (getgrnam, getpwnam) (bug 136005)
  673. - close the syslog in every app
  674. * Fri Oct 15 2004 Harald Hoyer <harald@redhat.com> - 038-2
  675. - par[0-9] is now a symlink to lp
  676. - MAKEDEV the parport devices
  677. - now conflicts with older initscripts
  678. * Thu Oct 14 2004 Harald Hoyer <harald@redhat.com> - 038-1
  679. - raw device nodes are now created in directory raw
  680. - version 038
  681. * Wed Oct 13 2004 Harald Hoyer <harald@redhat.com> - 036-1
  682. - better wait_for_sysfs warning messages
  683. * Wed Oct 13 2004 Harald Hoyer <harald@redhat.com> - 035-2
  684. - fixed double bug in start_udev (bug 135405)
  685. * Tue Oct 12 2004 Harald Hoyer <harald@redhat.com> - 035-1
  686. - version 035, which only improves wait_for_sysfs
  687. - load ide modules in start_udev, until a hotplug script is available
  688. (bug 135260)
  689. * Mon Oct 11 2004 Harald Hoyer <harald@redhat.com> - 034-3
  690. - removed scary error messages from wait_for_sysfs
  691. - symlink from nst? -> tape?
  692. - kill udevd on update
  693. * Fri Oct 8 2004 Harald Hoyer <harald@redhat.com> - 034-2
  694. - check for /proc/sys/dev/cdrom/info existence in check-cdrom.sh
  695. * Fri Oct 8 2004 Harald Hoyer <harald@redhat.com> - 034-1
  696. - new version udev-034
  697. - removed patches, which went upstream
  698. - pam_console.dev link renamed to 05-pam_console.dev
  699. - MAKEDEV.dev links renamed to 10-MAKEDEV.dev
  700. * Thu Oct 07 2004 Harald Hoyer <harald@redhat.com> - 032-10
  701. - added floppy madness (bug 134830)
  702. - replay scsi events in start_udev for the devices on the adapter (bug 130746)
  703. * Wed Oct 06 2004 Harald Hoyer <harald@redhat.com> - 032-9
  704. - obsoleted $UDEV_LOG, use udev_log
  705. - correct SYMLINK handling in pam_console.dev
  706. - specfile cleanup
  707. - added check-cdrom.sh for nice cdrom symlinks
  708. * Mon Oct 04 2004 Harald Hoyer <harald@redhat.com> - 032-8
  709. - added patches from F辿liciano Matias for multiple symlinks (bug 134477 and 134478)
  710. - corrected some permissions with a missing leading 0
  711. - added z90crypt to the permissions file (bug 134448)
  712. - corrected requires and conflicts tags
  713. - removed /dev/log from MAKEDEV creation
  714. * Fri Oct 01 2004 Harald Hoyer <harald@redhat.com> - 032-7
  715. - more device nodes for those without initrd
  716. * Thu Sep 30 2004 Harald Hoyer <harald@redhat.com> - 032-6
  717. - prevent error message from device copying
  718. - use already translated starting strings
  719. * Wed Sep 29 2004 Harald Hoyer <harald@redhat.com> - 032-5
  720. - add "fi" to start_udev
  721. - do not create floppy devices manually (bug 133838)
  722. * Tue Sep 28 2004 Harald Hoyer <harald@redhat.com> - 032-4
  723. - made /etc/udev/devices/ for manual device nodes
  724. - refined SELINUX check, if /dev is not yet mounted in start_dev
  725. * Mon Sep 27 2004 Harald Hoyer <harald@redhat.com> - 032-3
  726. - corrected permissions for /dev/rtc (bug 133636)
  727. - renamed device-mapper to mapper/control (bug 133688)
  728. * Wed Sep 22 2004 Harald Hoyer <harald@redhat.com> - 032-2
  729. - removed option to turn off udev
  730. - udevstart.static now symling to udev.static
  731. * Tue Sep 21 2004 Harald Hoyer <harald@redhat.com> - 032-1
  732. - version 032
  733. * Mon Sep 20 2004 Harald Hoyer <harald@redhat.com> - 030-27
  734. - simplified udev.conf
  735. - refined close_on_exec patch
  736. - added pam_console supply for symlinks, now gives correct permissions,
  737. for e.g. later plugged in cdroms
  738. - renamed sr? to scd? (see devices.txt; k3b likes that :)
  739. * Mon Sep 13 2004 Jeremy Katz <katzj@redhat.com> - 030-26
  740. - require a 2.6 kernel
  741. - prereq instead of requires MAKEDEV
  742. - obsolete and provide dev
  743. - add a trigger for the removal of /dev so that we set things up
  744. * Fri Sep 10 2004 Dan Walsh <dwalsh@redhat.com> - 030-25
  745. - Use matchmediacon
  746. * Fri Sep 10 2004 Harald Hoyer <harald@redhat.com> - 030-24
  747. - check if SELINUX is not disabled before executing setfiles (bug 132099)
  748. * Wed Sep 8 2004 Harald Hoyer <harald@redhat.com> - 030-23
  749. - mount tmpfs with mode 0755 in start_udev
  750. * Tue Sep 7 2004 Harald Hoyer <harald@redhat.com> - 030-22
  751. - applied rules from David Zeuthen which read /proc directly without
  752. shellscript
  753. * Tue Sep 7 2004 Harald Hoyer <harald@redhat.com> - 030-21
  754. - applied enumeration patch from David Zeuthen for cdrom symlinks (bug 131532)
  755. - create /dev/ppp in start_udev (bug 131114)
  756. - removed nvidia devices from start_udev
  757. - check for restorecon presence in start_udev (bug 131904)
  758. * Fri Sep 3 2004 Harald Hoyer <harald@redhat.com> - 030-20
  759. - due to -x added to MAKEDEV specify the par and lp numbers
  760. * Fri Sep 3 2004 Harald Hoyer <harald@redhat.com> - 030-19
  761. - added udev-030-rhsec.patch (bug 130351)
  762. * Thu Sep 2 2004 Jeremy Katz <katzj@redhat.com> - 030-18
  763. - make the exact device in start_udev (and thus, require new MAKEDEV)
  764. * Thu Sep 2 2004 Jeremy Katz <katzj@redhat.com> - 030-17
  765. - make sure file contexts of everything in the tmpfs /dev are set right
  766. when start_udev runs
  767. * Thu Sep 02 2004 Harald Hoyer <harald@redhat.com> - 030-16
  768. - moved %{_sysconfdir}/hotplug.d/default/udev.hotplug to %{_sysconfdir}/hotplug.d/default/10-udev.hotplug
  769. * Thu Sep 02 2004 Harald Hoyer <harald@redhat.com> - 030-15
  770. - added nvidia devices to start_udev
  771. - added UDEV_RAMFS for backwards compat to udev.conf
  772. - changed Group (bug 131488)
  773. - added libselinux-devel to build requirements
  774. * Wed Sep 1 2004 Jeremy Katz <katzj@redhat.com> - 030-14
  775. - require MAKEDEV
  776. * Wed Sep 1 2004 Dan Walsh <dwalsh@redhat.com> - 030-13
  777. - Change to setfilecon if directory exists.
  778. * Wed Sep 01 2004 Harald Hoyer <harald@redhat.com> - 030-12
  779. - fixed start_udev
  780. * Tue Aug 31 2004 Jeremy Katz <katzj@redhat.com> - 030-11
  781. - use tmpfs instead of ramfs (it has xattr support now)
  782. - change variables appropriately to TMPFS intead of RAMFS in udev.conf
  783. - create loopN, not just loop in start_udev
  784. * Fri Aug 27 2004 Dan Walsh <dwalsh@redhat.com> - 030-10
  785. - Fix Patch
  786. * Thu Aug 26 2004 Dan Walsh <dwalsh@redhat.com> - 030-9
  787. - Cleaned up selinux patch
  788. * Tue Aug 24 2004 Harald Hoyer <harald@redhat.com> - 030-8
  789. - changed defaults not to remove device nodes
  790. - added rule for net/tun
  791. - extended start_udev to create devices, which can trigger module autoloading
  792. - refined cloexec patch, to redirect stdin,out,err of /dev.d execed apps to /dev/null
  793. * Mon Aug 23 2004 Harald Hoyer <harald@redhat.com> - 030-7
  794. - removed usage of /usr/bin/seq in start_udev
  795. - set correct permissions in start_udev
  796. - extended the cloexec patch
  797. - removed udev-persistent package (define with_persistent==0)
  798. - check for /var/run/console/console.lock before calling /sbin/pam_console_setowner
  799. - linked pam_console_setowner statically against libglib-2.0.a
  800. * Fri Aug 20 2004 Harald Hoyer <harald@redhat.com> - 030-5
  801. - use correct console.lock file now in pam_console_setowner
  802. * Wed Aug 18 2004 Harald Hoyer <harald@redhat.com> - 030-4
  803. - added the selinux patch
  804. * Fri Jul 23 2004 Harald Hoyer <harald@redhat.com> - 030-3
  805. - extended the cloexec patch
  806. * Wed Jul 21 2004 Dan Walsh <dwalsh@redhat.com> - 030-2
  807. - Close Database fd in exec processes using FD_CLOSEXEC
  808. * Wed Jul 14 2004 Harald Hoyer <harald@redhat.com> - 030-1
  809. - version 030
  810. * Wed Jul 14 2004 Harald Hoyer <harald@redhat.com> - 029-4
  811. - added udevstart.static
  812. * Wed Jul 14 2004 Harald Hoyer <harald@redhat.com> - 029-3
  813. - put /etc/sysconfig/udev in /etc/udev/udev.conf and removed it
  814. - made only udev.static static
  815. - make our defaults the default values
  816. - removed /udev
  817. * Tue Jul 6 2004 Harald Hoyer <harald@redhat.com> - 029-1
  818. - version 029, added udev_remove and udev_owner to udev.conf
  819. * Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
  820. - rebuilt
  821. * Tue Jun 8 2004 Harald Hoyer <harald@redhat.com> - 026-3
  822. - fixed UDEV_REMOVE=no
  823. * Tue Jun 8 2004 Harald Hoyer <harald@redhat.com> - 026-2
  824. - udev-026
  825. - preserve ownership of device nodes, which already exist
  826. - do not remove device nodes if UDEV_REMOVE="no"
  827. - added volume_id
  828. - build with klibc
  829. * Wed May 26 2004 Harald Hoyer <harald@redhat.com> - 025-1
  830. - udev-025
  831. - added ata_identify
  832. - build nearly all with dietlibc
  833. * Mon May 10 2004 Elliot Lee <sopwith@redhat.com> 024-6
  834. - Turn off udevd by default for FC2
  835. * Tue Apr 20 2004 Harald Hoyer <harald@redhat.com> - 024-5
  836. - fixed permission for /dev/tty (FC2)
  837. * Thu Apr 15 2004 Harald Hoyer <harald@redhat.com> - 024-4
  838. - moved the 00- files to 50-, to let the use place his files in front
  839. * Thu Apr 15 2004 Harald Hoyer <harald@redhat.com> - 024-3
  840. - set UDEV_SELINUX to yes
  841. - added UDEV_LOG
  842. * Thu Apr 15 2004 Harald Hoyer <harald@redhat.com> - 024-2
  843. - added /udev to filelist
  844. * Wed Apr 14 2004 Harald Hoyer <harald@redhat.com> - 024-1
  845. - update to 024
  846. - added /etc/sysconfig/udev
  847. - added selinux, pam_console, dbus support
  848. * Fri Mar 26 2004 Harald Hoyer <harald@redhat.com> - 023-1
  849. - update to 023
  850. * Wed Mar 24 2004 Bill Nottingham <notting@redhat.com> 022-1
  851. - update to 022
  852. * Sun Mar 21 2004 Florian La Roche <Florian.LaRoche@redhat.de>
  853. - really move initscript
  854. * Sun Feb 29 2004 Florian La Roche <Florian.LaRoche@redhat.de>
  855. - move chkconv to preun
  856. - nicer url
  857. * Wed Feb 25 2004 Harald Hoyer <harald@redhat.com> - 018-1
  858. - changes permissions and rules
  859. * Mon Feb 23 2004 Dan Walsh <dwalsh@redhat.com>
  860. - Add selinux support
  861. * Thu Feb 19 2004 Greg Kroah-Hartman <greg@kroah.com>
  862. - add some more files to the documentation directory
  863. - add ability to build scsi_id and make it the default
  864. * Mon Feb 16 2004 Greg Kroah-Hartman <greg@kroah.com>
  865. - fix up udevd build, as it's no longer needed to be build seperatly
  866. - add udevtest to list of files
  867. - more Red Hat sync ups.
  868. * Thu Feb 12 2004 Greg Kroah-Hartman <greg@kroah.com>
  869. - add some changes from the latest Fedora udev release.
  870. * Mon Feb 2 2004 Greg Kroah-Hartman <greg@kroah.com>
  871. - add udevsend, and udevd to the files
  872. - add ability to build udevd with glibc after the rest is build with klibc
  873. * Mon Jan 26 2004 Greg Kroah-Hartman <greg@kroah.com>
  874. - added udevinfo to rpm
  875. - added URL to spec file
  876. - added udevinfo's man page
  877. * Mon Jan 05 2004 Rolf Eike Beer <eike-hotplug@sf-tec.de>
  878. - add defines to choose the init script (Redhat or LSB)
  879. * Tue Dec 16 2003 Robert Love <rml@ximian.com>
  880. - install the initscript and run chkconfig on it
  881. * Tue Nov 2 2003 Greg Kroah-Hartman <greg@kroah.com>
  882. - changes due to config file name changes
  883. * Fri Oct 17 2003 Robert Love <rml@tech9.net>
  884. - Make work without a build root
  885. - Correctly install the right files
  886. - Pass the RPM_OPT_FLAGS to gcc so we can build per the build policy
  887. - Put some prereqs in
  888. - Install the hotplug symlink to udev
  889. * Mon Jul 28 2003 Paul Mundt <lethal@linux-sh.org>
  890. - Initial spec file for udev-0.2.