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