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