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

Revision 1901, 35.1 KB checked in by Takemikaduchi, 14 years ago (diff)

rebuild with rpm-4.8.1

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