]> git.pld-linux.org Git - packages/geninitrd.git/blob - geninitrd.spec
- cosmetics.
[packages/geninitrd.git] / geninitrd.spec
1 Summary:        Creates an initial ramdisk image for preloading modules
2 Summary(pl):    Narzedzie do tworzenia inicjalnego ramdysku u¿ywanego przy starcie systemu
3 Name:           geninitrd
4 Version:        2.0
5 Release:        2
6 License:        GPL
7 Group:          Utilities/System
8 Group(pl):      Narzêdzia/System
9 Source0:        ftp://ftp.pld.org.pl/software/geninitrd/%{name}-%{version}.tar.gz
10 Requires:       awk
11 Requires:       sh-utils
12 Requires:       fileutils
13 Requires:       mount
14 Requires:       bsp
15 Requires:       gzip
16 Requires:       tar
17 Requires:       genromfs
18 Prereq:         rc-scripts >= 0.2.7
19 Requires:       mktemp >= 1.5-8
20 Obsoletes:      mkinitrd
21 ExclusiveArch:  %{ix86} sparc sparc64 ia64
22 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
23
24 %description
25 Mkinitrd creates filesystem images for use as initial ramdisk (initrd)
26 images. These ramdisk images are often used to preload the block
27 device modules (SCSI or RAID) needed to access the root filesystem.
28
29 In other words, generic kernels can be built without drivers for any
30 SCSI adapters which load the SCSI driver as a module. Since the kernel
31 needs to read those modules, but in this case it isn't able to address
32 the SCSI adapter, an initial ramdisk is used. The initial ramdisk is
33 loaded by the operating system loader (normally LILO) and is available
34 to the kernel as soon as the ramdisk is loaded. The ramdisk image
35 loads the proper SCSI adapter and allows the kernel to mount the root
36 filesystem. The geninitrd program creates such a ramdisk using
37 information found in the /etc/modules.conf file.
38
39 %description -l pl
40 Mkinitrd s³u¿y do tworzenia obrazu systemu plikowego u¿ywanego jako
41 inicjalny ramdysk (initrd), z którego przy starcie systemu s± ³adowane
42 modu³y kernela z obs³ug± urz±dzeñ których obs³uga nie jest
43 wkompilowana w kernel. Zazwyczaj modu³ami ³adowanymi z inicjalnego
44 systemu plikowego s± sterowniki SCSI, IDE czy te¿ RAID po to ¿eby w
45 dalszej czê¶ci inicjacji systemu by³ mo¿liwy dostêp do g³ównego
46 systemu plikowego (root fs).
47
48 Dziêki initrd jest mo¿liwe u¿ywanie dystrybucyjnego kernela w którym
49 wkompilowana jest minimalna ilo¶æ obs³ugi ró¿nych urz±dzeñ, a reszta
50 kodu obs³ugi sterowników SCSI, IDE czy RAID jest doczytywana w trakcie
51 startu z initrd. Skrypt geninitrd generuje obraz ramdysku na podstawie
52 bie¿±cych informacji zawartych w /etc/modules.conf.
53
54 %prep
55 %setup -q
56
57 %build
58 mv Makefile Makefile.sav
59 sed s/"VERSION=1.2"/"VERSION=%{version}"/g Makefile.sav >Makefile
60 rm Makefile.sav
61
62 %install
63 rm -rf $RPM_BUILD_ROOT
64
65 %{__make} BUILDROOT=$RPM_BUILD_ROOT install
66
67 %clean
68 rm -rf $RPM_BUILD_ROOT
69
70 %files
71 %defattr(644,root,root,755)
72 %attr(755,root,root) /sbin/geninitrd
73 %config(noreplace) /etc/sysconfig/geninitrd
74 %{_mandir}/man8/*
This page took 0.101355 seconds and 3 git commands to generate.