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