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