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