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

Revision 4306, 37.7 KB checked in by Takemikaduchi, 13 years ago (diff)

create compat32 sub packages

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