source: projects/specs/trunk/u/udev/udev-vl.spec @ 5276

Revision 5276, 38.2 KB checked in by Takemikaduchi, 12 years ago (diff)

new upstream release

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