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

Revision 3307, 35.6 KB checked in by daisuke, 13 years ago (diff)

udev: enable static library, add libudev-static subpackage.

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