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