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

Revision 4506, 37.9 KB checked in by Takemikaduchi, 13 years ago (diff)

bug fix: support for IDE

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