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