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