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