]> git.pld-linux.org Git - packages/geninitrd.git/blame - geninitrd.spec
- s/util-linux-ng7util-linux/
[packages/geninitrd.git] / geninitrd.spec
CommitLineData
8d4b3be5
PG
1### TODO:
2# - BUG: you can't set in /etc/mdadm.conf:
3# DEVICE partitions containers
4# (which is default BTW if none set). Generation of initrd will fail
5#
70a0ef68 6Summary: Creates an initial ramdisk image for preloading modules
4bd9777f 7Summary(pl.UTF-8): Narzędzie do tworzenia inicjalnego ramdysku używanego przy starcie systemu
70a0ef68 8Name: geninitrd
824e8293 9Version: 10000.31
417ef52a 10# leave rel 1 for ac
f14a75fd 11Release: 0.2
70a0ef68 12License: GPL
6e7d5844 13Group: Applications/System
3adc6ee3 14Source0: %{name}-%{version}.tar.gz
f14a75fd 15# Source0-md5: ba11c56735828f79148e476179945217
929a4239 16Patch0: %{name}-romfs.patch
b05ab846 17Patch1: %{name}-gzip-compressor.patch
0dd71c4b 18BuildRequires: xmlto >= 0:0.0.18-1
fe2d4469 19Requires: /usr/bin/ldd
0e068c76 20Requires: awk
43148c51 21Requires: busybox-initrd > 1.00-4
417ef52a 22Requires: coreutils
7b29e9b5 23Requires: cpio
0e068c76 24Requires: fileutils
25Requires: genromfs
26Requires: gzip
16ac31fd 27Requires: mktemp >= 1.5-8
f9ef5006 28Requires: module-init-tools >= 3.2.2-6
0e068c76 29Requires: mount
495990cb 30Requires: pci-database >= 0.4
e018b691 31Requires: rc-scripts >= 0.2.7
0e068c76 32Requires: tar
6f0074bc 33%if "%{pld_release}" == "ti"
34Requires: lvm2-initrd
35Requires: mdadm-initrd >= 1.12.0-1
36%else
55c24912 37# otherwise LVM subsystem is not enabled in geninitrd
f3d68afb 38Suggests: lvm2-initrd
e018b691 39# without this softraid installations of PLD fail
ac7d5e9a 40Suggests: mdadm-initrd >= 1.12.0-1
6f0074bc 41%endif
55c24912
ER
42# suggest for blkid
43%if "%{pld_release}" != "ac"
244b296a 44Suggests: util-linux-initrd
55c24912 45%endif
70a0ef68 46Obsoletes: mkinitrd
fe2d4469
ER
47%if "%{pld_release}" == "ac"
48Conflicts: grubby < 5.0.4-3.1
49%else
429e8b1c 50Conflicts: grubby < 6.0.24-3
fe2d4469 51%endif
f9ef5006 52Conflicts: udev-initrd < 1:104
ba3bd13f 53Conflicts: xz < 4.999.9
cf111fa1 54BuildArch: noarch
70a0ef68
JK
55BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
56
57%description
570eccb2
ER
58Geninitrd creates filesystem images for use as initial ramdisk
59(initrd) images. These ramdisk images are often used to preload the
60block device modules (SCSI or RAID) needed to access the root
61filesystem.
70a0ef68
JK
62
63In other words, generic kernels can be built without drivers for any
64SCSI adapters which load the SCSI driver as a module. Since the kernel
65needs to read those modules, but in this case it isn't able to address
66the SCSI adapter, an initial ramdisk is used. The initial ramdisk is
67loaded by the operating system loader (normally LILO) and is available
68to the kernel as soon as the ramdisk is loaded. The ramdisk image
69loads the proper SCSI adapter and allows the kernel to mount the root
70filesystem. The geninitrd program creates such a ramdisk using
71information found in the /etc/modules.conf file.
72
54baa167
JR
73%description -l pl.UTF-8
74Geninitrd służy do tworzenia obrazu systemu plikowego używanego jako
75inicjalny ramdysk (initrd), z którego przy starcie systemu są ładowane
76moduły kernela z obsługą urządzeń których obsługa nie jest
77wkompilowana w kernel. Zazwyczaj modułami ładowanymi z inicjalnego
78systemu plikowego są sterowniki SCSI, IDE czy też RAID po to żeby w
79dalszej części inicjacji systemu był możliwy dostęp do głównego
70a0ef68
JK
80systemu plikowego (root fs).
81
54baa167
JR
82Dzięki initrd jest możliwe używanie dystrybucyjnego kernela w którym
83wkompilowana jest minimalna ilość obsługi różnych urządzeń, a reszta
84kodu obsługi sterowników SCSI, IDE czy RAID jest doczytywana w trakcie
70a0ef68 85startu z initrd. Skrypt geninitrd generuje obraz ramdysku na podstawie
54baa167 86bieżących informacji zawartych w /etc/modules.conf.
70a0ef68
JK
87
88%prep
89%setup -q
929a4239 90%if "%{pld_release}" == "ti"
91%patch0 -p1
b05ab846 92%patch1 -p1
929a4239 93%endif
f2aef47d 94
0dd71c4b 95%build
e0c74de2 96%{__make}
0dd71c4b 97
70a0ef68
JK
98%install
99rm -rf $RPM_BUILD_ROOT
f2aef47d 100
37688ad3 101%{__make} install \
e0c74de2 102 DESTDIR=$RPM_BUILD_ROOT
70a0ef68
JK
103
104%clean
105rm -rf $RPM_BUILD_ROOT
106
107%files
108%defattr(644,root,root,755)
61d0a20b 109%doc ChangeLog
417ef52a 110%config(noreplace) %verify(not md5 mtime size) /etc/sysconfig/geninitrd
70a0ef68 111%attr(755,root,root) /sbin/geninitrd
429e8b1c 112%{_mandir}/man8/geninitrd.8*
417ef52a 113
429e8b1c
ER
114%dir /lib/geninitrd
115/lib/geninitrd/functions
116/lib/geninitrd/mod-*.sh
824e8293 117%attr(755,root,root) /lib/geninitrd/extract-ikconfig
This page took 0.202957 seconds and 4 git commands to generate.