]> git.pld-linux.org Git - packages/geninitrd.git/blob - geninitrd.spec
- partial dmraid fix
[packages/geninitrd.git] / geninitrd.spec
1 #
2 # Conditional build:
3 %bcond_with     dmraid  # include partial ugly hack for dmraid. do not use!
4 #
5 Summary:        Creates an initial ramdisk image for preloading modules
6 Summary(pl):    Narzêdzie do tworzenia inicjalnego ramdysku u¿ywanego przy starcie systemu
7 Name:           geninitrd
8 Version:        4605
9 Release:        3.1
10 License:        GPL
11 Group:          Applications/System
12 Source0:        ftp://ftp.pld-linux.org/people/arekm/software/%{name}-%{version}.tar.gz
13 # Source0-md5:  9f15923a273abec0644749b3db533fff
14 Patch0:         %{name}-en_xml.patch
15 Patch1:         %{name}-mdadm.patch
16 Patch2:         %{name}-dmraid.patch
17 BuildRequires:  xmlto >= 0:0.0.18-1
18 PreReq:         rc-scripts >= 0.2.7
19 Requires:       awk
20 Requires:       busybox-initrd >= 1.00-0.rc3.2
21 Requires:       fileutils
22 Requires:       genromfs
23 Requires:       gzip
24 # without this softraid installations of PLD fail
25 Requires:       mdadm-initrd >= 1.12.0-1
26 Requires:       mktemp >= 1.5-8
27 Requires:       mount
28 Requires:       pci-database >= 0.4
29 Requires:       sh-utils
30 Requires:       tar
31 Obsoletes:      mkinitrd
32 BuildArch:      noarch
33 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
34
35 %description
36 Geninitrd creates filesystem images for use as initial ramdisk (initrd)
37 images. These ramdisk images are often used to preload the block
38 device modules (SCSI or RAID) needed to access the root filesystem.
39
40 In other words, generic kernels can be built without drivers for any
41 SCSI adapters which load the SCSI driver as a module. Since the kernel
42 needs to read those modules, but in this case it isn't able to address
43 the SCSI adapter, an initial ramdisk is used. The initial ramdisk is
44 loaded by the operating system loader (normally LILO) and is available
45 to the kernel as soon as the ramdisk is loaded. The ramdisk image
46 loads the proper SCSI adapter and allows the kernel to mount the root
47 filesystem. The geninitrd program creates such a ramdisk using
48 information found in the /etc/modules.conf file.
49
50 %description -l pl
51 Geninitrd s³u¿y do tworzenia obrazu systemu plikowego u¿ywanego jako
52 inicjalny ramdysk (initrd), z którego przy starcie systemu s± ³adowane
53 modu³y kernela z obs³ug± urz±dzeñ których obs³uga nie jest
54 wkompilowana w kernel. Zazwyczaj modu³ami ³adowanymi z inicjalnego
55 systemu plikowego s± sterowniki SCSI, IDE czy te¿ RAID po to ¿eby w
56 dalszej czê¶ci inicjacji systemu by³ mo¿liwy dostêp do g³ównego
57 systemu plikowego (root fs).
58
59 Dziêki initrd jest mo¿liwe u¿ywanie dystrybucyjnego kernela w którym
60 wkompilowana jest minimalna ilo¶æ obs³ugi ró¿nych urz±dzeñ, a reszta
61 kodu obs³ugi sterowników SCSI, IDE czy RAID jest doczytywana w trakcie
62 startu z initrd. Skrypt geninitrd generuje obraz ramdysku na podstawie
63 bie¿±cych informacji zawartych w /etc/modules.conf.
64
65 %prep
66 %setup -q
67 %patch1 -p1
68 %patch2 -p1
69
70 %build
71 rm geninitrd.8
72 %{__make} geninitrd.8
73
74 %install
75 rm -rf $RPM_BUILD_ROOT
76
77 %{__make} install \
78         BUILDROOT=$RPM_BUILD_ROOT
79
80 %clean
81 rm -rf $RPM_BUILD_ROOT
82
83 %files
84 %defattr(644,root,root,755)
85 %doc ChangeLog
86 %attr(755,root,root) /sbin/geninitrd
87 %config(noreplace) %verify(not md5 size mtime) /etc/sysconfig/geninitrd
88 %{_mandir}/man8/*
This page took 0.487646 seconds and 4 git commands to generate.