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