source: projects/specs/branches/6/u/udev/udev-vl.spec @ 7849

Revision 7849, 38.3 KB checked in by daisuke, 11 years ago (diff)

udev: remove unneeded deps

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