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