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