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