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

Revision 7294, 38.4 KB checked in by Takemikaduchi, 11 years ago (diff)

KDE-4.9.5

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