]> git.pld-linux.org Git - packages/geninitrd.git/blame_incremental - geninitrd.spec
- not needed on th, older rev than ac ;)
[packages/geninitrd.git] / geninitrd.spec
... / ...
CommitLineData
1Summary: Creates an initial ramdisk image for preloading modules
2Summary(pl.UTF-8): Narzędzie do tworzenia inicjalnego ramdysku używanego przy starcie systemu
3Name: geninitrd
4Version: 8702
5Release: 2
6License: GPL
7Group: Applications/System
8Source0: %{name}-%{version}.tar.gz
9# Source0-md5: f5e55c473bcfaf58f5c54ee4ec3e8097
10Patch0: %{name}-typo.patch
11BuildRequires: xmlto >= 0:0.0.18-1
12Requires: awk
13Requires: busybox-initrd >= 1.00-0.rc3.2
14Requires: cpio
15Requires: fileutils
16Requires: genromfs
17Requires: gzip
18Requires: rc-scripts >= 0.2.7
19# without this softraid installations of PLD fail
20Requires: mdadm-initrd >= 1.12.0-1
21Requires: mktemp >= 1.5-8
22Requires: mount
23Requires: pci-database >= 0.4
24Requires: sh-utils
25Requires: tar
26Conflicts: udev-initrd < 1:104
27Obsoletes: mkinitrd
28BuildArch: noarch
29BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
30
31%description
32Geninitrd creates filesystem images for use as initial ramdisk
33(initrd) images. These ramdisk images are often used to preload the
34block device modules (SCSI or RAID) needed to access the root
35filesystem.
36
37In other words, generic kernels can be built without drivers for any
38SCSI adapters which load the SCSI driver as a module. Since the kernel
39needs to read those modules, but in this case it isn't able to address
40the SCSI adapter, an initial ramdisk is used. The initial ramdisk is
41loaded by the operating system loader (normally LILO) and is available
42to the kernel as soon as the ramdisk is loaded. The ramdisk image
43loads the proper SCSI adapter and allows the kernel to mount the root
44filesystem. The geninitrd program creates such a ramdisk using
45information found in the /etc/modules.conf file.
46
47%description -l pl.UTF-8
48Geninitrd służy do tworzenia obrazu systemu plikowego używanego jako
49inicjalny ramdysk (initrd), z którego przy starcie systemu są ładowane
50moduły kernela z obsługą urządzeń których obsługa nie jest
51wkompilowana w kernel. Zazwyczaj modułami ładowanymi z inicjalnego
52systemu plikowego są sterowniki SCSI, IDE czy też RAID po to żeby w
53dalszej części inicjacji systemu był możliwy dostęp do głównego
54systemu plikowego (root fs).
55
56Dzięki initrd jest możliwe używanie dystrybucyjnego kernela w którym
57wkompilowana jest minimalna ilość obsługi różnych urządzeń, a reszta
58kodu obsługi sterowników SCSI, IDE czy RAID jest doczytywana w trakcie
59startu z initrd. Skrypt geninitrd generuje obraz ramdysku na podstawie
60bieżących informacji zawartych w /etc/modules.conf.
61
62%prep
63%setup -q
64%patch0 -p1
65
66%build
67%{__make}
68
69%install
70rm -rf $RPM_BUILD_ROOT
71
72%{__make} install \
73 DESTDIR=$RPM_BUILD_ROOT
74
75%clean
76rm -rf $RPM_BUILD_ROOT
77
78%files
79%defattr(644,root,root,755)
80%doc ChangeLog
81%attr(755,root,root) /sbin/geninitrd
82%dir %{_sysconfdir}/geninitrd
83%{_sysconfdir}/geninitrd/functions
84%config(noreplace) %verify(not md5 mtime size) /etc/sysconfig/geninitrd
85%{_mandir}/man8/*
This page took 0.026532 seconds and 4 git commands to generate.