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

Revision 6598, 38.1 KB checked in by daisuke, 12 years ago (diff)
  • new upstream release
  • add BR: kmod-devel
  • add BR: libblkid-devel
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: 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.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* Thu Jun 28 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 182-1
433- new upstream release
434- add BR: kmod-devel
435- add BR: libblkid-devel
436
437* Sat Dec 10 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 175-1
438- new upstream release
439- add configure option (--enable-rule_generator)
440
441* Sun Aug 28 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 173-1
442- new upstream release
443- drop Patch101,102
444
445* Sat Jul 09 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 154-7
446- add Patch102 (udev-revert-remove-support-for-ide-device.patch)
447   (bug fix for BTS:1171)
448
449* Sat Jul 09 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 154-6
450- create compat32 sub packages
451
452* Tue Apr 05 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 154-3
453- enable static library, add libudev-static subpackage.
454
455* Sun Sep 26 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 154-2
456- rebuild with rpm-4.8.1 for pkg-config file
457- add BuildRequires: gperf, libacl-devel, libusb-devel
458
459* Fri May 14 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 154-1
460- new upstream release
461- add patch101 to fix rules
462
463* Thu Apr 22 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 153-1
464- new upstream release
465
466* Sun Feb 14 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 151-1
467- new upstream release
468- drop obsolete patches
469
470* Wed Feb 10 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 145-2
471- rebuilt with new toolchain
472
473* Mon Oct 19 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 145-1
474- new upstream release
475- split libudev/libgudev1 to subpackage
476- disable static linked binary
477
478* Sat Aug 01 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 141-8
479- cleanup start_udev script
480
481* Fri Jul 24 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 141-7
482- add retrigger of fail events in udev-post.init
483
484* Mon May 04 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 141-5
485- rename floppy-pnp to floppy-pnp.conf
486
487* Fri May 01 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 141-4
488- include usb_id man page
489
490* Fri May 01 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 141-3
491- move system udev rules to /lib/udev/rules.d
492
493* Mon Apr 27 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 141-2
494- modified start_udev to ensure /dev/{null,console} created
495  before udevd actually starts
496
497* Sun Apr 19 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 141-1
498- new upstream release with security fix
499  (CVE-2009-1185, CVE-2009-1186)
500
501* Sat Mar 28 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 140-2
502- update start_udev
503- add video, audio, cdrom, tape and dialout to groups
504
505* Sat Mar 14 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 140-1
506- new upstream release
507
508* Sun Jan 11 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 136-1
509- new upstream release
510
511* Thu Dec 18 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 135-4
512- drop patch1000
513
514* Sat Dec 13 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 135-3
515- use udevadm instead of udevsettle
516- fix selinux stuff
517
518* Mon Dec 08 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 135-2
519- update start_udev/udev-post.init scripts
520- remove udev.nodes from makedev.d
521
522* Wed Dec 03 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 135-1
523- new upstream release
524
525* Wed Sep 03 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 127-1
526- new upstream release
527
528* Wed Jul 23 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 125-1
529- new upstream release
530- remove udevcontrol and udevtrigger (we use udevadm now)
531- update start_udev
532
533* Thu Apr 24 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 120-1
534- new upstream release
535
536* Thu Mar 20 2008 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 118-1
537- add Patch1000 to prevent creating symlink for rtc.
538- apply new versioning policy.
539
540* Thu Mar 06 2008 Kazutaka HARADA <kazutaka@dc4.so-net.ne.jp> 118-0vl1
541- new upstream release
542- sync with fedora development 118-5.fc9
543
544* Tue Aug 22 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 0.97-0vl3
545- use MAKEDEV to create devices in %%post
546
547* Tue Aug 22 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 0.97-0vl2
548- make console and null device in %%post in first installation.
549
550* Mon Aug 14 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 0.97-0vl1
551- new upstream release
552
553* Wed Jul 19 2006 Shu KONNO <owa@bg.wakwak.com> 096-0vl2
554- rebuild for x86_64
555- changed libdir, usrlibdir with /%%{_lib}, %%{_libdir} in make install
556- changed libdir=/lib to /lib64 in libvolume_id.pc
557
558* Wed Jul 12 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 096-0vl1
559- new upstream release
560
561* Sun Jul 09 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 095-0vl1
562- new upstream release
563
564* Tue Jun 13 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 094-0vl1
565- new upstream release
566
567* Fri Jun 02 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 093-0vl1
568- new upstream release
569
570* Sun May 21 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 092-0vl4
571- make null/console device in triggerpostun scripts
572
573* Sat May 20 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 092-0vl3
574- Obsoletes: dev < 3.22
575  dev>=3.22 does not conflict with udev, it provides statically
576  generated device files for older kernel.
577
578* Tue May 16 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 092-0vl2
579- update 95-pam-console.rules to fix invalid rules. (Patch10)
580  (thanks to KANEKO Seiji)
581
582* Mon May 15 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 092-0vl1
583- new upstream release
584
585* Sun Apr 30 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 091-0vl3
586- fix errors in 50-udev.rules (Patch10)
587
588* Thu Apr 27 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 091-0vl2
589- import start_udev script from FC
590- update {50-udev,51-hotplug}.rules (Patch10)
591
592* Wed Apr 26 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 091-0vl1
593- new upstream release
594
595* Mon Apr 17 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 090-0vl1
596- new upstream release
597
598* Fri Apr 14 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 089-0vl2
599- fix firemware_helper path in 05-udev-early.rules
600
601* Wed Apr 12 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 089-0vl1
602- new upstream release
603- move *_id helper programs from /sbin to /lib/udev
604
605* Thu Mar 23 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 088-0vl1
606- new upstream release
607- add udev.7 again. (#15)
608
609* Mon Mar 13 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 087-0vl5
610- update udev.rules(Patch10) to replace deprecated format.
611
612* Sun Mar 12 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 087-0vl4
613- update udev.rules(Patch10) to make compat symlink(/dev/mouse)
614
615* Fri Mar 10 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 087-0vl3
616- update udev.rules(Patch10)
617- merge Patch20 to Patch10
618
619* Fri Mar 10 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 087-0vl2
620- add 95-pam-console.rules to call pam_console_apply
621
622* Wed Mar 08 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 087-0vl1
623- add Patch20 to fix obsolete style rules
624
625* Wed Mar 08 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 087-0vl1
626- new upstream release
627- add Requires:/PreReq: MAKEDEV >= 3.21
628- add Obsoletes:/Provides: dev
629
630* Mon Mar 06 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 086-0vl1
631- new upstream release
632- add Patch0 for compatibility devices for Vine Linux
633
634* Fri Jan 27 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 078-0vl1
635- merged with FC package
636  * Sun Jun 12 2005 Daisuke SUZUKI <daisuke@linux.or.jp> 058-1vl1
637  - initial build for Vine Linux
638
639* Tue Jan 24 2006 Harald Hoyer <harald@redhat.com> - 078-7
640- put WAIT_FOR_SYSFS rules in 05-udev-early.rules
641
642* Mon Jan 23 2006 Harald Hoyer <harald@redhat.com> - 078-6
643- added some WAIT_FOR_SYSFS rules
644- removed warning message, if udev_db is not available
645
646* Sun Jan 22 2006 Kristian H淡gsberg <krh@redhat.com> 078-5
647- Drop udev dependency (#178621).
648
649* Tue Jan 11 2006 Harald Hoyer <harald@redhat.com> - 078-4
650- removed group "video" from the rules
651- fixed specfile
652- load nvram, floppy, parport and lp modules in
653  /etc/sysconfig/modules/udev-stw.modules until there
654  is a better solution
655- fixed more floppy module loading
656
657* Fri Dec 23 2005 Harald Hoyer <harald@redhat.com> - 078-3
658- fixed floppy module loading
659- added monitor socket
660- fixed typo in dvb rule
661
662* Wed Dec 21 2005 Bill Nottingham <notting@redhat.com> - 078-2
663- udevstart change: allow greylisting of certain modaliases (usb, firewire)
664
665* Wed Dec 21 2005 Harald Hoyer <harald@redhat.com> - 078-1
666- version 078
667- fixed symlink to pam_console.dev
668
669* Thu Dec 15 2005 Harald Hoyer <harald@redhat.com> - 077-2
670- switched back to udevstart and use active /dev/.udev/queue waiting
671  in start_udev
672- removed support for old kernels
673- refined some udev.rules
674
675* Mon Dec 13 2005 Harald Hoyer <harald@redhat.com> - 077-1
676- version 077
677- patch to include udevstart2 in udevd and delay daemonize until queue is empty
678
679* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
680- rebuilt
681
682* Tue Dec 06 2005 Harald Hoyer <harald@redhat.com> - 076-1
683- speedup udevd with selinux by calling matchpathcon_init_prefix()
684- version 076
685
686* Mon Nov 21 2005 Harald Hoyer <harald@redhat.com> - 075-4
687- speedup udev event replay with udevstart2
688
689* Fri Nov 18 2005 Harald Hoyer <harald@redhat.com> - 075-3
690- refined start_udev for old kernels
691
692* Fri Nov 11 2005 Harald Hoyer <harald@redhat.com> - 075-2
693- moved /etc/udev/scripts to /lib/udev
694- moved /etc/udev/devices to /lib/udev/devices
695- added new event replay for kernel >= 2.6.15
696- added usb devices
697- renamed cpu device to cpuid (bug #161538)
698- changed vendor string "Onstream" to "On[sS]tream" (bug #173043)
699- compiled all *_id programs statically
700
701* Fri Nov 11 2005 Harald Hoyer <harald@redhat.com> - 075-1
702- version 075
703
704* Tue Oct 25 2005 Harald Hoyer <harald@redhat.com> - 071-1
705- version 071
706
707* Mon Oct 10 2005 Harald Hoyer <harald@redhat.com> - 069-10
708- removed group usb
709
710* Mon Oct 10 2005 Harald Hoyer <harald@redhat.com> - 069-9
711- added libsepol-devel BuildReq
712- refined persistent rules
713
714* Mon Oct 10 2005 Harald Hoyer <harald@redhat.com> - 069-8
715- corrected c&p edd_id rule, symlink for js devices
716- added -lsepol
717
718* Thu Oct 06 2005 Harald Hoyer <harald@redhat.com> - 069-7
719- added edd_id
720
721* Fri Sep 30 2005 Harald Hoyer <harald@redhat.com> - 069-6
722- special handling of IEEE1394 firewire devices (bug #168093)
723
724* Fri Sep 23 2005 Harald Hoyer <harald@redhat.com> - 069-5
725- added missing path_id
726
727* Wed Sep 21 2005 Harald Hoyer <harald@redhat.com> - 069-4
728- readded volume_id now known as vol_id, bug #168883
729
730* Thu Sep 15 2005 Bill Nottingham <notting@redhat.com> - 069-3
731- fix firmware loading
732
733* Wed Sep 14 2005 Bill Nottingham <notting@redhat.com> - 069-2
734- own /lib/firmware (#167016)
735
736* Wed Sep 14 2005 Harald Hoyer <harald@redhat.com> - 069-1
737- version 069
738
739* Thu Aug 04 2005 Harald Hoyer <harald@redhat.com> - 063-6
740- compile with pie .. again... (#158935)
741- fixed typo in echo (#138509)
742
743* Tue Aug 02 2005 Harald Hoyer <harald@redhat.com> - 063-5
744- fixed scsi hotplug replay
745
746* Tue Aug 02 2005 Bill Nottingham <notting@redhat.com> - 063-5
747- add rule to allow function id matching for pcmcia after loading
748  modules (#164665)
749
750* Tue Aug 02 2005 Harald Hoyer <harald@redhat.com> - 063-4
751- fixed typo for tape devices and changed mode to 0660
752
753* Thu Jul 28 2005 Harald Hoyer <harald@redhat.com> - 063-3
754- changed "SYMLINK=" to "SYMLINK+="
755
756* Sun Jul 24 2005 Bill Nottingham <notting@redhat.com> - 063-2
757- don't set SEQNUM for scsi replay events (#163729)
758
759* Tue Jul 19 2005 Bill Nottingham <notting@redhat.com> - 063-1
760- update to 063
761- handle the hotplug events for ieee1394, scsi, firmware
762
763* Fri Jul 08 2005 Bill Nottingham <notting@redhat.com> - 062-2
764- update to 062
765- use included ata_id, build usb_id
766- load modules for pci, usb, pcmcia
767- ship RELEASE-NOTES in %%doc
768
769* Thu Jul 07 2005 Harald Hoyer <harald@redhat.com> - 058-2
770- compile with pie
771
772* Fri May 20 2005 Bill Nottingham <notting@redhat.com> - 058-1
773- update to 058, fixes conflict with newer kernels (#158371)
774
775* Thu May 12 2005 Harald Hoyer <harald@redhat.com> - 057-6
776- polished persistent scripts
777
778* Thu May  5 2005 Bill Nottingham <notting@redhat.com> - 057-5
779- rebuild
780
781* Thu May  5 2005 Bill Nottingham <notting@redhat.com> - 057-4
782- better check for mounted tmpfs on /dev (#156862)
783
784* Wed Apr 27 2005 Peter Jones <pjones@redhat.com> - 057-3
785- use udevstart rather than udev for udevstart.static
786
787* Thu Apr 21 2005 Harald Hoyer <harald@redhat.com> - 057-2
788- added Inifiniband devices (bug #147035)
789- fixed pam_console.dev (bug #153250)
790
791* Mon Apr 18 2005 Harald Hoyer <harald@redhat.com> - 057-1
792- version 057
793
794* Fri Apr 15 2005 Dan Walsh <dwalsh@redhat.com> - 056-2
795- Fix SELinux during creation of Symlinks
796
797* Mon Apr 11 2005 Harald Hoyer <harald@redhat.com> - 056-1
798- updated to version 056
799- merged permissions in the rules file
800- added udevpermconv.sh to convert old permission files
801
802* Mon Mar 28 2005 Warren Togami <wtogami@redhat.com> - 050-10
803- own default and net dirs (#151368 Hans de Goede)
804
805* Mon Mar 07 2005 Warren Togami <wtogami@redhat.com> - 050-9
806- fixed rh#150462 (udev DRI permissions)
807
808* Wed Mar 02 2005 Harald Hoyer <harald@redhat.com> - 050-8
809- fixed rh#144598
810
811* Fri Feb 18 2005 Harald Hoyer <harald@redhat.com> - 050-6
812- introducing /etc/udev/makedev.d/50-udev.nodes
813- glibcstatic patch modified to let gcc4 compile udev
814
815* Thu Feb 10 2005 Harald Hoyer <harald@redhat.com> - 050-5
816- doh, reverted the start_udev devel version, which slipped in
817
818* Thu Feb 10 2005 Harald Hoyer <harald@redhat.com> - 050-3
819- fixed forgotten " in udev.rules
820
821* Tue Jan 11 2005 Harald Hoyer <harald@redhat.com> - 050-2
822- removed /dev/microcode, /dev/cpu/microcode is now the real node
823- cleaned up start_udev
824
825* Tue Jan 11 2005 Harald Hoyer <harald@redhat.com> - 050-1
826- version 050
827- /dev/cpu/0/microcode -> /dev/cpu/microcode
828
829* Tue Dec 21 2004 Dan Walsh <dwalsh@redhat.com> - 048-4
830- Call selinux_restore to fix labeling problem in selinux
831- Fixes rh#142817
832
833* Tue Dec 21 2004 Harald Hoyer <harald@redhat.com> - 048-3
834- maybe fixed bug rh#143367
835
836* Thu Dec 16 2004 Harald Hoyer <harald@redhat.com> - 048-2
837- fixed a case where reading /proc/ide/hd?/media returns EIO
838  (bug rh#142713)
839- changed all device node permissions of group "disk" to 0640
840  (bug rh#110197)
841- remove $udev_db with -fr in case of a directory (bug rh#142962)
842
843* Mon Dec 13 2004 Harald Hoyer <harald@redhat.com> - 048-1
844- version 048
845- major specfile cleanup
846
847* Thu Nov 04 2004 Harald Hoyer <harald@redhat.com> - 042-1
848- version 042
849
850* Thu Nov 04 2004 Harald Hoyer <harald@redhat.com> - 039-10
851- speed improvement, scripts in rules are now executed only once,
852  instead of four times
853
854* Thu Nov 04 2004 Harald Hoyer <harald@redhat.com> - 039-9
855- removed wrong SIG_IGN for SIGCHLD
856- moved ide media check to script to wait for the procfs
857
858* Wed Nov  3 2004 Jeremy Katz <katzj@redhat.com> - 039-8.FC3
859- recreate lvm device nodes if needed in the trigger (#137807)
860
861* Wed Nov 03 2004 Harald Hoyer <harald@redhat.com> - 039-6.FC3.2
862- replace udev.conf by default
863- LANG=C for fgrep in start_udev; turn grep into fgrep
864
865* Tue Nov 02 2004 Harald Hoyer <harald@redhat.com> - 039-6.FC3.1
866- speed up pam_console.dev
867- mount pts and shm, in case of the dev trigger
868- increased timeout for udevstart
869- removed syslog() from signal handler (caused vmware locks)
870- turned off logging, which speeds up the boot process
871
872* Thu Oct 21 2004 Harald Hoyer <harald@redhat.com> - 039-6
873- fixed typo
874
875* Thu Oct 21 2004 Harald Hoyer <harald@redhat.com> - 039-5
876- added udev-039-norm.patch, which prevents removal of hd* devices,
877  because the kernel sends remove/add events, if an IDE removable device
878  is close(2)ed. mke2fs, e.g. would fail in this case.
879
880* Wed Oct 20 2004 Harald Hoyer <harald@redhat.com> - 039-4
881- do not call dev.d scripts, if network interface hasn't changed
882  the name
883- correct wait for dummy network devices
884- removed NONBLOCK from volume-id
885- do not log in udev.static, which should fix bug 136005
886
887* Mon Oct 18 2004 Harald Hoyer <harald@redhat.com> - 039-3
888- refined wait_for_sysfs for udev.static
889
890* Mon Oct 18 2004 Harald Hoyer <harald@redhat.com> - 039-2
891- improved wait_for_sysfs for virtual consoles with Kay Siever's patch
892- wait for ppp class
893- wait for LVM dm- devices
894- integrate wait_for_sys in udev.static for the initrd
895
896* Mon Oct 18 2004 Harald Hoyer <harald@redhat.com> - 039-1
897- version 039, fixes also manpage bug 135996
898- fixed glibc issue for static version (getgrnam, getpwnam) (bug 136005)
899- close the syslog in every app
900
901* Fri Oct 15 2004 Harald Hoyer <harald@redhat.com> - 038-2
902- par[0-9] is now a symlink to lp
903- MAKEDEV the parport devices
904- now conflicts with older initscripts
905
906* Thu Oct 14 2004 Harald Hoyer <harald@redhat.com> - 038-1
907- raw device nodes are now created in directory raw
908- version 038
909
910* Wed Oct 13 2004 Harald Hoyer <harald@redhat.com> - 036-1
911- better wait_for_sysfs warning messages
912
913* Wed Oct 13 2004 Harald Hoyer <harald@redhat.com> - 035-2
914- fixed double bug in start_udev (bug 135405)
915
916* Tue Oct 12 2004 Harald Hoyer <harald@redhat.com> - 035-1
917- version 035, which only improves wait_for_sysfs
918- load ide modules in start_udev, until a hotplug script is available
919  (bug 135260)
920
921* Mon Oct 11 2004 Harald Hoyer <harald@redhat.com> - 034-3
922- removed scary error messages from wait_for_sysfs
923- symlink from nst? -> tape?
924- kill udevd on update
925
926* Fri Oct  8 2004 Harald Hoyer <harald@redhat.com> - 034-2
927- check for /proc/sys/dev/cdrom/info existence in check-cdrom.sh
928
929* Fri Oct  8 2004 Harald Hoyer <harald@redhat.com> - 034-1
930- new version udev-034
931- removed patches, which went upstream
932- pam_console.dev link renamed to 05-pam_console.dev
933- MAKEDEV.dev links renamed to 10-MAKEDEV.dev
934
935* Thu Oct 07 2004 Harald Hoyer <harald@redhat.com> - 032-10
936- added floppy madness (bug 134830)
937- replay scsi events in start_udev for the devices on the adapter (bug 130746)
938
939* Wed Oct 06 2004 Harald Hoyer <harald@redhat.com> - 032-9
940- obsoleted $UDEV_LOG, use udev_log
941- correct SYMLINK handling in pam_console.dev
942- specfile cleanup
943- added check-cdrom.sh for nice cdrom symlinks
944
945* Mon Oct 04 2004 Harald Hoyer <harald@redhat.com> - 032-8
946- added patches from F辿liciano Matias for multiple symlinks (bug 134477 and 134478)
947- corrected some permissions with a missing leading 0
948- added z90crypt to the permissions file (bug 134448)
949- corrected requires and conflicts tags
950- removed /dev/log from MAKEDEV creation
951
952* Fri Oct 01 2004 Harald Hoyer <harald@redhat.com> - 032-7
953- more device nodes for those without initrd
954
955* Thu Sep 30 2004 Harald Hoyer <harald@redhat.com> - 032-6
956- prevent error message from device copying
957- use already translated starting strings
958
959* Wed Sep 29 2004 Harald Hoyer <harald@redhat.com> - 032-5
960- add "fi" to start_udev
961- do not create floppy devices manually (bug 133838)
962
963* Tue Sep 28 2004 Harald Hoyer <harald@redhat.com> - 032-4
964- made /etc/udev/devices/ for manual device nodes
965- refined SELINUX check, if /dev is not yet mounted in start_dev
966
967* Mon Sep 27 2004 Harald Hoyer <harald@redhat.com> - 032-3
968- corrected permissions for /dev/rtc (bug 133636)
969- renamed device-mapper to mapper/control (bug 133688)
970
971* Wed Sep 22 2004 Harald Hoyer <harald@redhat.com> - 032-2
972- removed option to turn off udev
973- udevstart.static now symling to udev.static
974
975* Tue Sep 21 2004 Harald Hoyer <harald@redhat.com> - 032-1
976- version 032
977
978* Mon Sep 20 2004 Harald Hoyer <harald@redhat.com> - 030-27
979- simplified udev.conf
980- refined close_on_exec patch
981- added pam_console supply for symlinks, now gives correct permissions,
982  for e.g. later plugged in cdroms
983- renamed sr? to scd? (see devices.txt; k3b likes that :)
984
985* Mon Sep 13 2004 Jeremy Katz <katzj@redhat.com> - 030-26
986- require a 2.6 kernel
987- prereq instead of requires MAKEDEV
988- obsolete and provide dev
989- add a trigger for the removal of /dev so that we set things up
990
991* Fri Sep 10 2004 Dan Walsh <dwalsh@redhat.com> - 030-25
992- Use matchmediacon
993
994* Fri Sep 10 2004 Harald Hoyer <harald@redhat.com> - 030-24
995- check if SELINUX is not disabled before executing setfiles (bug 132099)
996
997* Wed Sep  8 2004 Harald Hoyer <harald@redhat.com> - 030-23
998- mount tmpfs with mode 0755 in start_udev
999
1000* Tue Sep  7 2004 Harald Hoyer <harald@redhat.com> - 030-22
1001- applied rules from David Zeuthen which read /proc directly without
1002  shellscript
1003
1004* Tue Sep  7 2004 Harald Hoyer <harald@redhat.com> - 030-21
1005- applied enumeration patch from David Zeuthen for cdrom symlinks (bug 131532)
1006- create /dev/ppp in start_udev (bug 131114)
1007- removed nvidia devices from start_udev
1008- check for restorecon presence in start_udev (bug 131904)
1009
1010* Fri Sep  3 2004 Harald Hoyer <harald@redhat.com> - 030-20
1011- due to -x added to MAKEDEV specify the par and lp numbers
1012
1013* Fri Sep  3 2004 Harald Hoyer <harald@redhat.com> - 030-19
1014- added udev-030-rhsec.patch (bug 130351)
1015
1016* Thu Sep  2 2004 Jeremy Katz <katzj@redhat.com> - 030-18
1017- make the exact device in start_udev (and thus, require new MAKEDEV)
1018
1019* Thu Sep  2 2004 Jeremy Katz <katzj@redhat.com> - 030-17
1020- make sure file contexts of everything in the tmpfs /dev are set right
1021  when start_udev runs
1022
1023* Thu Sep 02 2004 Harald Hoyer <harald@redhat.com> - 030-16
1024- moved %{_sysconfdir}/hotplug.d/default/udev.hotplug to %{_sysconfdir}/hotplug.d/default/10-udev.hotplug
1025
1026* Thu Sep 02 2004 Harald Hoyer <harald@redhat.com> - 030-15
1027- added nvidia devices to start_udev
1028- added UDEV_RAMFS for backwards compat to udev.conf
1029- changed Group (bug 131488)
1030- added libselinux-devel to build requirements
1031
1032* Wed Sep  1 2004 Jeremy Katz <katzj@redhat.com> - 030-14
1033- require MAKEDEV
1034
1035* Wed Sep 1 2004 Dan Walsh <dwalsh@redhat.com> - 030-13
1036- Change to setfilecon if directory exists.
1037
1038* Wed Sep 01 2004 Harald Hoyer <harald@redhat.com> - 030-12
1039- fixed start_udev
1040
1041* Tue Aug 31 2004 Jeremy Katz <katzj@redhat.com> - 030-11
1042- use tmpfs instead of ramfs (it has xattr support now)
1043- change variables appropriately to TMPFS intead of RAMFS in udev.conf
1044- create loopN, not just loop in start_udev
1045
1046* Fri Aug 27 2004 Dan Walsh <dwalsh@redhat.com> - 030-10
1047- Fix Patch
1048
1049* Thu Aug 26 2004 Dan Walsh <dwalsh@redhat.com> - 030-9
1050- Cleaned up selinux patch
1051
1052* Tue Aug 24 2004 Harald Hoyer <harald@redhat.com> - 030-8
1053- changed defaults not to remove device nodes
1054- added rule for net/tun
1055- extended start_udev to create devices, which can trigger module autoloading
1056- refined cloexec patch, to redirect stdin,out,err of /dev.d execed apps to /dev/null
1057
1058* Mon Aug 23 2004 Harald Hoyer <harald@redhat.com> - 030-7
1059- removed usage of /usr/bin/seq in start_udev
1060- set correct permissions in start_udev
1061- extended the cloexec patch
1062- removed udev-persistent package (define with_persistent==0)
1063- check for /var/run/console/console.lock before calling /sbin/pam_console_setowner
1064- linked pam_console_setowner statically against libglib-2.0.a
1065
1066* Fri Aug 20 2004 Harald Hoyer <harald@redhat.com> - 030-5
1067- use correct console.lock file now in pam_console_setowner
1068
1069* Wed Aug 18 2004 Harald Hoyer <harald@redhat.com> - 030-4
1070- added the selinux patch
1071
1072* Fri Jul 23 2004 Harald Hoyer <harald@redhat.com> - 030-3
1073- extended the cloexec patch
1074
1075* Wed Jul 21 2004 Dan Walsh <dwalsh@redhat.com> - 030-2
1076- Close Database fd in exec processes using FD_CLOSEXEC
1077
1078* Wed Jul 14 2004 Harald Hoyer <harald@redhat.com> - 030-1
1079- version 030
1080
1081* Wed Jul 14 2004 Harald Hoyer <harald@redhat.com> - 029-4
1082- added udevstart.static
1083
1084* Wed Jul 14 2004 Harald Hoyer <harald@redhat.com> - 029-3
1085- put /etc/sysconfig/udev in /etc/udev/udev.conf and removed it
1086- made only udev.static static
1087- make our defaults the default values
1088- removed /udev
1089
1090* Tue Jul  6 2004 Harald Hoyer <harald@redhat.com> - 029-1
1091- version 029, added udev_remove and udev_owner to udev.conf
1092
1093* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
1094- rebuilt
1095
1096* Tue Jun  8 2004 Harald Hoyer <harald@redhat.com> - 026-3
1097- fixed UDEV_REMOVE=no
1098
1099* Tue Jun  8 2004 Harald Hoyer <harald@redhat.com> - 026-2
1100- udev-026
1101- preserve ownership of device nodes, which already exist
1102- do not remove device nodes if UDEV_REMOVE="no"
1103- added volume_id
1104- build with klibc
1105
1106* Wed May 26 2004 Harald Hoyer <harald@redhat.com> - 025-1
1107- udev-025
1108- added ata_identify
1109- build nearly all with dietlibc
1110
1111* Mon May 10 2004 Elliot Lee <sopwith@redhat.com> 024-6
1112- Turn off udevd by default for FC2
1113
1114* Tue Apr 20 2004 Harald Hoyer <harald@redhat.com> - 024-5
1115- fixed permission for /dev/tty (FC2)
1116
1117* Thu Apr 15 2004 Harald Hoyer <harald@redhat.com> - 024-4
1118- moved the 00- files to 50-, to let the use place his files in front
1119
1120* Thu Apr 15 2004 Harald Hoyer <harald@redhat.com> - 024-3
1121- set UDEV_SELINUX to yes
1122- added UDEV_LOG
1123
1124* Thu Apr 15 2004 Harald Hoyer <harald@redhat.com> - 024-2
1125- added /udev to filelist
1126
1127* Wed Apr 14 2004 Harald Hoyer <harald@redhat.com> - 024-1
1128- update to 024
1129- added /etc/sysconfig/udev
1130- added selinux, pam_console, dbus support
1131
1132* Fri Mar 26 2004 Harald Hoyer <harald@redhat.com> - 023-1
1133- update to 023
1134
1135* Wed Mar 24 2004 Bill Nottingham <notting@redhat.com> 022-1
1136- update to 022
1137
1138* Sun Mar 21 2004 Florian La Roche <Florian.LaRoche@redhat.de>
1139- really move initscript
1140
1141* Sun Feb 29 2004 Florian La Roche <Florian.LaRoche@redhat.de>
1142- move chkconv to preun
1143- nicer url
1144
1145* Wed Feb 25 2004 Harald Hoyer <harald@redhat.com> - 018-1
1146- changes permissions and rules
1147
1148* Mon Feb 23 2004 Dan Walsh <dwalsh@redhat.com>
1149- Add selinux support
1150
1151* Thu Feb 19 2004 Greg Kroah-Hartman <greg@kroah.com>
1152- add some more files to the documentation directory
1153- add ability to build scsi_id and make it the default
1154
1155* Mon Feb 16 2004 Greg Kroah-Hartman <greg@kroah.com>
1156- fix up udevd build, as it's no longer needed to be build seperatly
1157- add udevtest to list of files
1158- more Red Hat sync ups.
1159
1160* Thu Feb 12 2004 Greg Kroah-Hartman <greg@kroah.com>
1161- add some changes from the latest Fedora udev release.
1162
1163* Mon Feb 2 2004 Greg Kroah-Hartman <greg@kroah.com>
1164- add udevsend, and udevd to the files
1165- add ability to build udevd with glibc after the rest is build with klibc
1166
1167* Mon Jan 26 2004 Greg Kroah-Hartman <greg@kroah.com>
1168- added udevinfo to rpm
1169- added URL to spec file
1170- added udevinfo's man page
1171
1172* Mon Jan 05 2004 Rolf Eike Beer <eike-hotplug@sf-tec.de>
1173- add defines to choose the init script (Redhat or LSB)
1174
1175* Tue Dec 16 2003 Robert Love <rml@ximian.com>
1176- install the initscript and run chkconfig on it
1177
1178* Tue Nov 2 2003 Greg Kroah-Hartman <greg@kroah.com>
1179- changes due to config file name changes
1180
1181* Fri Oct 17 2003 Robert Love <rml@tech9.net>
1182- Make work without a build root
1183- Correctly install the right files
1184- Pass the RPM_OPT_FLAGS to gcc so we can build per the build policy
1185- Put some prereqs in
1186- Install the hotplug symlink to udev
1187
1188* Mon Jul 28 2003 Paul Mundt <lethal@linux-sh.org>
1189- Initial spec file for udev-0.2.
Note: See TracBrowser for help on using the repository browser.