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