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