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

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

udev: rebuild on current environment

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