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