1 |
Summary: Creates an initial ramdisk image for preloading modules. |
2 |
Name: mkinitrd |
3 |
Version: 4.2.1.13 |
4 |
Release: 4.1%{?dist} |
5 |
License: GPL |
6 |
Group: System Environment/Base |
7 |
Source: mkinitrd-%{version}.tar.bz2 |
8 |
Patch0: mkinitrd-kernel-cmdline-spaces.patch |
9 |
Patch1: mkinitrd-4.2.1.13-bz479239-virtio.patch |
10 |
Patch2: mkinitrd-4.2.1.13-mdassemble.patch |
11 |
ExclusiveOs: Linux |
12 |
Prereq: dev |
13 |
Requires: e2fsprogs, /bin/sh, fileutils, grep, mount, gzip, tar, /sbin/insmod.static, /sbin/losetup, mktemp >= 1.5-5, findutils, lvm2, kudzu, /usr/bin/which |
14 |
Requires: filesystem >= 2.1.0, cpio |
15 |
Conflicts: udev < 0:032 |
16 |
BuildRequires: popt |
17 |
%ifarch i386 |
18 |
BuildRequires: dietlibc |
19 |
%endif |
20 |
%ifarch ppc |
21 |
Requires: ppc64-utils >= 0.3-1 |
22 |
%endif |
23 |
BuildRoot: %{_tmppath}/%{name}-root |
24 |
|
25 |
%description |
26 |
Mkinitrd creates filesystem images for use as initial ramdisk (initrd) |
27 |
images. These ramdisk images are often used to preload the block |
28 |
device modules (SCSI or RAID) needed to access the root filesystem. |
29 |
|
30 |
In other words, generic kernels can be built without drivers for any |
31 |
SCSI adapters which load the SCSI driver as a module. Since the |
32 |
kernel needs to read those modules, but in this case it isn't able to |
33 |
address the SCSI adapter, an initial ramdisk is used. The initial |
34 |
ramdisk is loaded by the operating system loader (normally LILO) and |
35 |
is available to the kernel as soon as the ramdisk is loaded. The |
36 |
ramdisk image loads the proper SCSI adapter and allows the kernel to |
37 |
mount the root filesystem. The mkinitrd program creates such a |
38 |
ramdisk using information found in the /etc/modules.conf file. |
39 |
|
40 |
%prep |
41 |
%setup -q |
42 |
%patch0 -p1 -b .spaces |
43 |
%patch1 -p1 -b .virtio |
44 |
%patch2 -p1 -b .mdassemble |
45 |
|
46 |
%build |
47 |
make |
48 |
make test |
49 |
if [ $? != 0 ]; then exit 1; fi |
50 |
|
51 |
%install |
52 |
rm -rf $RPM_BUILD_ROOT |
53 |
make BUILDROOT=$RPM_BUILD_ROOT mandir=%{_mandir} install |
54 |
|
55 |
%clean |
56 |
rm -rf $RPM_BUILD_ROOT |
57 |
|
58 |
%files |
59 |
%defattr(-,root,root) |
60 |
%attr(755,root,root) /sbin/mkinitrd |
61 |
%attr(644,root,root) %{_mandir}/man8/mkinitrd.8* |
62 |
%attr(755,root,root) /sbin/nash |
63 |
%attr(644,root,root) %{_mandir}/man8/nash.8* |
64 |
%config %attr(755,root,root) /sbin/installkernel |
65 |
%attr(755,root,root) /sbin/new-kernel-pkg |
66 |
%attr(755,root,root) /sbin/grubby |
67 |
%attr(644,root,root) %{_mandir}/man8/grubby.8* |
68 |
|
69 |
%changelog |
70 |
* Mon Aug 24 2009 Shad L. Lords <slords@mail.com> 4.2.1.13-4.1.sme |
71 |
- Use generated config file instead of just scanning [SME: 2192] |
72 |
- Use mdassemble rather than raidautorun in initrd, so that we control |
73 |
UUID to device mapping. [SME: 961, 1895] |
74 |
|
75 |
* Tue Jan 13 2009 Peter Jones <pjones@redhat.com> - 4.2.1.13-4 |
76 |
- Add virtio support (hansg) |
77 |
Resolves: rhbz#479239 |
78 |
|
79 |
* Tue Sep 25 2007 Peter Jones <pjones@redhat.com> - 4.2.1.13-2 |
80 |
- Support quoted spaces on the kernel command line |
81 |
Resolves: #240777 |
82 |
|
83 |
* Tue Aug 8 2007 Peter Jones <pjones@redhat.com> - 4.2.1.13-1 |
84 |
- Fix linking error |
85 |
Related: #214841 |
86 |
|
87 |
* Tue Aug 7 2007 Peter Jones <pjones@redhat.com> - 4.2.1.12-1 |
88 |
- Fix "make test" regression |
89 |
Related: #214841 |
90 |
|
91 |
* Tue Aug 7 2007 Peter Jones <pjones@redhat.com> - 4.2.1.11-1 |
92 |
- Use dynamic buffer for input file. |
93 |
Resolves: #214841 |
94 |
- Fix spelling errors in grubby.8 |
95 |
Resolves: #230605 |
96 |
- Fix "--without-usb" and "--with-usb" handling. |
97 |
Resolves: #246069 |
98 |
|
99 |
* Wed Feb 7 2007 Peter Jones <pjones@redhat.com> - 4.2.1.10-1.1 |
100 |
- Fix 'requires' for usb changes. |
101 |
Related: #202070 |
102 |
|
103 |
* Fri Jan 31 2007 Peter Jones <pjones@redhat.com> - 4.2.1.10-1 |
104 |
- Allow use of usb devices as the root filesystem |
105 |
Resolves: #202070 |
106 |
|
107 |
* Thu Jan 30 2007 Peter Jones <pjones@redhat.com> - 4.2.1.9-1 |
108 |
- Fix handling of modprobe options when they span multiple lines |
109 |
Resolves: #184544 |
110 |
|
111 |
* Mon Apr 10 2006 Peter Jones <pjones@redhat.com> - 4.2.1.8-1 |
112 |
- Fix mangling of mount when using device mapper (#171872) |
113 |
- Fix lvm striping (#174678, patch from Bastien Nocera) |
114 |
|
115 |
* Wed Aug 31 2005 Peter Jones <pjones@redhat.com> - 4.2.1.6-1 |
116 |
- Handle short reads correctly when dealing with files in /proc (#137816) |
117 |
|
118 |
* Mon Aug 29 2005 Peter Jones <pjones@redhat.com> - 4.2.1.5-1 |
119 |
- More fixes for duplicate arguments (#147222) |
120 |
|
121 |
* Mon Apr 4 2005 Peter Jones <pjones@redhat.com> - 4.2.1.5-1 |
122 |
- Don't consolidate duplicates in "--args" (#147222) |
123 |
|
124 |
* Fri Apr 1 2005 Peter Jones <pjones@redhat.com> - 4.2.1.4-1 |
125 |
- close /init just after reading the file, instead of after runStartup() |
126 |
finishes, so it gets closed before we exec() /sbin/init . (#145601) |
127 |
|
128 |
* Thu Mar 17 2005 Peter Jones <pjones@redhat.com> - 4.2.1.3-1 |
129 |
- Don't do vgmknodes (more of #151172) |
130 |
|
131 |
* Tue Mar 15 2005 Peter Jones <pjones@redhat.com> - 4.2.1.2-1 |
132 |
- Fix clustered volume group locking in the initrd during vgscan/vgchange, |
133 |
and only activate the volume group / lives on (#151172) |
134 |
|
135 |
* Mon Mar 14 2005 Peter Jones <pjones@redhat.com> - 4.2.1.1-1 |
136 |
- Make getArg return NULL on cmd=NULL, fixing #144472 . Based on a |
137 |
patch from Kasper Dupont. |
138 |
- Make nash expand environment variables on command lines (#144474) |
139 |
- Make nash check pids returned from wait*() (#145660) |
140 |
|
141 |
* Wed Nov 3 2004 Jeremy Katz <katzj@redhat.com> |
142 |
- handle machines with lots of disks in /proc/partitions (#137816) |
143 |
|
144 |
* Sun Oct 24 2004 Jeremy Katz <katzj@redhat.com> |
145 |
- require cpio (#136814) |
146 |
|
147 |
* Sun Oct 17 2004 Jeremy Katz <katzj@redhat.com> - 4.1.18-1 |
148 |
- fix UPDATEDEFAULT with new-kernel-pkg (#135997) |
149 |
|
150 |
* Fri Oct 15 2004 Jeremy Katz <katzj@redhat.com> - 4.1.17-1 |
151 |
- run udevstart again instead of sleeping, this will ensure all |
152 |
devices are created in all cases after modules have been |
153 |
loaded (thanks to notting) |
154 |
|
155 |
* Fri Oct 15 2004 Jeremy Katz <katzj@redhat.com> - 4.1.16-1 |
156 |
- mkinitrd: Sleep briefly to let udev finish creating devices |
157 |
|
158 |
* Wed Oct 13 2004 Jeremy Katz <katzj@redhat.com> - 4.1.15-1 |
159 |
- new-kernel-pkg: set new kernels as default (#135161) when |
160 |
a) /etc/sysconfig/kernel contains UPDATEDEFAULT=yes |
161 |
b) --package foo is passed in and foo matches DEFAULTKERNEL |
162 |
in /etc/sysconfig/kernel |
163 |
|
164 |
* Thu Sep 30 2004 Jeremy Katz <katzj@redhat.com> - 4.1.14-1 |
165 |
- support changing root on the kernel command line with lvm (#133236) |
166 |
|
167 |
* Wed Sep 22 2004 Jeremy Katz <katzj@redhat.com> - 4.1.12-1 |
168 |
- update to work with udev 032, conflict with old udev |
169 |
- if udev is present, use it. trying to avoid the use of udev if it's |
170 |
installed is the road to things not working |
171 |
|
172 |
* Fri Sep 10 2004 Jeremy Katz <katzj@redhat.com> - 4.1.11-1 |
173 |
- more fixing |
174 |
|
175 |
* Wed Sep 8 2004 Jeremy Katz <katzj@redhat.com> - 4.1.10-1 |
176 |
- mkinitrd: mount tmpfs with the right permissions |
177 |
|
178 |
* Tue Aug 31 2004 Jeremy Katz <katzj@redhat.com> - 4.1.9-1 |
179 |
- mkinitrd: use tmpfs instead of ramfs for udev stuff |
180 |
|
181 |
* Fri Aug 27 2004 Jeremy Katz <katzj@redhat.com> - 4.1.8-1 |
182 |
- nash: and the hack to fix ppc broke other arches, conditionalize it (#130928) |
183 |
|
184 |
* Wed Aug 25 2004 Jeremy Katz <katzj@redhat.com> - 4.1.6-1 |
185 |
- nash: fix another off by one (#130987) |
186 |
- nash: hack to fix ppc booting (#130928) |
187 |
|
188 |
* Tue Aug 25 2004 Karsten Hopp <karsten@redhat.com> - 4.1.5-1 |
189 |
- fix zfcp handling |
190 |
|
191 |
* Tue Aug 24 2004 Jeremy Katz <katzj@redhat.com> - 4.1.4-1 |
192 |
- nash: create raid device if needed (think udev) before calling |
193 |
the raidautorun ioctl (#130561) |
194 |
|
195 |
* Tue Aug 24 2004 Jeremy Katz <katzj@redhat.com> - 4.1.3-1 |
196 |
- nash: make echo behavior consistent with other shells |
197 |
- more fixes from Steve Grubb (#129673) |
198 |
|
199 |
* Mon Aug 23 2004 Karsten Hopp <karsten@redhat.de> 4.1.2-1 |
200 |
- mkinitrd: add support for zfcp devices (mainframe) |
201 |
|
202 |
* Thu Aug 19 2004 Jeremy Katz <katzj@redhat.com> - 4.1.1-1 |
203 |
- don't remove lost+found (#130327) |
204 |
- don't try to mount/umount /sys on 2.4 (#130298) |
205 |
|
206 |
* Tue Aug 17 2004 Jeremy Katz <katzj@redhat.com> - 4.1.0-1 |
207 |
- mkinitrd: if using udev for the initrd, set things up appropriately |
208 |
(based on patches from Harald Hoyer and Thomas Woerner) |
209 |
- nash: support for echo -n |
210 |
- nash: better error message on exec failures |
211 |
- nash: exec udev if we're called as a hotplug handler |
212 |
|
213 |
* Mon Aug 16 2004 Jeremy Katz <katzj@redhat.com> - 4.0.6-1 |
214 |
- various fixes from a code review by Steve Grubb which should fix |
215 |
some of the lingering problems (#129673) |
216 |
- nash: warning fix from Michal Jaegermann (#129673) |
217 |
- grubby: removal with (hd0,0) |
218 |
|
219 |
* Thu Aug 12 2004 Jeremy Katz <katzj@redhat.com> - 4.0.5-1 |
220 |
- nash: oops, let's try that again |
221 |
|
222 |
* Wed Aug 11 2004 Jeremy Katz <katzj@redhat.com> - 4.0.4-1 |
223 |
- nash: fix mounting by label in some cases (tracked down by |
224 |
Erik Jacobson, #129581, #129673, #129667, #129635) |
225 |
|
226 |
* Tue Aug 10 2004 Jeremy Katz <katzj@redhat.com> 4.0.3-1 |
227 |
- grubby: more (hd0,0) support (#125156) |
228 |
- mkinitrd.8: update manpage (#129585) |
229 |
- nash: fix some warnings |
230 |
|
231 |
* Wed Aug 4 2004 Jeremy Katz <katzj@redhat.com> 4.0.2-1 |
232 |
- nash: support bind mounting |
233 |
- grubby: support the (hd0,0)/path syntax for kernels and initrds in |
234 |
grub.conf (#114758, #125156, #120906) |
235 |
|
236 |
* Wed Aug 4 2004 Jeremy Katz <katzj@redhat.com> - 4.0.1-1 |
237 |
- improve handling of arguments to init with initramfs (#129057) |
238 |
|
239 |
* Mon Aug 2 2004 Jeremy Katz <katzj@redhat.com> - 4.0.0-1 |
240 |
- create an initramfs on 2.6 kernels instead of an initrd |
241 |
- use new mount magic instead of pivot_root |
242 |
on 2.6 kernels |
243 |
- try to handle the case of modules going away on kernel upgrades a |
244 |
little bit more nicely (#123994) |
245 |
- avoid over-zealous creation of /dev/mapper/control (#127115) |
246 |
- improve nash(8) manpage (#127413) |
247 |
|
248 |
* Fri Jun 18 2004 Jeremy Katz <katzj@redhat.com> - 3.5.24-1 |
249 |
- fix usb-storage detection with 2.6 (#126309) |
250 |
|
251 |
* Tue May 18 2004 Jeremy Katz <katzj@redhat.com> - 3.5.23-1 |
252 |
- add support for RAID6 |
253 |
|
254 |
* Wed May 12 2004 Jeremy Katz <katzj@redhat.com> |
255 |
- add support for multipath personality from Tom Callaway (#120379) |
256 |
|
257 |
* Thu May 6 2004 Jeremy Katz <katzj@redhat.com> - 3.5.22-1 |
258 |
- bump initrd size (#122325) |
259 |
|
260 |
* Wed Apr 14 2004 Jeremy Katz <katzj@redhat.com> - 3.5.21-1 |
261 |
- new-kernel-package: add patch from Ryan Tilder to allow setting new |
262 |
kernel as default (#117605) |
263 |
- mkinitrd: i2o_pci isn't in 2.6 (#120827) |
264 |
- new-kernel-pkg: conditionalize kernel binary name for 2.6 vs 2.4 |
265 |
on ppc/ppc64 (as it's vmlinuz in 2.6 instead of the |
266 |
vmlinux from 2.4) (#120868) |
267 |
|
268 |
* Tue Apr 13 2004 Jeremy Katz <katzj@redhat.com> - 3.5.20-1 |
269 |
- mkinitrd: minor regex fix for some kernel names (#120624) |
270 |
|
271 |
* Mon Feb 9 2004 Jeremy Katz <katzj@redhat.com> - 3.5.19-1 |
272 |
- nash/mkinitrd: quiet mode for nash and necessary mkinitrd changes |
273 |
to work with it |
274 |
- mkinitrd: add lxo's patch for copying lvm.conf (#112099) |
275 |
- new-kernel-pkg: allow specifying the banner used in the boot loader config |
276 |
on the command line (#114809) |
277 |
|
278 |
* Tue Jan 13 2004 Jeremy Katz <katzj@redhat.com> |
279 |
- mkinitrd: add patch from Alex Kiernan for modules with multiple |
280 |
deps in 2.6 (#113306) |
281 |
|
282 |
* Thu Jan 8 2004 Jeremy Katz <katzj@redhat.com> 3.5.18-1 |
283 |
- new-kernel-pkg: add a --kernel-arguments option (#113125) |
284 |
|
285 |
* Tue Jan 6 2004 Jeremy Katz <katzj@redhat.com> |
286 |
- fix ybin path (#112939) |
287 |
|
288 |
* Sun Jan 4 2004 Jeremy Katz <katzj@redhat.com> 3.5.17-1 |
289 |
- mkinitrd: handle multiple spaces in modules.conf (from Lubomir Bulej) |
290 |
- nash: rebuild against new dietlibc fixing problems with root=LABEL= (#112623) |
291 |
- mkinitrd: determine kernel version and adjust modulefile appropriately |
292 |
so that we look at /etc/modprobe.conf for 2.6 kernels |
293 |
- mkinitrd: first pass at getting lvm working on 2.4 -> 2.6 upgrade |
294 |
|
295 |
* Wed Dec 24 2003 Jeremy Katz <katzj@redhat.com> |
296 |
- mkinitrd: quiet strip by default |
297 |
|
298 |
* Mon Dec 22 2003 Jeremy Katz <katzj@redhat.com> 3.5.16.1-1 |
299 |
- make stripping less aggressive |
300 |
|
301 |
* Mon Dec 22 2003 Jeremy Katz <katzj@redhat.com> 3.5.16-1 |
302 |
- fixing handling of non-lvm case when /dev/mapper/control isn't present |
303 |
- add patch from Al Viro to get root dev in numeric form by grokking sysfs |
304 |
|
305 |
* Tue Dec 9 2003 Jeremy Katz <katzj@redhat.com> |
306 |
- strip modules if /usr/bin/strip exists (#111756) |
307 |
|
308 |
* Fri Dec 5 2003 Jeremy Katz <katzj@redhat.com> 3.5.15-2 |
309 |
- require lvm2 so that it gets installed early enough |
310 |
|
311 |
* Fri Dec 5 2003 Jeremy Katz <katzj@redhat.com> 3.5.15-1 |
312 |
- mkinitrd: add support for lvm2 (note: will not currently handle being |
313 |
on a running 2.4 kernel and installing 2.6 with lvm rootfs) |
314 |
|
315 |
* Wed Dec 3 2003 Jeremy Katz <katzj@redhat.com> |
316 |
- nash: add mkdmnod for creating the device-mapper control node |
317 |
|
318 |
* Thu Oct 2 2003 Jeremy Katz <katzj@redhat.com> 3.5.14-1 |
319 |
- fix dependency on /usr/bin/tail and /usr/bin/id |
320 |
|
321 |
* Tue Sep 30 2003 Florian La Roche <Florian.LaRoche@redhat.de> |
322 |
- remove one more mktemp dir for "all loopback devices in use" case |
323 |
|
324 |
* Tue Sep 23 2003 Jeremy Katz <katzj@redhat.com> 3.5.13-1 |
325 |
- fix getting modules from /lib/modules/$(uname -r)/updates |
326 |
|
327 |
* Mon Sep 22 2003 Jeremy Katz <katzj@redhat.com> 3.5.12-1 |
328 |
- argument checking and usage for /sbin/installkernel (#103109) |
329 |
|
330 |
* Wed Sep 3 2003 Jeremy Katz <katzj@redhat.com> 3.5.11-1 |
331 |
- really only do grub configs on grub arches |
332 |
- some usb mkinitrd fixes |
333 |
|
334 |
* Fri Aug 29 2003 Jeremy Katz <katzj@redhat.com> 3.5.10-1 |
335 |
- clean up bogus warning in installkernel |
336 |
- only try to do grub configs on arches which support grub (#103261) |
337 |
|
338 |
* Thu Aug 7 2003 Matt Wilson <msw@redhat.com> 3.5.9-1 |
339 |
- add \n to error messages in grubby |
340 |
- NUL terminate buffer returned from readlink properly |
341 |
- symlinks are most likely relative, chdir to / before trying to |
342 |
follow them |
343 |
- yaboot needs boot prefix |
344 |
- silo needs boot prefix too |
345 |
|
346 |
* Wed Jul 30 2003 Jeremy Katz <katzj@redhat.com> |
347 |
- grubby: don't segfault on label=\n (reported by dburcaw) |
348 |
|
349 |
* Thu Jul 24 2003 Jeremy Katz <katzj@redhat.com> |
350 |
- grubby: patch from zaitcev for uninitialized variable that can get |
351 |
hit in the zipl case |
352 |
|
353 |
* Mon Jul 21 2003 Jeremy Katz <katzj@redhat.com> 3.5.8-1 |
354 |
- bump initrd size (#99525) |
355 |
|
356 |
* Wed Jul 9 2003 Jeremy Katz <katzj@redhat.com> 3.5.7-1 |
357 |
- pick modules from /lib/modules/$(uname -r)/updates first |
358 |
- be less confused by more than one module of a name |
359 |
|
360 |
* Wed Jun 25 2003 Jeremy Katz <katzj@redhat.com> 3.5.6-1 |
361 |
- unbreak reading module options from modules.conf again (#97982) |
362 |
|
363 |
* Fri Jun 20 2003 Bill Nottingham <notting@redhat.com> 3.5.5-1 |
364 |
- fix modules.dep usage for 2.5/2.6 |
365 |
|
366 |
* Fri Jun 20 2003 Jeremy Katz <katzj@redhat.com> 3.5.4-1 |
367 |
- handle more bizarre modules.conf constructs (notting) |
368 |
|
369 |
* Thu Jun 12 2003 Jeremy Katz <katzj@redhat.com> 3.5.3-1 |
370 |
- mkinitrd: fix copying of pvs (#97314, #97289) |
371 |
- mkinitrd: use pvscan instead of lvmdiskscan to find PVs to work |
372 |
better on other arches |
373 |
- mkinitrd: better check for dasd existence |
374 |
- mkinitrd: make certain lvm-mod is included if root on lvm |
375 |
|
376 |
* Wed Jun 11 2003 Jeremy Katz <katzj@redhat.com> 3.5.2-1 |
377 |
- mkinitrd: revert use of modprobe -c. it breaks in the installer when we |
378 |
don't have a modules.dep for the BOOT kernel |
379 |
- nash: return pivot_root call correctly (#97753) |
380 |
|
381 |
* Wed Jun 11 2003 Jeremy Katz <katzj@redhat.com> 3.5.1-1 |
382 |
- nash: fix syscall bits with gcc 3.3 on s390 |
383 |
- new-kernel-pkg: do depmod before mkinitrd (#97218) |
384 |
|
385 |
* Tue Jun 10 2003 Jeremy Katz <katzj@redhat.com> 3.5.0-1 |
386 |
- mkinitrd: add patch from gc@mandrakesoft.com to determine module |
387 |
deps from modules.dep (#87873) |
388 |
- tweak patch to not break weird cases where module deps aren't all |
389 |
you need :/ |
390 |
- grubby: don't remove the last kernel (#60041) |
391 |
- mkinitrd: use modprobe -c to find module options (#89794) |
392 |
|
393 |
* Tue May 20 2003 Matt Wilson <msw@redhat.com> 3.4.52-1 |
394 |
- use addSystemMap to build the image for iSeries (#91187) |
395 |
|
396 |
* Fri May 16 2003 Jeremy Katz <katzj@redhat.com> 3.4.51-1 |
397 |
- grubby: error out gracefully if we run out of space (#85424) |
398 |
- mkinitrd: copy parent dirs for pvs (#88962) |
399 |
- mkinitrd: exit with an exit status if tar fails (#90123) |
400 |
- new-kernel-pkg: only use the first entry for / (#90155) |
401 |
- grubby: fix a buffer overflow (#90444) |
402 |
|
403 |
* Wed Apr 30 2003 Jeremy Katz <katzj@redhat.com> 3.4.50-1 |
404 |
- fix typo in new-kernel-pkg for iSeries |
405 |
|
406 |
* Wed Apr 30 2003 Elliot Lee <sopwith@redhat.com> |
407 |
- BuildRequires: popt |
408 |
- Change grubby Makefile to static-link popt a bit more cleanly |
409 |
|
410 |
* Thu Apr 24 2003 Jeremy Katz <katzj@redhat.com> 3.4.49.1-1 |
411 |
- use Arjan's suggestion of vmlinitrd for the kernel + initrd combo file |
412 |
|
413 |
* Thu Apr 24 2003 Jeremy Katz <katzj@redhat.com> 3.4.49-2 |
414 |
- fix description referencing /etc/conf.modules (#89558) |
415 |
|
416 |
* Thu Apr 24 2003 Jeremy Katz <katzj@redhat.com> 3.4.49-2 |
417 |
- require ppc64-utils on ppc |
418 |
|
419 |
* Fri Apr 18 2003 Jeremy Katz <katzj@redhat.com> 3.4.49-1 |
420 |
- new-kernel-pkg: on iSeries, we don't have a boot loader, just make the |
421 |
kernel + initrd combo file (/boot/vmlinux-version.img) |
422 |
|
423 |
* Mon Apr 07 2003 Karsten Hopp <karsten@redhat.com> 3.4.48-1 |
424 |
- Fix segfault on mainframe |
425 |
|
426 |
* Wed Mar 26 2003 Jeremy Katz <katzj@redhat.com> 3.4.47-1 |
427 |
- mkinitrd: fix using options for loading modules |
428 |
- mkinitrd: don't use kernel parameters for dasd at mkinitrd time, |
429 |
use what's in modules.conf |
430 |
|
431 |
* Mon Mar 24 2003 Jeremy Katz <katzj@redhat.com> 3.4.46-1 |
432 |
- new-kernel-pkg: add necessary bits for s390, some logic cleanups |
433 |
- grubby: fix root detection for s390{,x} |
434 |
|
435 |
* Sun Mar 23 2003 Jeremy Katz <katzj@redhat.com> 3.4.45-1 |
436 |
- grubby: add silo support (sparc) |
437 |
- grubby: add zipl support (s390{,x}) |
438 |
- add grubby test cases for zipl support |
439 |
|
440 |
* Wed Mar 19 2003 Jeremy Katz <katzj@redhat.com> 3.4.44.1-1 |
441 |
- fix dasd option reading |
442 |
|
443 |
* Fri Mar 14 2003 Phil Knirsch <pknirsch@redhat.com> 3.4.44 |
444 |
- Added automatic dasd= parameters for kernel parameter on s390(x). |
445 |
|
446 |
* Tue Mar 4 2003 Jeremy Katz <katzj@redhat.com> 3.4.43-1 |
447 |
- apply ppc patches for new-kernel-pkg and installkernel from Dan |
448 |
Burcaw <dburcaw@terrasoftsolutions.com> |
449 |
- man page tweak (#85471) |
450 |
|
451 |
* Tue Feb 18 2003 Jeremy Katz <katzj@redhat.com> 3.4.42-1 |
452 |
- grubby: fix segfault from uninitialized variable (#84128) |
453 |
|
454 |
* Tue Feb 11 2003 Jeremy Katz <katzj@redhat.com> 3.4.41-1 |
455 |
- nash: add readlink |
456 |
- use readlink for rootdev to handle symlinks to root devs (#83391) |
457 |
|
458 |
* Tue Feb 4 2003 Jeremy Katz <katzj@redhat.com> 3.4.40-1 |
459 |
- fix i2o module ordering (#83447) |
460 |
- ifarch'd build requires of dietlibc now that the build system has a way to |
461 |
handle these |
462 |
|
463 |
* Sat Feb 01 2003 Florian La Roche <Florian.LaRoche@redhat.de> |
464 |
- change one test from a number to a string test that could otherwise |
465 |
fail in not properly setup chroot environments |
466 |
|
467 |
* Fri Jan 31 2003 <ewt@redhat.com> |
468 |
- added support for yaboot |
469 |
- test script runs tests for all platforms |
470 |
- separated elilo configuration from lilo mode, allowing elilo specific |
471 |
tests to be run on any platform |
472 |
|
473 |
* Sun Jan 26 2003 <ewt@redhat.com> |
474 |
- grubby now shortens lilo titles to ensure they are less then 16 characters |
475 |
long (76236) |
476 |
- mkinitrd would only turn on /dev/md0 if raid was needed; now it enables |
477 |
all raid devices listed in /proc/mdstat (82209) |
478 |
- use product name from /etc/redhat-release to generate label in grub.conf |
479 |
(82352) |
480 |
|
481 |
* Mon Jan 20 2003 Bill Nottingham <notting@redhat.com> 3.4.36-1 |
482 |
- don't error out running awk on /proc/mdstat if /proc/mdstat isn't |
483 |
there |
484 |
|
485 |
* Tue Jan 14 2003 <ewt@redhat.com> |
486 |
- all mkdev() actions will create directories as needed (some code in |
487 |
mkdevices is now obsolete; I'll remove it later) (#73317) |
488 |
- added mkdev command to test the above |
489 |
- support diratime/nodiratime mount options (#78738) |
490 |
- grubby will follow symlinks when writing new config file (#78713) |
491 |
- don't depend on raidtab, use /proc/mdstat instead (#80424) this covers |
492 |
both mkinitrd and grubby |
493 |
|
494 |
* Sun Jan 5 2003 Jeremy Katz <katzj@redhat.com> 3.4.34-1 |
495 |
- grubby: fix segfault finding default if default doesn't have a root= (#66000) |
496 |
- don't include usb modules by default. pass --with-usb to get usb modules |
497 |
- make sure kudzu exists before trying to exec it |
498 |
- handle multiple scsi hosts being present (#77422) |
499 |
- add /usr/sbin to default path (#79581) |
500 |
- fix using --builtin= (#80448) |
501 |
- grubby: preserve the mode on config files (#80776) |
502 |
|
503 |
* Mon Dec 16 2002 Jeremy Katz <katzj@redhat.com> |
504 |
- errno fixes |
505 |
|
506 |
* Tue Dec 03 2002 Florian La Roche <Florian.LaRoche@redhat.de> |
507 |
- /sbin/new-kernel-pkg: fix a test to have correct "" |
508 |
|
509 |
* Fri Nov 22 2002 Jeremy Katz <katzj@redhat.com> |
510 |
- mkinitrd: more gzipped module fixes |
511 |
|
512 |
* Thu Nov 21 2002 Jeremy Katz <katzj@redhat.com> |
513 |
- mkinitrd: add support for finding gzipped modules |
514 |
- mkinitrd: don't be noisy if we don't have lvm-mod loaded |
515 |
|
516 |
* Wed Nov 6 2002 Jeremy Katz <katzj@redhat.com> |
517 |
- grubby: don't bail when looking for root in appends of lilo-style configs |
518 |
- include grubby on x86_64 |
519 |
|
520 |
* Thu Sep 26 2002 Nalin Dahyabhai <nalin@redhat.com> |
521 |
- fix some syntax errors |
522 |
- use grep's -q flag to save a redirect in places where we're not redirecting |
523 |
stderr |
524 |
|
525 |
* Thu Sep 5 2002 Jeremy Katz <katzj@redhat.com> |
526 |
- grubby could segfault by going into its lilo checking if it couldn't find |
527 |
a default to copy (default had no root= and --bad-image-okay wasn't |
528 |
being used) |
529 |
|
530 |
* Mon Sep 2 2002 Jeremy Katz <katzj@redhat.com> |
531 |
- nash: create directories if needed in mkdevices command (#73090) |
532 |
- grubby: handle lilo case of non-linux default (#72202) |
533 |
|
534 |
* Sat Aug 31 2002 Jeremy Katz <katzj@redhat.com> |
535 |
- grubby: fix for case like 'append = " hdc=ide-scsi "' (#68802) |
536 |
|
537 |
* Fri Aug 30 2002 Bill Nottingham <notting@redhat.com> |
538 |
- fix firewire stuff (#72916) |
539 |
|
540 |
* Fri Aug 23 2002 Bill Nottingham <notting@redhat.com> |
541 |
- fix mpt fusion stuff |
542 |
|
543 |
* Tue Aug 13 2002 Jeremy Katz <katzj@redhat.com> |
544 |
- /boot/efi/redhat -> /boot/efi/EFI/redhat on ia64 |
545 |
|
546 |
* Sun Aug 11 2002 Jeremy Katz <katzj@redhat.com> |
547 |
- fix grubby to work correctly on ia64 |
548 |
|
549 |
* Thu Aug 08 2002 Michael Fulbright <msf@redhat.com> |
550 |
- added sleep command to nash and fixed creating initrd with / or /boot on usb |
551 |
|
552 |
* Tue Jul 30 2002 Jeremy Katz <katzj@redhat.com> |
553 |
- grubby: adding kernels to lilo.conf when not using root=LABEL will work |
554 |
now too |
555 |
|
556 |
* Fri Jul 26 2002 Erik Troan <ewt@redhat.com> |
557 |
- didn't close /proc/partitions in mkdevices |
558 |
|
559 |
* Thu Jul 25 2002 Jeremy Katz <katzj@redhat.com> |
560 |
- grubby: fix adding kernels to lilo when using root=LABEL |
561 |
|
562 |
* Wed Jul 24 2002 Erik Troan <ewt@redhat.com> |
563 |
- added and used mkdevices command (68959) |
564 |
|
565 |
* Wed Jul 17 2002 Erik Troan <ewt@redhat.com> |
566 |
- do proper probing to check root=LABEL |
567 |
- --bootloader-probe didn't support /etc/sysconfig/grub |
568 |
|
569 |
* Fri Jul 12 2002 Erik Troan <ewt@redhat.com> |
570 |
- don't sanity check root=LABEL right now; probing might make sense? |
571 |
|
572 |
* Wed Jul 10 2002 Erik Troan <ewt@redhat.com> |
573 |
- --ifneeded is obsolete; we always need initrds |
574 |
- grubby lets you specify multiple indexes for --info |
575 |
- grubby lets you select kernels by title |
576 |
- added showlabels to nash |
577 |
- new-kernel-pkg sets the root device from /etc/fstab rather then inheriting it |
578 |
- new-kernel-pkg removes all entries w/ a duplicate label (67459) |
579 |
|
580 |
* Mon Jul 08 2002 Erik Troan <ewt@redhat.com> |
581 |
- usb root device code could fail, causing no initrd to be made |
582 |
|
583 |
* Thu Jun 27 2002 Erik Troan <ewt@redhat.com> |
584 |
- grubby didn't add new kernels properly |
585 |
|
586 |
* Thu Jun 27 2002 Erik Troan <ewt@redhat.com> |
587 |
- support root on usb devices |
588 |
|
589 |
* Wed Jun 26 2002 Erik Troan <ewt@redhat.com> |
590 |
- other= in lilo.conf wasn't being parsed out properly |
591 |
|
592 |
* Mon Jun 24 2002 Erik Troan <ewt@redhat.com> |
593 |
- changed --add-kernel implementation so that --args gets handled properly |
594 |
|
595 |
* Sun Jun 23 2002 Erik Troan <ewt@redhat.com> |
596 |
- added loadinitrd (used by mkbootdisk) on ia32 and sparc |
597 |
- modules "off" and "null" should be ignored (67086) |
598 |
- mkrootdev looks for root=LABEL=/ in /proc/cmdline, so root by label |
599 |
works again (fully determined by root= kernel parameter) |
600 |
- added --update-kernel and --remove-args arguments to grubby |
601 |
- kernel specification of ALL supported by grubby |
602 |
- DEFAULT accepted much more consistently |
603 |
- grubby --info displays info on all kernels specified, not just the first |
604 |
- ext3 need mbcache now (67354) |
605 |
- grubby allows config file entry numbers to be used as kernel paths |
606 |
- support /etc/sysconfig/grub.conf |
607 |
- display lba info from lilo.conf file in --info |
608 |
|
609 |
* Thu Jun 13 2002 Jeremy Katz <katzj@redhat.com> |
610 |
- don't run lilo twice on kernel removal in new-kernel-pkg |
611 |
- don't run grubby to add/remove kernels from new-kernel-pkg if |
612 |
bootloader config doesn't |
613 |
|
614 |
* Tue Jun 11 2002 Erik Troan <ewt@redhat.com> |
615 |
- added --bootloader-probe to grubby |
616 |
- wrote a man page for grubby |
617 |
- include grubby on ia64 |
618 |
- updated new-kernel-pkg to work with lilo/elilo |
619 |
- added --info=DEFAULT option |
620 |
|
621 |
* Mon Jun 10 2002 Jeremy Katz <katzj@redhat.com> |
622 |
- start raid before lvm so that you can have root on lvm on raid (#66175) |
623 |
|
624 |
* Tue Jun 04 2002 Erik Troan <ewt@redhat.com> |
625 |
- failed to initialize a variable in grubby |
626 |
|
627 |
* Fri May 31 2002 Erik Troan <ewt@redhat.com> |
628 |
- added --grub option so grub tests could run on ia64 |
629 |
- added some basic tests of lilo default directive handling |
630 |
|
631 |
* Wed May 29 2002 Jeremy Katz <katzj@redhat.com> |
632 |
- require lvm |
633 |
|
634 |
* Tue May 28 2002 Bill Nottingham <notting@redhat.com> |
635 |
- fix umounting of /initrd when pivoting |
636 |
|
637 |
* Tue May 28 2002 Erik Troan <ewt@redhat.com> |
638 |
- marked /sbin/installkernel as %config (53006) |
639 |
- run make test during build |
640 |
|
641 |
* Wed May 22 2002 Erik Troan <ewt@redhat.com> |
642 |
- added --nopivot (53679) |
643 |
- honor INSTALL_PATH in installkernel (32833) |
644 |
- installkernel versions old kernels as well (52756) |
645 |
- lilo support added to grubby |
646 |
|
647 |
* Tue May 21 2002 Erik Troan <ewt@redhat.com> |
648 |
- cleaned up usage message |
649 |
- added --omit-lvm-modules to man page |
650 |
- added --builtin option (65250) |
651 |
- skip comments in fstab (65249) |
652 |
- added findlodev to nash, use that to pick block device (63421) |
653 |
- support -o option in nash's mount (59185) |
654 |
- look for xfs_dmapi (60066) |
655 |
- added > support for executed commands (61180) |
656 |
- grubby copies permissions from old config file (59227) |
657 |
- use options from fstab for root filesystem (56071) |
658 |
- try and be better about returning nonzero on error (60203) |
659 |
- make modprobe symlink properly to avoid kernel message (62145) |
660 |
- support linear raid (12775) |
661 |
- support fallback option in grub config (54794) |
662 |
- comments in template entries not handled quite right (65198) |
663 |
|
664 |
* Sat Apr 20 2002 Erik Troan <ewt@redhat.com> |
665 |
- grubby does a better job of not adding superfluous default= lines |
666 |
|
667 |
* Wed Apr 17 2002 Erik Troan <ewt@redhat.com> |
668 |
- preload works again |
669 |
|
670 |
* Wed Apr 10 2002 Jeremy Katz <katzj@redhat.com> |
671 |
- revert to not mounting by label |
672 |
|
673 |
* Fri Apr 5 2002 Jeremy Katz <katzj@redhat.com> |
674 |
- include pbrown's changes to load parport_pc when needing ppa.o (#35360) |
675 |
|
676 |
* Thu Apr 4 2002 Jeremy Katz <katzj@redhat.com> |
677 |
- fix redirection bug (#62623) |
678 |
- create proper link of /sbin->/bin in initrd (#62199) |
679 |
|
680 |
* Thu Mar 28 2002 Jeremy Katz <katzj@redhat.com> |
681 |
- prereq dev package so that we always have the dev package before we get run |
682 |
|
683 |
* Fri Mar 22 2002 Jeremy Katz <katzj@redhat.com> |
684 |
- duh, that won't work. fix it |
685 |
- don't require lvm tools right now |
686 |
|
687 |
* Thu Mar 21 2002 Jeremy Katz <katzj@redhat.com> |
688 |
- fix nash to create directories for devices like cciss and ida |
689 |
|
690 |
* Tue Feb 5 2002 Bill Nottingham <notting@redhat.com> |
691 |
- run mkinitrd with -f in new-kernel-pkg |
692 |
- don't run lilo in /sbin/installkernel |
693 |
|
694 |
* Fri Feb 1 2002 Jeremy Katz <katzj@redhat.com> |
695 |
- require lvm |
696 |
|
697 |
* Thu Jan 31 2002 Jeremy Katz <katzj@redhat.com> |
698 |
- clean up warnings for when /proc isn't mounted |
699 |
|
700 |
* Tue Jan 29 2002 Jeremy Katz <katzj@redhat.com> |
701 |
- fix probing for LVM usage to require a volume group to exist before adding |
702 |
the module |
703 |
- --omit-lvm-modules will omit LVM modules |
704 |
- add support for root device being LVM |
705 |
|
706 |
* Wed Jan 16 2002 Erik Troan <ewt@redhat.com> |
707 |
- look for a non /tmpfs directory |
708 |
- added support for xfs |
709 |
- use with raid md.o if it exists |
710 |
- fixed bug in echo |
711 |
- use find form nash rather then /usr (mkinitrd shouldn't need /usr |
712 |
mounted) |
713 |
|
714 |
* Fri Jan 11 2002 Erik Troan <ewt@redhat.com> |
715 |
- added support for mounting root filesystem by label |
716 |
- switched to dietlibc from minilibc |
717 |
- fix so --preload= works [33675,57560,44377] |
718 |
- added info on --image-version and --nocompress to man page [57560] |
719 |
- set fileystem check interval to 0 in case the system clock |
720 |
is borked [51454] |
721 |
- give a proper error when run by a user other then root [27218,53159] |
722 |
- grubby statically linked against popt [55305] |
723 |
- cleaned up verbose output a bit [21791] |
724 |
|
725 |
* Tue Dec 18 2001 Trond Eivind Glomsrød <teg@redhat.com> |
726 |
- Add LVM module when LVM is used |
727 |
|
728 |
* Wed Sep 5 2001 Jeremy Katz <katzj@redhat.com> |
729 |
- grubby shouldn't blow away default=saved lines (#52981) |
730 |
|
731 |
* Fri Aug 31 2001 Jeremy Katz <katzj@redhat.com> |
732 |
- fix new-kernel-pkg --mkinitrd for ia64 |
733 |
|
734 |
* Thu Aug 30 2001 Erik Troan <ewt@redhat.com> |
735 |
- fixed bug handling invalid default (MF #52889) |
736 |
- in some cases we would set the default to point at a removed image |
737 |
|
738 |
* Wed Aug 29 2001 Erik Troan <ewt@redhat.com> |
739 |
- minor grubby fixes |
740 |
|
741 |
* Tue Aug 28 2001 Jeremy Katz <katzj@redhat.com> |
742 |
- let new-kernel-pkg be able to do more (initrds, modules.*) |
743 |
- include grubby only on x86 |
744 |
|
745 |
* Mon Aug 27 2001 Jeremy Katz <katzj@redhat.com> |
746 |
- more grubby fixups for having a /boot |
747 |
- added new-kernel-pkg |
748 |
|
749 |
* Sun Aug 26 2001 Erik Troan <ewt@redhat.com> |
750 |
- added grubby |
751 |
- added installkernel |
752 |
|
753 |
* Fri Aug 3 2001 Matt Wilson <msw@redhat.com> |
754 |
- make consoles with the correct minor numbers |
755 |
- applied patch from hjl to fix fstab parsing (#50819) |
756 |
|
757 |
* Fri Jul 20 2001 Jeremy Katz <katzj@redhat.com> |
758 |
- skip errors finding jbd as a module if we're skipping them trying to find |
759 |
ext3 so that you can build a kernel with ext3 built-in and still use an |
760 |
initrd |
761 |
|
762 |
* Wed Jul 11 2001 Bill Nottingham <notting@redhat.com> |
763 |
- don't print errors if /etc/raidtab doesn't exist |
764 |
- or /etc/{modules.conf,conf.modules}, for that matter |
765 |
|
766 |
* Fri Jul 6 2001 Matt Wilson <msw@redhat.com> |
767 |
- don't dig through /etc/fstab to find out if we have a filesystem on |
768 |
a RAID device, it's usually mounted by label so /dev/mdN isn't there |
769 |
at all (#46525) |
770 |
|
771 |
* Tue Jun 26 2001 Bill Nottingham <notting@redhat.com> |
772 |
- require filesystem >= 2.1.0, otherwise we don't boot |
773 |
|
774 |
* Thu Jun 21 2001 Erik Troan <ewt@redhat.com> |
775 |
- added a bunch of commands to nash |
776 |
- use pivot_root |
777 |
- support ext3 |
778 |
|
779 |
* Fri Jun 08 2001 Florian La Roche <Florian.LaRoche@redhat.de> |
780 |
- delete the exclusivearch line completely |
781 |
|
782 |
* Fri Mar 23 2001 Matt Wilson <msw@redhat.com> |
783 |
- reset the state of findmodule after getting the modules we need |
784 |
|
785 |
* Wed Feb 28 2001 Matt Wilson <msw@redhat.com> |
786 |
- changed the Requires on mktemp from >= 1.5 to >= 1.5-5 (which included |
787 |
-d support) (#30127) |
788 |
|
789 |
* Fri Feb 23 2001 Erik Troan <ewt@redhat.com> |
790 |
- let nash be invoked as modprobe to avoid a modprobe failure to exec |
791 |
- nash will try to run arbitrary commands now (removing insmod as a special |
792 |
case) |
793 |
|
794 |
* Mon Feb 12 2001 Matt Wilson <msw@redhat.com> |
795 |
- add findutils to Requires line (#27269) |
796 |
|
797 |
* Thu Feb 8 2001 Matt Wilson <msw@redhat.com> |
798 |
- added checks to load the modules i2o_block needs |
799 |
|
800 |
* Wed Feb 7 2001 Bill Nottingham <notting@redhat.com> |
801 |
- fix utterly broken build |
802 |
|
803 |
* Wed Jan 31 2001 Helge Deller <hdeller@redhat.com> |
804 |
- added mandir to nash Makefile (RH 6.x compatibility) |
805 |
|
806 |
* Tue Jan 30 2001 Erik Troan <ewt@redhat.com> |
807 |
- added dependency on mktemp |
808 |
|
809 |
* Thu Jan 25 2001 Erik Troan <ewt@redhat.com> |
810 |
- we need to insert xor.o before raid5.o |
811 |
|
812 |
* Wed Jan 24 2001 Matt Wilson <msw@redhat.com> |
813 |
- code in RAID_AUTORUN ioctl fallback |
814 |
- fixed raidstart check flag from -z to -n |
815 |
|
816 |
* Tue Jan 23 2001 Erik Troan <ewt@redhat.com> |
817 |
- switched to using nash from sash |
818 |
|
819 |
* Tue Jan 23 2001 Matt Wilson <msw@redhat.com> |
820 |
- added patch from twaugh to avoid blindly adding scsi_mod |
821 |
and sd_mod to initrd if they are not needed (#24114) |
822 |
|
823 |
* Thu Jan 11 2001 Bernhard Rosenkraenzer <bero@redhat.com> |
824 |
- Enlarge initrds, needed for systems with both IDE and SCSI |
825 |
(Bug #23846) |
826 |
- Version 2.[6789] probably shouldn't identify itself as 2.6 |
827 |
with --version. ;) |
828 |
- bzip2 source |
829 |
|
830 |
* Wed Dec 20 2000 Erik Troan <ewt@redhat.com> |
831 |
- let the kernel autoload ide-cd |
832 |
|
833 |
* Fri Dec 08 2000 Erik Troan <ewt@redhat.com> |
834 |
- added modular ide support |
835 |
|
836 |
* Wed Aug 30 2000 Nalin Dahyabhai <nalin@redhat.com> |
837 |
- use mktemp to create temporary files and directories |
838 |
|
839 |
* Sat Aug 05 2000 Erik Troan <ewt@redhat.com> |
840 |
- changes from Keith Owens for 2.4 |
841 |
|
842 |
* Tue Jul 4 2000 Matt Wilson <msw@redhat.com> |
843 |
- build on alpha |
844 |
|
845 |
* Mon Jun 26 2000 Bill Nottingham <notting@redhat.com> |
846 |
- ignore 'unknown' aliases (they shouldn't be there anyways) |
847 |
|
848 |
* Thu Jun 1 2000 Bill Nottingham <notting@redhat.com> |
849 |
- build on ia64 |
850 |
- bump up initrd size on ia64 |
851 |
- modules.confiscation, /usr/man -> /usr/share/man |
852 |
|
853 |
* Tue May 2 2000 Nalin Dahyabhai <nalin@redhat.com> |
854 |
- make RPM pick up man page, regardless of compression |
855 |
|
856 |
* Tue Feb 29 2000 Matt Wilson <msw@redhat.com> |
857 |
- add requirement for /sbin/losetup |
858 |
|
859 |
* Mon Feb 7 2000 Matt Wilson <msw@redhat.com> |
860 |
- gzip manpage |
861 |
|
862 |
* Thu Feb 3 2000 Matt Wilson <msw@redhat.com> |
863 |
- gzip manpage |
864 |
|
865 |
* Mon Jan 10 2000 Erik Troan <ewt@redhat.com> |
866 |
- use sash, not ash |
867 |
|
868 |
* Mon Jan 3 2000 Matt Wilson <msw@redhat.com> |
869 |
- use ash.static for /bin/sh, not sash |
870 |
|
871 |
* Sat Jan 1 2000 Erik Troan <ewt@redhat.com> |
872 |
- configure loopback devices |
873 |
|
874 |
* Tue Sep 28 1999 Bill Nottingham <notting@redhat.com> |
875 |
- sparc fixup from jakub |
876 |
|
877 |
* Wed Sep 22 1999 Michael K. Johnson <johnsonm@redhat.com> |
878 |
- fix cleanup (blush!) |
879 |
|
880 |
* Tue Sep 21 1999 Michael K. Johnson <johnsonm@redhat.com> |
881 |
- now works when /usr is not mounted (do not rely on /usr/bin/install) |
882 |
- slight cleanups, better usage message |
883 |
|
884 |
* Thu Jul 29 1999 Michael K. Johnson <johnsonm@redhat.com> |
885 |
- Now automatically includes necessary raid modules |
886 |
- --omit-raid-modules now omits raid modules |
887 |
- tiny doc updates |
888 |
|
889 |
* Thu Jul 29 1999 Bill Nottingham <notting@redhat.com> |
890 |
- updates from bugzila (#4243, #4244) |
891 |
|
892 |
* Sat Mar 27 1999 Matt Wilson <msw@redhat.com> |
893 |
- --omit-scsi-modules now omits all scsi modules |
894 |
- updated documentation |
895 |
- mkinitrd now grabs scsi_hostadapter modules from anywhere - |
896 |
some RAID controller modules live in block/ |
897 |
|
898 |
* Thu Feb 25 1999 Matt Wilson <msw@redhat.com> |
899 |
- updated description |
900 |
|
901 |
* Mon Jan 11 1999 Matt Wilson <msw@redhat.com> |
902 |
- Ignore the absence of scsi modules, include them if they are there, but |
903 |
don't complain if they are not. |
904 |
- changed --no-scsi-modules to --omit-scsi-modules (as it should have been) |
905 |
|
906 |
* Thu Nov 5 1998 Jeff Johnson <jbj@redhat.com> |
907 |
- import from ultrapenguin 1.1. |
908 |
|
909 |
* Tue Oct 20 1998 Jakub Jelinek <jj@ultra.linux.cz> |
910 |
- fix for combined sparc/sparc64 insmod, also pluto module is really |
911 |
fc4:soc:pluto and we don't look at deps, so special case it. |
912 |
|
913 |
* Sat Aug 29 1998 Erik Troan <ewt@redhat.com> |
914 |
- replaced --needs-scsi-mods (which is now the default) with |
915 |
--omit-scsi-mods |
916 |
|
917 |
* Fri Aug 7 1998 Jeff Johnson <jbj@redhat.com> |
918 |
- correct obscure regex/shell interaction (hardwires tabs on line 232) |
919 |
|
920 |
* Mon Jan 12 1998 Erik Troan <ewt@redhat.com> |
921 |
- added 'make archive' rule to Makefile |
922 |
- rewrote install procedure for more robust version handling |
923 |
- be smarter about grabbing options from /etc/conf.modules |
924 |
|
925 |
* Mon Oct 20 1997 Erik Troan <ewt@redhat.com> |
926 |
- made it use /bin/ash.static |
927 |
|
928 |
* Wed Apr 16 1997 Erik Troan <ewt@redhat.com> |
929 |
- Only use '-s' to install binaries if /usr/bin/strip is present. |
930 |
- Use an image size of 2500 if binaries can't be stripped (1500 otherwise) |
931 |
- Don't use "mount -o loop" anymore -- losetup the proper devices manually |
932 |
- Requires losetup, e2fsprogs |
933 |
|
934 |
* Wed Mar 12 1997 Michael K. Johnson <johnsonm@redhat.com> |
935 |
- Fixed a bug in parsing options. |
936 |
- Changed to use a build tree, then copy the finished tree into the |
937 |
image after it is built. |
938 |
- Added patches derived from ones written by Christian Hechelmann which |
939 |
add an option to put the kernel version number at the end of the module |
940 |
name and use install -s to strip binaries on the fly. |