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