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

Revision 4677, 38.0 KB checked in by Takemikaduchi, 13 years ago (diff)

compiz,task-compiz,xorg-x11-drv-wacom: fix package, others: 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: 173
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-debug --enable-static
171
172make %{?_smp_mflags}
173
174%install
175rm -rf $RPM_BUILD_ROOT
176
177mkdir -p $RPM_BUILD_ROOT%{_sbindir}
178
179make DESTDIR=$RPM_BUILD_ROOT install
180
181rm -fr $RPM_BUILD_ROOT%{_docdir}/udev
182rm -f $RPM_BUILD_ROOT/%{_libdir}/*.la
183
184rm -f $RPM_BUILD_ROOT/%{_libdir}/libgudev*.a
185
186rm -f $RPM_BUILD_ROOT%{_sysconfdir}/udev/udev.rules
187rm -f $RPM_BUILD_ROOT%{_sysconfdir}/init.d/udev
188rm -f $RPM_BUILD_ROOT%{_sysconfdir}/hotplug.d/default/10-udev.hotplug
189
190mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/udev/{rules.d,makedev.d,scripts,devices}
191mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/dev.d
192mkdir -p $RPM_BUILD_ROOT%{_bindir}
193touch $RPM_BUILD_ROOT%{_sysconfdir}/scsi_id.config
194
195# force relative symlinks
196ln -sf ..%{udev_scriptdir}/scsi_id $RPM_BUILD_ROOT/sbin/scsi_id
197
198ln -sf ../../sbin/udevadm $RPM_BUILD_ROOT%{_bindir}/udevinfo
199ln -sf ../../sbin/udevadm $RPM_BUILD_ROOT%{_bindir}/udevtest
200ln -sf ../../sbin/udevadm $RPM_BUILD_ROOT%{_sbindir}/udevmonitor
201
202ln -sf udevadm $RPM_BUILD_ROOT/sbin/udevtrigger
203ln -sf udevadm $RPM_BUILD_ROOT/sbin/udevsettle
204ln -sf udevadm $RPM_BUILD_ROOT/sbin/udevcontrol
205
206mkdir -p $RPM_BUILD_ROOT%{udev_scriptdir}/{,devices}
207
208for i in \
209%ifarch ppc ppc64
210        rules/arch/40-ppc.rules \
211%endif
212        ; do
213        install -m 0644 "$i"  "$RPM_BUILD_ROOT%{udev_scriptdir}/rules.d/${i##*/}"
214done
215
216mkdir -p $RPM_BUILD_ROOT%{udev_scriptdir}/{,devices}
217
218install -m 0755 %{SOURCE4} $RPM_BUILD_ROOT%{udev_scriptdir}/fw_unit_symlinks.sh
219
220mkdir -p $RPM_BUILD_ROOT%{_datadir}/udev
221install -m 0755 %{SOURCE1} $RPM_BUILD_ROOT/sbin/start_udev
222
223mkdir -p -m 0755 $RPM_BUILD_ROOT%{firmwaredir}
224
225mkdir -p -m 0755 $RPM_BUILD_ROOT%{_sysconfdir}/modprobe.d
226cat > $RPM_BUILD_ROOT%{_sysconfdir}/modprobe.d/floppy-pnp.conf <<EOF
227alias pnp:dPNP0700 floppy
228alias acpi:PNP0700: floppy
229EOF
230
231mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/rc.d/init.d
232install -m 0755 %{SOURCE3} $RPM_BUILD_ROOT%{_sysconfdir}/rc.d/init.d/udev-post
233
234mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig
235install -m 0755 %{SOURCE5} $RPM_BUILD_ROOT%{_sysconfdir}/sysconfig/udev
236
237mkdir -p $RPM_BUILD_ROOT/var/lib/udev/makedev.d
238
239%pre
240getent group video >/dev/null || /usr/sbin/groupadd -g 39 video || :
241getent group audio >/dev/null || /usr/sbin/groupadd -g 63 audio || :
242getent group cdrom >/dev/null || /usr/sbin/groupadd -g 11 cdrom || :
243getent group tape >/dev/null || /usr/sbin/groupadd -g 33 tape || :
244getent group dialout >/dev/null || /usr/sbin/groupadd -g 18 dialout || :
245
246%preun
247if [ $1 = 0 -a -f %{_initrddir}/udev ]; then
248        if [ -x /sbin/pidof ]; then
249                pid=$(/sbin/pidof udevd)
250                if [ -n "$pid" ]; then
251                        kill $pid
252                fi
253        fi
254        /sbin/chkconfig --del udev
255fi
256if [ "$1" = 0 ]; then
257        /sbin/chkconfig --del udev-post
258fi
259exit 0
260
261%post
262if [ "$1" -ge "1" -a -x /sbin/pidof ]; then
263        pid=$(/sbin/pidof udevd)
264        if [ -n "$pid" ]; then
265                kill $pid
266                /sbin/udevd -d
267        fi
268fi
269/sbin/ldconfig
270/sbin/chkconfig --add udev-post
271exit 0
272
273%postun -p /sbin/ldconfig
274
275%triggerpostun -- dev <= 0:3.21-1vl1
276if [ $2 = 0 ]; then
277    if [ -x /sbin/MAKEDEV ]; then
278        /sbin/MAKEDEV null
279        /sbin/MAKEDEV console
280    else
281        /bin/mknod /dev/null c 1 3
282        /bin/mknod /dev/console c 5 1
283    fi
284    if [ "$(/sbin/kernelversion)" == "2.6" ] &&
285       [ $(($(uname -r |cut -f1 -d-|cut -f3 -d.))) -gt 15 ]
286    then
287        /sbin/start_udev >/dev/null 2>&1
288        if [ -e /dev/mapper/control -a -x /sbin/lvm ]; then
289                /sbin/lvm vgmknodes >/dev/null 2>&1
290        fi
291    fi
292fi
293exit 0
294
295%clean
296rm -rf $RPM_BUILD_ROOT
297
298%files
299%defattr(-,root,root)
300%doc COPYING README TODO ChangeLog
301%attr(0755,root,root) /sbin/udevadm
302%attr(0755,root,root) /sbin/udevcontrol
303%attr(0755,root,root) /sbin/udevtrigger
304%attr(0755,root,root) /sbin/udevsettle
305%attr(0755,root,root) /sbin/udevd
306%attr(0755,root,root) /sbin/start_udev
307%attr(0755,root,root) /sbin/scsi_id
308%attr(0755,root,root) %{udev_scriptdir}/ata_id
309%attr(0755,root,root) %{udev_scriptdir}/cdrom_id
310%attr(0755,root,root) %{udev_scriptdir}/edd_id
311%attr(0755,root,root) %{udev_scriptdir}/usb_id
312%attr(0755,root,root) %{udev_scriptdir}/path_id
313%attr(0755,root,root) %{udev_scriptdir}/create_floppy_devices
314%attr(0755,root,root) %{udev_scriptdir}/fw_unit_symlinks.sh
315%attr(0755,root,root) %{udev_scriptdir}/firmware
316%attr(0644,root,root) %{udev_scriptdir}/rule_generator.functions
317%attr(0755,root,root) %{udev_scriptdir}/write_cd_rules
318%attr(0755,root,root) %{udev_scriptdir}/write_net_rules
319%attr(0755,root,root) %{udev_scriptdir}/collect
320%attr(0755,root,root) %{udev_scriptdir}/input_id
321%attr(0755,root,root) %{udev_scriptdir}/keyboard-force-release.sh
322%attr(0755,root,root) %{udev_scriptdir}/mtd_probe
323%attr(0755,root,root) %{udev_scriptdir}/accelerometer
324
325%attr(0755,root,root) %{_sysconfdir}/rc.d/init.d/udev-post
326%attr(0755,root,root) %{_bindir}/udevtest
327%attr(0755,root,root) %{_bindir}/udevinfo
328%attr(0755,root,root) %{_sbindir}/udevmonitor
329%attr(0755,root,root) %dir %{_sysconfdir}/udev/
330%attr(0755,root,root) %dir %{_sysconfdir}/udev/rules.d/
331%attr(0755,root,root) %dir %{udev_scriptdir}/
332%attr(0755,root,root) %dir %{udev_scriptdir}/rules.d/
333%attr(0755,root,root) %dir %{udev_scriptdir}/devices/
334%attr(0755,root,root) %dir %{_sysconfdir}/udev/makedev.d/
335
336%config(noreplace) %attr(0644,root,root) %{_sysconfdir}/sysconfig/udev
337
338%config(noreplace) %attr(0644,root,root) %{_sysconfdir}/udev/udev.conf
339%attr(0644,root,root) %{udev_scriptdir}/rules.d/*.rules
340
341%config(noreplace) %attr(0644,root,root) %{_sysconfdir}/scsi_id.config
342
343%config %attr(0644,root,root) %{_sysconfdir}/modprobe.d/floppy-pnp.conf
344
345%dir %attr(0755,root,root) %{firmwaredir}
346%attr(0644,root,root) %{_mandir}/man8/udev*.8*
347%attr(0644,root,root) %{_mandir}/man7/udev*.7*
348%attr(0644,root,root) %{_mandir}/man8/scsi_id*.8*
349
350%dir %attr(0755,root,root) /var/lib/udev
351%dir %attr(0755,root,root) /var/lib/udev/makedev.d
352
353# Deprecated, but keep the ownership
354%ghost %dir %{_sysconfdir}/udev/scripts/
355%ghost %dir %{_sysconfdir}/udev/devices/
356%ghost %dir %{_sysconfdir}/dev.d/
357
358%attr(0755,root,root) %{udev_scriptdir}/scsi_id
359%attr(0755,root,root) %{udev_scriptdir}/pci-db
360%attr(0755,root,root) %{udev_scriptdir}/usb-db
361%attr(0755,root,root) %{udev_scriptdir}/keymap
362%attr(0755,root,root) %{udev_scriptdir}/udev-acl
363%attr(0755,root,root) %{udev_scriptdir}/v4l_id
364%attr(0755,root,root) %{udev_scriptdir}/findkeyboards
365%attr(0644,root,root) %{udev_scriptdir}/keymaps/*
366%attr(0644,root,root) %{_prefix}/lib/ConsoleKit/run-seat.d/udev-acl.ck
367
368%files -n libudev
369%defattr(0644,root,root,0755)
370%attr(0755,root,root) /%{_lib}/libudev.so.*
371
372%files -n libudev-devel
373%defattr(0644,root,root,0755)
374%doc COPYING
375%{_includedir}/libudev.h
376%{_libdir}/libudev.so
377%{_libdir}/pkgconfig/libudev.pc
378%{_datadir}/pkgconfig/udev.pc
379%{_datadir}/gtk-doc/html/libudev/*
380
381%files -n libudev-static
382%defattr(0644,root,root,0755)
383%{_libdir}/libudev.a
384
385%files -n libgudev1
386%defattr(0644, root, root, 0755)
387%doc COPYING
388%attr(0755,root,root) /%{_lib}/libgudev-1.0.so.*
389%attr(0644,root,root) %{_libdir}/girepository-1.0/GUdev-1.0.typelib
390
391%files -n libgudev1-devel
392%defattr(0644, root, root, 0755)
393%doc COPYING
394%attr(0755,root,root) %{_libdir}/libgudev-1.0.so
395%attr(0644,root,root) %{_includedir}/gudev-1.0/gudev/*.h
396%attr(0644,root,root) %{_datadir}/gir-1.0/GUdev-1.0.gir
397%dir %{_datadir}/gtk-doc/html/gudev
398%attr(0644,root,root) %{_datadir}/gtk-doc/html/gudev/*
399%attr(0644,root,root) %{_libdir}/pkgconfig/gudev-1.0*
400
401
402%if %{build_compat32}
403%files -n compat32-libudev
404%defattr(0644,root,root,0755)
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) /%{_lib}/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 Aug 28 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 173-1
427- new upstream release
428- drop Patch101,102
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.