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