source: projects/specs/branches/6/u/udev/udev-vl.spec @ 7847

Revision 7847, 38.2 KB checked in by daisuke, 11 years ago (diff)

udev: commit 忘れの 8vl6 をcommit

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