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