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