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