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