- add module 90multipath
- add module 01fips - renamed module 95ccw to 95znet (bug #533833) - crypt: ignore devices in /etc/crypttab (root is not in there) - dasd: only install /etc/dasd.conf in hostonly mode (bug #533833) - zfcp: only install /etc/zfcp.conf in hostonly mode (bug #533833) - kernel-modules: add scsi_dh scsi_dh_rdac scsi_dh_emc (bug #527750) - dasd: use dasdconf.sh from s390utils (bug #533833)
This commit is contained in:
parent
3164e09ef7
commit
b2933880d8
@ -1 +1 @@
|
|||||||
dracut-002-8686bd55.tar.bz2
|
dracut-002-200e5914.tar.bz2
|
||||||
|
23
dracut.spec
23
dracut.spec
@ -1,4 +1,4 @@
|
|||||||
%define gittag 8686bd55
|
%define gittag 200e5914
|
||||||
%define with_switch_root 1
|
%define with_switch_root 1
|
||||||
|
|
||||||
%if 0%{?fedora} > 11
|
%if 0%{?fedora} > 11
|
||||||
@ -18,7 +18,7 @@
|
|||||||
|
|
||||||
Name: dracut
|
Name: dracut
|
||||||
Version: 002
|
Version: 002
|
||||||
Release: 21%{?rdist}
|
Release: 22%{?rdist}
|
||||||
Summary: Initramfs generator using udev
|
Summary: Initramfs generator using udev
|
||||||
Group: System Environment/Base
|
Group: System Environment/Base
|
||||||
License: GPLv2+
|
License: GPLv2+
|
||||||
@ -62,7 +62,7 @@ BuildArch: noarch
|
|||||||
dracut is a new, event-driven initramfs infrastructure based around udev.
|
dracut is a new, event-driven initramfs infrastructure based around udev.
|
||||||
|
|
||||||
%package network
|
%package network
|
||||||
Summary: dracut modules to build a dracut initramfs with network support
|
Summary: Dracut modules to build a dracut initramfs with network support
|
||||||
Requires: %{name} = %{version}-%{release}
|
Requires: %{name} = %{version}-%{release}
|
||||||
Requires: rpcbind nfs-utils
|
Requires: rpcbind nfs-utils
|
||||||
Requires: iscsi-initiator-utils
|
Requires: iscsi-initiator-utils
|
||||||
@ -98,7 +98,7 @@ This package requires everything which is needed to build a initramfs with all
|
|||||||
kernel modules and firmware files needed by dracut modules.
|
kernel modules and firmware files needed by dracut modules.
|
||||||
|
|
||||||
%package tools
|
%package tools
|
||||||
Summary: dracut tools to build the local initramfs
|
Summary: Dracut tools to build the local initramfs
|
||||||
Requires: coreutils cryptsetup-luks device-mapper
|
Requires: coreutils cryptsetup-luks device-mapper
|
||||||
Requires: diffutils dmraid findutils gawk grep lvm2
|
Requires: diffutils dmraid findutils gawk grep lvm2
|
||||||
Requires: module-init-tools sed
|
Requires: module-init-tools sed
|
||||||
@ -144,6 +144,7 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%config(noreplace) /etc/dracut.conf
|
%config(noreplace) /etc/dracut.conf
|
||||||
%{_mandir}/man8/dracut.8*
|
%{_mandir}/man8/dracut.8*
|
||||||
%{_datadir}/dracut/modules.d/00dash
|
%{_datadir}/dracut/modules.d/00dash
|
||||||
|
%{_datadir}/dracut/modules.d/01fips
|
||||||
%{_datadir}/dracut/modules.d/10redhat-i18n
|
%{_datadir}/dracut/modules.d/10redhat-i18n
|
||||||
%{_datadir}/dracut/modules.d/10rpmversion
|
%{_datadir}/dracut/modules.d/10rpmversion
|
||||||
%{_datadir}/dracut/modules.d/50plymouth
|
%{_datadir}/dracut/modules.d/50plymouth
|
||||||
@ -154,13 +155,14 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_datadir}/dracut/modules.d/90kernel-modules
|
%{_datadir}/dracut/modules.d/90kernel-modules
|
||||||
%{_datadir}/dracut/modules.d/90lvm
|
%{_datadir}/dracut/modules.d/90lvm
|
||||||
%{_datadir}/dracut/modules.d/90mdraid
|
%{_datadir}/dracut/modules.d/90mdraid
|
||||||
|
%{_datadir}/dracut/modules.d/90multipath
|
||||||
%{_datadir}/dracut/modules.d/95debug
|
%{_datadir}/dracut/modules.d/95debug
|
||||||
%{_datadir}/dracut/modules.d/95resume
|
%{_datadir}/dracut/modules.d/95resume
|
||||||
%{_datadir}/dracut/modules.d/95rootfs-block
|
%{_datadir}/dracut/modules.d/95rootfs-block
|
||||||
%{_datadir}/dracut/modules.d/95dasd
|
%{_datadir}/dracut/modules.d/95dasd
|
||||||
%{_datadir}/dracut/modules.d/95dasd_mod
|
%{_datadir}/dracut/modules.d/95dasd_mod
|
||||||
%{_datadir}/dracut/modules.d/95zfcp
|
%{_datadir}/dracut/modules.d/95zfcp
|
||||||
%{_datadir}/dracut/modules.d/95ccw
|
%{_datadir}/dracut/modules.d/95znet
|
||||||
%{_datadir}/dracut/modules.d/95terminfo
|
%{_datadir}/dracut/modules.d/95terminfo
|
||||||
%{_datadir}/dracut/modules.d/95udev-rules
|
%{_datadir}/dracut/modules.d/95udev-rules
|
||||||
%{_datadir}/dracut/modules.d/95udev-rules.ub810
|
%{_datadir}/dracut/modules.d/95udev-rules.ub810
|
||||||
@ -169,6 +171,7 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%attr(0644,root,root) %ghost %config(missingok,noreplace) %{_localstatedir}/log/dracut.log
|
%attr(0644,root,root) %ghost %config(missingok,noreplace) %{_localstatedir}/log/dracut.log
|
||||||
|
|
||||||
%files network
|
%files network
|
||||||
|
%doc README HACKING TODO COPYING AUTHORS NEWS
|
||||||
%defattr(-,root,root,0755)
|
%defattr(-,root,root,0755)
|
||||||
%{_datadir}/dracut/modules.d/40network
|
%{_datadir}/dracut/modules.d/40network
|
||||||
%{_datadir}/dracut/modules.d/95fcoe
|
%{_datadir}/dracut/modules.d/95fcoe
|
||||||
@ -195,6 +198,16 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%dir /var/lib/dracut/overlay
|
%dir /var/lib/dracut/overlay
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Nov 12 2009 Harald Hoyer <harald@redhat.com> 002-22
|
||||||
|
- add module 90multipath
|
||||||
|
- add module 01fips
|
||||||
|
- renamed module 95ccw to 95znet (bug #533833)
|
||||||
|
- crypt: ignore devices in /etc/crypttab (root is not in there)
|
||||||
|
- dasd: only install /etc/dasd.conf in hostonly mode (bug #533833)
|
||||||
|
- zfcp: only install /etc/zfcp.conf in hostonly mode (bug #533833)
|
||||||
|
- kernel-modules: add scsi_dh scsi_dh_rdac scsi_dh_emc (bug #527750)
|
||||||
|
- dasd: use dasdconf.sh from s390utils (bug #533833)
|
||||||
|
|
||||||
* Fri Nov 06 2009 Harald Hoyer <harald@redhat.com> 002-21
|
* Fri Nov 06 2009 Harald Hoyer <harald@redhat.com> 002-21
|
||||||
- fix rd_DASD argument handling (bug #531720)
|
- fix rd_DASD argument handling (bug #531720)
|
||||||
- Resolves: rhbz#531720
|
- Resolves: rhbz#531720
|
||||||
|
Loading…
Reference in New Issue
Block a user