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