udev-vl.spec 38 KB

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