]> git.pld-linux.org Git - packages/geninitrd.git/blob - geninitrd.spec
087a7ec3a41ec65c660c0814d4b80e5555dc85f2
[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:        5
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 Patch2:         %{name}-scsi_sync_scan.patch
14 Patch3:         %{name}-tuxonice_on_dm.patch
15 Patch4:         %{name}-mdadm.patch
16 BuildRequires:  xmlto >= 0:0.0.18-1
17 Requires:       /usr/bin/ldd
18 Requires:       awk
19 Requires:       busybox-initrd > 1.00-4
20 Requires:       coreutils
21 Requires:       cpio
22 Requires:       fileutils
23 Requires:       genromfs
24 Requires:       gzip
25 Requires:       mktemp >= 1.5-8
26 Requires:       module-init-tools >= 3.2.2-6
27 Requires:       mount
28 Requires:       pci-database >= 0.4
29 Requires:       rc-scripts >= 0.2.7
30 Requires:       tar
31 %if "%{pld_release}" == "ti"
32 Requires:       lvm2-initrd
33 Requires:       mdadm-initrd >= 1.12.0-1
34 %else
35 # otherwise LVM subsystem is automatically disabled in geninitrd
36 Suggests:       lvm2-initrd
37 # without this softraid installations of PLD fail
38 Suggests:       mdadm-initrd >= 1.12.0-1
39 %endif
40 Obsoletes:      mkinitrd
41 %if "%{pld_release}" == "ac"
42 Conflicts:      grubby < 5.0.4-3.1
43 %else
44 Conflicts:      grubby < 6.0.24-3
45 %endif
46 Conflicts:      udev-initrd < 1:104
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 %if "%{pld_release}" == "ti"
85 %patch0 -p1
86 %patch1 -p1
87 %endif
88 %patch2 -p0
89 %patch3 -p1
90 %patch4 -p0
91
92 %build
93 %{__make}
94
95 %install
96 rm -rf $RPM_BUILD_ROOT
97
98 %{__make} install \
99         DESTDIR=$RPM_BUILD_ROOT
100
101 %clean
102 rm -rf $RPM_BUILD_ROOT
103
104 %files
105 %defattr(644,root,root,755)
106 %doc ChangeLog
107 %config(noreplace) %verify(not md5 mtime size) /etc/sysconfig/geninitrd
108 %attr(755,root,root) /sbin/geninitrd
109 %{_mandir}/man8/geninitrd.8*
110
111 %dir /lib/geninitrd
112 /lib/geninitrd/functions
113 /lib/geninitrd/mod-*.sh
This page took 0.026988 seconds and 3 git commands to generate.