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