/[smeserver]/rpms/mkinitrd/sme7/mkinitrd.spec
ViewVC logotype

Contents of /rpms/mkinitrd/sme7/mkinitrd.spec

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.7 - (show annotations) (download)
Tue Apr 20 19:45:41 2010 UTC (14 years, 1 month ago) by slords
Branch: MAIN
CVS Tags: mkinitrd-4_2_1_13-4_2_el4_sme, HEAD
Changes since 1.6: +6 -3 lines
* Tue Apr 20 2010 Shad L. Lords <slords@mail.com> 4.2.1.13-4.2.sme
- Require /sbin/mdassemble so mkinitrd works correctly [SME: 5891]

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

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed