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

Annotation of /rpms/mkinitrd/sme8/mkinitrd.spec

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


Revision 1.1 - (hide annotations) (download)
Tue Jun 12 20:05:25 2007 UTC (17 years, 3 months ago) by slords
Branch: MAIN
CVS Tags: mkinitrd-5_1_19_6-1_el5_sme
Import on branch sme8 of package mkinitrd-5.1.19.6-1.el5.sme.src.rpm

1 slords 1.1 %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)[1:]")}
2    
3     Summary: Creates an initial ramdisk image for preloading modules.
4     Name: mkinitrd
5     Version: 5.1.19.6
6     Release: 1%{?dist}
7     License: GPL
8     Group: System Environment/Base
9     Source0: mkinitrd-%{version}.tar.bz2
10    
11     ExclusiveOs: Linux
12     Prereq: dev
13     Requires: /bin/sh, /sbin/insmod.static, /sbin/losetup
14     Requires: fileutils, grep, mount, gzip, tar, mktemp >= 1.5-5, findutils, lvm2
15     Requires: filesystem >= 2.1.0, cpio, device-mapper, initscripts >= 8.22-1
16     Requires: e2fsprogs >= 1.38-12, glib2, libselinux, libsepol, coreutils
17     BuildRequires: popt e2fsprogs-devel parted-devel >= 1.7.1-15, pkgconfig, glib2-devel
18     BuildRequires: libdhcp4client-devel, libdhcp6client-devel, libdhcp-devel >= 1.9
19     BuildRequires: device-mapper libselinux-devel libsepol-devel, python-devel
20     %ifnarch s390 s390x
21     Requires: dmraid
22     %endif
23     %ifarch ppc
24     Requires: ppc64-utils >= 0.3-1
25     %endif
26     Requires: nash = %{version}-%{release}
27     BuildRoot: %{_tmppath}/%{name}-root
28     Provides: libbdevid = %{version}-%{release}
29     Obsoletes: libbdevid < %{version}-%{release}
30    
31     %description
32     Mkinitrd creates filesystem images for use as initial ramdisk (initrd)
33     images. These ramdisk images are often used to preload the block
34     device modules (SCSI or RAID) needed to access the root filesystem.
35    
36     In other words, generic kernels can be built without drivers for any
37     SCSI adapters which load the SCSI driver as a module. Since the
38     kernel needs to read those modules, but in this case it isn't able to
39     address the SCSI adapter, an initial ramdisk is used. The initial
40     ramdisk is loaded by the operating system loader (normally LILO) and
41     is available to the kernel as soon as the ramdisk is loaded. The
42     ramdisk image loads the proper SCSI adapter and allows the kernel to
43     mount the root filesystem. The mkinitrd program creates such a
44     ramdisk using information found in the /etc/modules.conf file.
45    
46     %package devel
47     Summary: C header files and library for functionality exported by libnash.
48     Group: Development/Libraries
49     Requires: glibc-devel, pkgconfig, e2fsprogs-devel, mkinitrd, glib2-devel
50    
51     %package -n libbdevid-python
52     Summary: Python bindings for libbdevid
53     Group: System Environment/Libraries
54     Requires: glib2, e2fsprogs, libselinux, libsepol, device-mapper, mkinitrd
55     Requires: python
56    
57     %package -n nash
58     Summary: nash shell
59     Group: System Environment/Base
60    
61     %description devel
62     C header files and library for functionality exported by libnash.
63    
64     %description -n libbdevid-python
65     Python bindings for libbdevid.
66    
67     %description -n nash
68     nash shell used by initrd
69    
70     %prep
71     %setup -q -n mkinitrd-%{version}
72    
73     %build
74     make LIB=%{_lib}
75     make LIB=%{_lib} test
76    
77     %install
78     rm -rf $RPM_BUILD_ROOT
79     make LIB=%{_lib} DESTDIR=$RPM_BUILD_ROOT mandir=%{_mandir} install
80     rm -f $RPM_BUILD_ROOT/sbin/bdevid $RPM_BUILD_ROOT/%{_includedir}/blkent.h
81    
82     %clean
83     rm -rf $RPM_BUILD_ROOT
84    
85     %files
86     %defattr(-,root,root)
87     %attr(755,root,root) /sbin/mkinitrd
88     %attr(644,root,root) %{_mandir}/man8/mkinitrd.8*
89     %config %attr(755,root,root) /sbin/installkernel
90     %attr(755,root,root) /sbin/new-kernel-pkg
91     %attr(755,root,root) /sbin/grubby
92     %attr(644,root,root) %{_mandir}/man8/grubby.8*
93     %attr(755,root,root) %dir %{_sysconfdir}/sysconfig/mkinitrd
94     /%{_lib}/bdevid
95     %{_libdir}/libbdevid.so.*
96    
97     %files devel
98     %defattr(-,root,root)
99     %{_libdir}/libnash.a
100     %{_libdir}/libbdevid.a
101     %{_libdir}/libbdevid.so
102     %{_libdir}/libbdevidprobe.a
103     %{_libdir}/pkgconfig/libnash.pc
104     %{_libdir}/pkgconfig/libbdevid.pc
105     %{_libdir}/pkgconfig/libbdevidprobe.pc
106     %{_includedir}/nash.h
107     %{_includedir}/nash
108     %{_includedir}/bdevid.h
109     %{_includedir}/bdevid
110    
111     %files -n libbdevid-python
112     /%{python_sitelib}/bdevid.so
113    
114     %files -n nash
115     %defattr(-,root,root)
116     %attr(644,root,root) %{_mandir}/man8/nash.8*
117     %attr(755,root,root) /sbin/nash
118    
119     %changelog
120     * Thu Jan 18 2007 Peter Jones <pjones@redhat.com> - 5.1.19.6-1
121     - Don't create /dev/ttyN on s390*
122     Resolves: #209204
123    
124     * Mon Jan 15 2007 Peter Jones <pjones@redhat.com> - 5.1.19.5-1
125     - Use a different method of getting iscsi info
126     Resolves: #221088
127    
128     * Thu Jan 11 2007 Peter Jones <pjones@redhat.com> - 5.1.19.4-1
129     - Fix LABEL/UUID handling in mkinitrd
130     Resolves: #222106
131    
132     * Thu Jan 4 2007 Jeremy Katz <katzj@redhat.com> - 5.1.19.3-1
133     - don't create /dev/tty* on s390 (#209204)
134     - handle multi-line options (#209447)
135     - ensure that scsi devices have stabilized to ensure the rootdev
136     is available (#213039)
137     - iscsi tools changed their syntax somewhat (#221088)
138    
139     * Fri Dec 15 2006 Peter Jones <pjones@redhat.com> - 5.1.19.2-1
140     - Honor installing with 'nompath' (#219483)
141    
142     * Wed Dec 6 2006 Peter Jones <pjones@redhat.com> - 5.1.19.1-2
143     - Rebuild for new libparted (#218624)
144    
145     * Mon Oct 30 2006 Peter Jones <pjones@redhat.com> - 5.1.19.1-1
146     - Merge missing FC6 fixes back into this branch to eliminate regressions.
147    
148     * Thu Sep 28 2006 Peter Jones <pjones@redhat.com> - 5.1.19-1
149     - Fix booting on non-LVM devices where sysfs uses a '!' in the device path,
150     such as cciss. (#201875, #196360)
151    
152     * Wed Sep 27 2006 Peter Jones <pjones@redhat.com> - 5.1.18-1
153     - Split nash into its own package to work around dep sorting issue on install.
154    
155     * Thu Sep 21 2006 Peter Jones <pjones@redhat.com> - 5.1.17-1
156     - Fix module dependency probing when there's no modalias
157    
158     * Wed Sep 20 2006 Peter Jones <pjones@redhat.com> - 5.1.16-1
159     - Don't require non-tmpfs tmpdir unless we're using loopback
160     - Fix symlink chasing for yaboot.conf in grubby (#207302)
161    
162     * Wed Sep 20 2006 Jeremy Katz <katzj@redhat.com>
163     - Hack for moduledeps of gfs2/nfs
164    
165     * Tue Sep 19 2006 Jeremy Katz <katzj@redhat.com>
166     - Handle zfcp.conf not specifying scsiid and scsilun (#198803)
167    
168     * Tue Sep 12 2006 Peter Jones <pjones@redhat.com>
169     - Fix escaping error in md-handler's awk script
170    
171     * Fri Sep 8 2006 Jesse Keating <jkeating@redhat.com> - 5.1.15-1
172     - more typos to fix related to (#205194)
173    
174     * Fri Sep 8 2006 Peter Jones <pjones@redhat.com> - 5.1.14-1
175     - Fix another typo in the same one-line shell wrapper (#205194)
176    
177     * Fri Sep 8 2006 Peter Jones <pjones@redhat.com> - 5.1.13-1
178     - Fix missing coreutils dep and typo in shell wrapper (#205194)
179     - Fix bad mpath test (#204758)
180    
181     * Thu Sep 7 2006 Peter Jones <pjones@redhat.com> - 5.1.12-1
182     - Fix bug in dm dependency scanning (#205635)
183    
184     * Tue Sep 6 2006 Peter Jones <pjones@redhat.com> - 5.1.11-1
185     - Pull in bdevid properly (not two sources any more)
186     - Lots of minor bugfixes, leak fixups, etc.
187     - Updates for new iScsi userland (katzj)
188     - ata and usb device id probes in bdevid
189     - preliminary work for boot-time device identification.
190     - Fixes for network driver selection (katzj)
191    
192     * Fri Sep 1 2006 Peter Jones <pjones@redhat.com> - 5.1.10-1
193     - Fix %%setup args
194     - Work around lvm locking problems when clvm is installed (#203904)
195     - Work around lvm segfault by always using lvm.static
196     - Fix label scanning on dm devices (based on a patch from Hans de Goede)
197     (#204763)
198     - handle the /proc/bus/usb mounting with a state machine in the module
199     loading emission, not with a sentinal value
200     - do forced finding of devices *after* auto-detection of the root fs, so
201     we're not blindsided by bogus scsi_hostadapter aliases and the like.
202     - move nashDm* functions to libnash so stuff in block.c can call them.
203    
204     * Tue Aug 29 2006 David Cantrell <dcantrell@redhat.com> - 5.1.9-2
205     - BuildRequires parted-devel >= 1.7.1-15
206    
207     * Fri Aug 17 2006 Peter Jones <pjones@redhat.com> - 5.1.9-1
208     - Fix "MOUNT_PROC_USB" warning
209    
210     * Wed Aug 16 2006 Peter Jones <pjones@redhat.com> - 5.1.8-1
211     - Use modprobe to find module deps (#202559, #202596)
212     - Fix typo for /dev/efirtc (#202110)
213    
214     * Wed Aug 16 2006 Peter Jones <pjones@redhat.com> - 5.1.7-1
215     - Make "stabilized" work better (patch from Alexandre Oliva)
216     - Rewrite usb handling (notting and pjones)
217     - Fix libbdevid provides/obsoletes.
218     - Include usb hcd drivers by default
219    
220     * Mon Aug 14 2006 Bill Nottingham <notting@redhat.com> - 5.1.6-1
221     - don't make every root device /dev/loop0. Eep.
222    
223     * Mon Aug 14 2006 Peter Jones <pjones@redhat.com> - 5.1.5-1
224     - Provide libbdevid.
225    
226     * Mon Aug 14 2006 Peter Jones <pjones@redhat.com> - 5.1.4-1
227     - Fix requires for libbdevid
228     - Make it safe to call nashLogger and nashLoggerV with no context.
229    
230     * Mon Aug 14 2006 Mark McLoughlin <markmc@redhat.com> - 5.1.3-2
231     - Fix compile error
232    
233     * Fri Aug 11 2006 Bill Nottingham <notting@redhat.com> - 5.1.3-1
234     - replace various sed/grep/cut/head calls with bash & awk equivalents
235     - fix a typo
236     - nfs loop fixes
237     - silence xen errors when sysfs layout is different
238    
239     * Wed Jul 26 2006 Peter Jones <pjones@redhat.com> - 5.1.2-1
240     - pull in new libbdevid for scsi probing fix
241     - restructure package so things can include libbdevid (and its modules)
242     without depending on python
243    
244     * Wed Jul 19 2006 Bill Nottingham <notting@redhat.com>
245     - support for loopback root (including loop-over-NFS)
246    
247     * Tue Jul 18 2006 Jeremy Katz <katzj@redhat.com> - 5.1.1-1
248     - build with -fPIC
249     - pull in new libbdevid for linking fix
250    
251     * Mon Jul 17 2006 Jeremy Katz <katzj@redhat.com> - 5.1.0-1
252     - allow rootdev/rootfs/rootopts parsing on the mkinitrd command line (notting)
253     - fix case where we'd spin forever resolving a device (#199046)
254    
255     * Thu Jul 13 2006 Peter Jones <pjones@redhat.com> - 5.0.47-1
256     - add libbdevid
257     - fix mode handling on open syscall wrapper (patch from Mark McLoughlin)
258     - save dhcp lease file after network initialization (patch from markmc)
259    
260     * Thu Jul 6 2006 Bill Nottingham <notting@redhat.com>
261     - if NFS host doesn't resolve, assume it's an IP
262     - make sure IP check doesn't get extraneous info
263    
264     * Wed Jul 5 2006 Peter Jones <pjones@redhat.com>
265     - make libnash.a and the nash-devel package
266     - use libdhcp instead of pump (patch from Mark McLoughlin)
267    
268     * Fri Jun 30 2006 Jeremy Katz <katzj@redhat.com> - 5.0.46-1
269     - if we don't get a modalias for a net driver, try via
270     ethtool (notting, #196104)
271     - add patches from Aron Griffis (aron AT hp DOT com) for multiboot
272     support on ia64
273    
274     * Thu Jun 22 2006 Jeremy Katz <katzj@redhat.com> - 5.0.45-1
275     - don't emit <empty> for iscsi username/password stuff
276     - handle _netdev option for filesystems
277    
278     * Thu Jun 22 2006 Jeremy Katz <katzj@redhat.com> - 5.0.44-1
279     - fix so we only use iscsistart if we're doing root on iscsi
280     - fix spurious shell error (noticed by karsten)
281    
282     * Wed Jun 21 2006 Jeremy Katz <katzj@redhat.com> - 5.0.43-1
283     - Add back patches from pjones which had just been in the package for
284     * fix bad shell code to detect DMs in use
285     * fix "stabilized" to stat where appropriate
286     * use stabilized for sbp2
287    
288     * Wed Jun 21 2006 Jeremy Katz <katzj@redhat.com> - 5.0.42-1
289     - add a hack to handle xennet devices not having a modalias (#196104)
290     - initial pass at support for root on iscsi (patch from Patrick
291     Mansfield <patmans@us.ibm.com>)
292    
293     * Mon Jun 12 2006 Peter Jones <pjones@redhat.com>
294     - Fixes for stateless/diskless configurations (patch from Jeff Law,
295     <law@redhat.com>)
296    
297     * Wed May 24 2006 Peter Jones <pjones@redhat.com> - 5.0.41-1
298     - (very) basic multipath support
299     - minor fixes for usb
300    
301     * Thu May 18 2006 Jeremy Katz <katzj@redhat.com> - 5.0.40-1
302     - fix multiple netdev handling (#192321)
303    
304     * Tue May 10 2006 Peter Jones <pjones@redhat.com> - 5.0.39-1
305     - handle [eou]hci_hcd even _more_ correctly ;)
306    
307     * Tue May 9 2006 Peter Jones <pjones@redhat.com> - 5.0.38-1
308     - handle bringing up multiple network devices (katzj)
309     - make "withusb=yes" default
310     - add --without-usb
311     - make usb load [euo]hci_hcd correctly
312    
313     * Mon May 1 2006 Jeremy Katz <katzj@redhat.com> - 5.0.37-1
314     - munge rootopts on all non-nfs cases
315    
316     * Wed Apr 26 2006 Bill Nottingham <notting@redhat.com> - 5.0.36-1
317     - NFS root fixes
318     - fix typo
319    
320     * Mon Apr 10 2006 Peter Jones <pjones@redhat.com> - 5.0.34-1
321     - fix "!" handling for sysfs paths in mkblkdevs
322     - fix argument checking for mknodCommand
323    
324     * Thu Mar 30 2006 Peter Jones <pjones@redhat.com> - 5.0.33-1
325     - fix unbalanced pushd in mkinitrd (patch from Pete Zaitcev, bz# 185822)
326     - add "cond" command for simple conditionals (bz# 182938)
327     - add "status" command to see/set the exit status for testing
328     - add "--remove-args" and "--update" args for new-kernel-pkg (patch from
329     Don Zickus, bz# 183917)
330    
331     * Mon Mar 13 2006 Peter Jones <pjones@redhat.com> - 5.0.32-1
332     - handle sd_mod on scsi_mod in findmodule, not in the scsi setup. This
333     fixes the "no scsi_hostadapter" alias problem better (#182008).
334    
335     * Fri Mar 10 2006 Peter Jones <pjones@redhat.com> - 5.0.31-1
336     - add segv handler for nash
337    
338     * Wed Mar 8 2006 Peter Jones <pjones@redhat.com> - 5.0.30-1
339     - move blkid.tab* references to /etc/blkid/blkid.tab*
340     - don't do the selinux context stuff on blkid.tab*, as it now inherits from
341     the directory.
342    
343     * Mon Feb 27 2006 Peter Jones <pjones@redhat.com> - 5.0.29-1
344     - Fix pump-devel buildrequires
345     - Fix grubby's getpathbyspec() usage (#183010)
346     - Fix grubby's makefile
347     - Make readlink command work with super scary huge sysfs paths (#183091)
348     - Make readlink handle directories better (#166666)
349     - Don't create ramdisk blockdevs, mkblkdevs does it (#181873)
350     - Don't use showlabels to resolve labels, use resolveDevice so we don't
351     need messy awk (#180372)
352    
353     * Fri Feb 24 2006 Peter Jones <pjones@redhat.com> - 5.0.28-1
354     - Make /dev/efirtc on ia64 boxes (#182598)
355     - Handle selinux contexts on /etc/blkid.tab* since we can't do it in
356     libblkid.
357     - Make building from the "nash" subdir work again
358     - Make getpathbyspec() allocate on the caller's stack, eliminating
359     several memory leaks in callers.
360     - Don't strip nash
361    
362     * Wed Feb 22 2006 Peter Jones <pjones@redhat.com> - 5.0.27-1
363     - Fix multiboot argument quoting in new-kernel-package (#182243)
364     - Fix "netlink" fd error in hotplug initialization.
365     - Fix directory creation in smartmknod()
366     - Fix find command when it's not run alone (#181874, patch from Mark
367     McLoughlin)
368     - Don't use 0-length uuids
369     - Update /dev/mapper nodes more often
370     - Allow dm partadd not to include the /dev/mapper path
371     - Use /etc/fstab, not /fstab, so if you've got /sbin/mount it'll work
372     - Bring in sd_mod if libata or scsi_mod is selected (#181983)
373     - use -Wl,--wrap,open and __wrap_open() instead of coeOpen()
374    
375     * Wed Feb 15 2006 Peter Jones <pjones@redhat.com> - 5.0.26-1
376     - fix detection of floppy devices, don't probe them for labels
377     - fix grubby to use the same label scanning code as nash
378     - senseless rewriting of makefiles so that grubby can use nash's .o's, uh,
379     "more easily".
380    
381     * Tue Feb 14 2006 Peter Jones <pjones@redhat.com> - 5.0.25-1
382     - rework hotplug control fds (#181515)
383    
384     * Tue Feb 14 2006 Peter Jones <pjones@redhat.com> - 5.0.24-1
385     - use the right nash-dm command to get the device list
386     - check if a subdevice has the same partition table, not if it starts
387     at the right place (fixes partition comparison on !mirror devices)
388    
389     * Mon Feb 13 2006 Peter Jones <pjones@redhat.com> - 5.0.23-1
390     - add basic hotplug handler and firmware loader
391    
392     * Mon Feb 13 2006 Jesse Keating <jkeating@redhat.com> - 5.0.22-1.1
393     - rebump for build order issues during double-long bump
394    
395     * Sat Feb 11 2006 Peter Jones <pjones@redhat.com> - 5.0.22-1
396     - formatting cleanups
397     - prefix partition number with "p" for partitions on dmraid
398     - add support for disabling partitions which overlap with partitions on
399     dm devices.
400     - add multipath support
401     - fix dm creation ordering and partition detection
402     - add "network" command (katzj)
403     - add nfsroot support (katzj)
404     - put "showlabels" back into nash
405    
406     * Tue Feb 3 2006 Peter Jones <pjones@redhat.com> - 5.0.21-1
407     - add "mount -o bind" support and "mount --move" support (#109366, patch
408     from Kasper Dupont)
409     - add resolveDevice command, which cases down device labels.
410     - remove "findlodev" from the documentation (#178587)
411     - fix nash command name parsing bug (#178587)
412     - fix "find" argument parsing (#178587)
413     - add "find" handling for "-type d"
414    
415     * Thu Feb 2 2006 Peter Jones <pjones@redhat.com> - 5.0.20-1
416     - fix really dumb spec file mistake
417     - fix devno detection for /dev/root
418     - fix testdm check
419    
420     * Thu Feb 2 2006 Peter Jones <pjones@redhat.com> - 5.0.19-1
421     - mkinitrd: get resolve_dm_name() and get_numeric_dev() from initscripts
422     instead of a private copy
423     - add block.[ch]:
424     - move parse_sysfs_devnum(), sysfs_blkdev_probe(), and
425     mkpathbyspec() from nash.c
426     - add label/uuid/name lookups for block devices using libblkid
427     - add lib.[ch]:
428     - move makeFdCoe(), coeOpen(), coeFopen(), coeOpendir(), readFD(),
429     nashLoggerV(), nashLogger(), qprintf(), eprintf(), smartmknod(),
430     testing, quiet, reallyquiet from nash.c
431     - move nashDefaultLogger(), from dm.c
432     - move log enums and declarations from dm.h
433     - dm.c: add dm_finish(), which does dm_task_destroy() and then library cleanup
434     (solves an fd leak)
435     - remove linux_fs.h, mount_by_label.[ch], name_to_dev_t.[ch]
436    
437     * Tue Jan 31 2006 Peter Jones <pjones@redhat.com> - 5.0.18-1
438     - make mkinitrd discover dm uuids
439     - add uuid support to nash's "dm create" and "dm partadd"
440     - add nash command "dm get_uuid $NAME"
441     - add support for renamed dm raids
442    
443     * Tue Jan 3 2006 Peter Jones <pjones@redhat.com> - 5.0.17-1
444     - fix dm operations to create/remove device nodes during each change.
445    
446     * Tue Jan 3 2006 Peter Jones <pjones@redhat.com> - 5.0.16-1
447     - Hopefully fix raid autorun with a patch from Paul Flinders.
448    
449     * Mon Dec 19 2005 Peter Jones <pjones@redhat.com> - 5.0.15-1
450     - Don't open init's console with close-on-exec
451    
452     * Wed Dec 18 2005 Peter Jones <pjones@redhat.com> - 5.0.14-1
453     - Remove vestigial loopback support.
454     - Remove email addresses from man pages (which still need some work)
455    
456     * Fri Dec 16 2005 Jesse Keating <jkeating@redhat.com> - 5.0.13-1.1
457     - bump for gcc
458    
459     * Mon Dec 5 2005 Peter Jones <pjones@redhat.com> - 5.0.13-1
460     - Updates for gcc 4.1
461    
462     * Sat Nov 26 2005 Peter Jones <pjones@redhat.com> - 5.0.12-1
463     - Fix buildreq/req for dmraid on s390
464     - Typo fix from Alexandre Oliva
465    
466     * Mon Nov 21 2005 Peter Jones <pjones@redhat.com> - 5.0.11-1
467     - audit for open()s without appropriate closes()
468     - make new functions coeOpen(), coeFopen(), and coeOpendir(). These behave
469     like open(), fopen(), and opendir() except that they set any associated
470     file descriptors to close on exec().
471     - use them everywhere except where we open a console.
472    
473     * Thu Nov 17 2005 Peter Jones <pjones@redhat.com> - 5.0.10-1
474     - don't set up dmraids that aren't active in the initrd
475    
476     * Wed Nov 16 2005 Peter Jones <pjones@redhat.com> - 5.0.9-1
477     - dmraid support
478    
479     * Fri Oct 21 2005 Peter Jones <pjones@redhat.com> - 5.0.8-1
480     - don't clobber cmdline in mkrootdev (fixes runlevel selection)
481    
482     * Fri Oct 21 2005 Jeremy Katz <katzj@redhat.com> - 5.0.7-1
483     - fix new-kernel-pkg --multiboot=
484    
485     * Tue Oct 18 2005 <pjones@redhat.com> - 5.0.6-1
486     - make lvm work again
487    
488     * Mon Oct 17 2005 Peter Jones <pjones@redhat.com> - 5.0.5-1
489     - make PROBE, MODULES, and PREMODS load defaults from a config file
490     - get rid of support for not using a dynamic /dev
491     - add options to force device probes (for when PROBE is "no")
492     - consolidate some duplicate code paths
493     - make nash's otherCommand check PATH first and use what it finds there for
494     any commands it needs to run, unless the command starts with "nash-",
495     in which case the internal version is used unconditionally
496     - remove the symlink hack for setuproot/preswitchroot/switchroot
497     - wrap all the nash commands in mkinitrd with shell functions and use the
498     "nash-" varient.
499     - rework root fs creation so Jeremy can use the otherCommand feature
500    
501     * Fri Oct 7 2005 Peter Jones <pjones@redhat.com> - 5.0.4-1
502     - split switchroot into setuproot and switchroot, with presetuproot in
503     between
504     - make preswitchroot and setuproot execute through symlinks, so they may
505     be replaced by a second initramfs image
506     - add logic to mount filesystems specified in /etc/fstab.sys during setuproot
507     - general code cleanups
508    
509     * Fri Sep 30 2005 Peter Jones <pjones@redhat.com> - 5.0.3-1
510     - fix root dev discovery to give us "hda3" and such again, rather than
511     a full sysfs path
512    
513     * Thu Sep 29 2005 Peter Jones <pjones@redhat.com> - 5.0.2-1
514     - add error and quiet printf functions
515     - use them instead of testing quiet and typing stderr everywhere
516     - actually make _all_ errors use eprintf (and thus stderr)
517     - print strerror in errors instead of raw errno
518     - make "getKernelCmdLine use readFD
519     - make "getKernelArg" picky about if you've got the right command vs
520     just one that starts with the same string
521     - make "getKernelArg" handle "=" for you, so it either gives you the value
522     when there is one, '\0' when there's not and it's EOL, or whitespace.
523     - reformat some two-space-indent spots
524     - check for short reads in catCommand
525     - kill pivotroot
526     - cleaned up resume messages
527     - make mkrootdev use readFD
528     - combine mkdevies and makedevs into mkblkdevs, no longer
529     using /proc/partitions
530     - don't use callocs+memcpy/strcpy+strcat when we can use asprintf
531     - make setQuietCommand use getKenrelArg
532     - make runStartup use readFD
533     - patch from Alexandre Oliva to fix LVM-on-RAID1 /root and swap-on-LVM
534     (bz #169059)
535     - reorder device creation for easier maintenance create /dev/rtc
536     - change fixme comment about lvm vgs
537     - use cemit at some places we used a lot of emits before
538     - reorder device node creation for clarity
539     - use mkblkdevs instead of makedevs and mkdevices
540     - decouple loopback root and lvm
541    
542     * Wed Sep 28 2005 Peter Jones <pjones@redhat.com> - 5.0.1-1
543     - create /dev/rtc
544     - create /dev/tty, /dev/tty{0..11}, and /dev/ttyS{0..4}
545     - tweak the messages output in loud mode during device node creation
546    
547     * Tue Sep 27 2005 Peter Jones <pjones@redhat.com> - 5.0.0-1
548     - remove support for pivotroot
549     - remove support for non-initramfs initrds
550     - remove support for 2.4 kernels
551     - don't force scsi_mod before scsi modules; deps should bring it in.
552     same for "unknown"; it's not needed any more.
553     - lots of whitespace adjustment
554     - minor messaging changes
555     - no manual redirection to stderr or RCFILE, nor manual verbose checking
556     - in light of these changes and other planned changes, this is 5.0.0
557    
558     * Mon Sep 26 2005 Peter Jones <pjones@redhat.com> - 4.2.24-1
559     - Fix module discovery for raid (eleminates "find" warning as well)
560    
561     * Sun Sep 25 2005 Peter Jones <pjones@redhat.com> - 4.2.23-2
562     - Fix module discovery to not always use the modules /dev/hda1 requires
563     when using root-on-label.
564     - Put the lvm check after the raid check, so the raid check atually gets run.
565    
566     * Wed Sep 21 2005 Peter Jones <pjones@redhat.com> - 4.2.22-1
567     - Only scan appended kernel command line args for duplicates once.
568     - handle short reads correctly in nash's readFD
569     - use calloc for things instead of malloc, since we usually need zeroed memory
570     and we never memset
571     - use canonicalize_file_name instead of malloc+realpath
572     - honor quiet flag on suspend/resume
573     - autodetect storage drivers in mkinitrd
574    
575     * Mon Aug 15 2005 Peter Jones <pjones@redhat.com> - 4.2.21-1
576     - Fix a bug in switchroot's command line parsing (patch from mkj)
577    
578     * Fri Aug 12 2005 Jeremy Katz <katzj@redhat.com> - 4.2.20-1
579     - fix a buglet in root vg finding
580     - support resume with swsusp
581    
582     * Wed Aug 5 2005 Peter Jones <pjones@redhat.com> - 4.2.19-1
583     - Fix yaboot stanza placement with a patch from dwmw2 (#142346)
584    
585     * Wed Jul 20 2005 Bill Nottingham <notting@redhat.com> - 4.2.18-1
586     - since udev is not in use, don't require it or claim to be starting it
587    
588     * Fri Jun 24 2005 Peter Jones <pjones@redhat.com> - 4.2.17-1
589     - Don't use udev or udevstart in the initrd; it's trivial to do
590     all that work by looking for directories with "dev" nodes in sysfs
591     and making the device from the dirname using major/minor from "dev"
592    
593     * Mon Jun 6 2005 Peter Jones <pjones@redhat.com> - 4.2.16-1
594     - Add a patch from Jeff Layton to remove files from the initramfs
595     before executing the new init. (slightly modified, #153069)
596    
597     * Tue May 17 2005 Peter Jones <pjones@redhat.com> - 4.2.15-1
598     - Better init argument handling (don't mess up with serial console)
599    
600     * Tue May 10 2005 Peter Jones <pjones@redhat.com> - 4.2.14-1
601     - Better init argument handling (no uninitialized args)
602    
603     * Fri May 6 2005 Peter Jones <pjones@redhat.com> - 4.2.13-1
604     - allow for lvm VGs to be in the /dev/mapper/$VG-$LV format (#154767)
605    
606     * Wed May 4 2005 Peter Jones <pjones@redhat.com> - 4.2.12-1
607     - Don't copy "console=" arguments from /proc/cmdline to init
608    
609     * Wed May 4 2005 Peter Jones <pjones@redhat.com> - 4.2.11-1
610     - don't copy "rw" option into the initrd; use "ro" instead if it's
611     the only option.
612     - Don't print "unmounting old ..." messages in nash if we're set to quiet
613    
614     * Tue May 3 2005 Peter Jones <pjones@redhat.com> - 4.2.10-1
615     - set umask explicitly
616    
617     * Tue Apr 26 2005 Peter Jones <pjones@redhat.com> - 4.2.9-1
618     - invoke bash with "--norc" (#155986)
619     - use binary udevstart.static, not a symlink
620     - print exit status in nash when programs return an error
621    
622     * Tue Apr 5 2005 Peter Jones <pjones@redhat.com> - 4.2.8-1
623     - Don't consolidate duplicates in "--args" (#147222)
624    
625     * Wed Mar 30 2005 Peter Jones <pjones@redhat.com> - 4.2.7-1
626     - unmount what filesystems we can from the initramfs
627     - close appropriate files before spawning init
628    
629     * Wed Mar 23 2005 Peter Jones <pjones@redhat.com> - 4.2.6-1
630     - work correctly with "set -o noclobber"
631     - wait longer after modprobe of usb-storage
632     - fix a wrong error output file
633    
634     * Tue Mar 22 2005 Peter Jones <pjones@redhat.com> - 4.2.5-1
635     - handle mount-by-uuid for root correctly (##148756)
636    
637     * Thu Mar 17 2005 Peter Jones <pjones@redhat.com> - 4.2.4-1
638     - don't do vgmknodes at all for lvm
639    
640     * Tue Mar 15 2005 Peter Jones <pjones@redhat.com> - 4.2.3-1
641     - use --ignorelockingfailure with lvm commands in the initrd, and only
642     activate the volume / is on. (#151172)
643    
644     * Tue Mar 15 2005 Peter Jones <pjones@redhat.com> - 4.2.2-1
645     - Fix accidental formatting of data in grub.conf (#151118,
646     from proski@gnu.org)
647    
648     * Tue Mar 1 2005 Peter Jones <pjones@redhat.com> - 4.2.1-1
649     - typo fixes
650     - one missed gcc4 fix
651    
652     * Tue Mar 1 2005 Peter Jones <pjones@redhat.com> - 4.2.0.4-1
653     - fix gcc4 warnings/errors
654     - use -D_FORTIFY_SOURCE=2 wherever we don't use RPM_OPT_FLAGS
655    
656     * Fri Jan 21 2005 Peter Jones <pjones@redhat.com> - 4.2.0.3-1
657     - Make nash expand environment variables on command lines (#144474)
658     - Make nash check pids returned from wait*() (#145660)
659    
660     * Fri Jan 21 2005 Peter Jones <pjones@redhat.com> - 4.2.0.2-1
661     - Make getArg return NULL on cmd=NULL, fixing #144472 . Based on a
662     patch from Kasper Dupont.
663    
664     * Tue Jan 18 2005 Jeremy Katz <katzj@redhat.com> - 4.2.0.1-1
665     - fix grubby tests to run on systems with /boot = /
666    
667     * Tue Jan 18 2005 Jeremy Katz <katzj@redhat.com> - 4.2.0-1
668     - grubby: add multiboot support for xen0
669     - new-kernel-pkg: likewise
670    
671     * Mon Dec 20 2004 Jeremy Katz <katzj@redhat.com> - 4.1.20-1
672     - grubby: fix mac yaboot.conf updating if magicboot line is present
673    
674     * Mon Nov 22 2004 Jeremy Katz <katzj@redhat.com> - 4.1.19-1
675     - remove use of dietlibc for nash
676    
677     * Wed Nov 3 2004 Jeremy Katz <katzj@redhat.com>
678     - handle machines with lots of disks in /proc/partitions (#137816)
679    
680     * Sun Oct 24 2004 Jeremy Katz <katzj@redhat.com>
681     - require cpio (#136814)
682    
683     * Sun Oct 17 2004 Jeremy Katz <katzj@redhat.com> - 4.1.18-1
684     - fix UPDATEDEFAULT with new-kernel-pkg (#135997)
685    
686     * Fri Oct 15 2004 Jeremy Katz <katzj@redhat.com> - 4.1.17-1
687     - run udevstart again instead of sleeping, this will ensure all
688     devices are created in all cases after modules have been
689     loaded (thanks to notting)
690    
691     * Fri Oct 15 2004 Jeremy Katz <katzj@redhat.com> - 4.1.16-1
692     - mkinitrd: Sleep briefly to let udev finish creating devices
693    
694     * Wed Oct 13 2004 Jeremy Katz <katzj@redhat.com> - 4.1.15-1
695     - new-kernel-pkg: set new kernels as default (#135161) when
696     a) /etc/sysconfig/kernel contains UPDATEDEFAULT=yes
697     b) --package foo is passed in and foo matches DEFAULTKERNEL
698     in /etc/sysconfig/kernel
699    
700     * Thu Sep 30 2004 Jeremy Katz <katzj@redhat.com> - 4.1.14-1
701     - support changing root on the kernel command line with lvm (#133236)
702    
703     * Wed Sep 22 2004 Jeremy Katz <katzj@redhat.com> - 4.1.12-1
704     - update to work with udev 032, conflict with old udev
705     - if udev is present, use it. trying to avoid the use of udev if it's
706     installed is the road to things not working
707    
708     * Fri Sep 10 2004 Jeremy Katz <katzj@redhat.com> - 4.1.11-1
709     - more fixing
710    
711     * Wed Sep 8 2004 Jeremy Katz <katzj@redhat.com> - 4.1.10-1
712     - mkinitrd: mount tmpfs with the right permissions
713    
714     * Tue Aug 31 2004 Jeremy Katz <katzj@redhat.com> - 4.1.9-1
715     - mkinitrd: use tmpfs instead of ramfs for udev stuff
716    
717     * Fri Aug 27 2004 Jeremy Katz <katzj@redhat.com> - 4.1.8-1
718     - nash: and the hack to fix ppc broke other arches, conditionalize it (#130928)
719    
720     * Wed Aug 25 2004 Jeremy Katz <katzj@redhat.com> - 4.1.6-1
721     - nash: fix another off by one (#130987)
722     - nash: hack to fix ppc booting (#130928)
723    
724     * Tue Aug 25 2004 Karsten Hopp <karsten@redhat.com> - 4.1.5-1
725     - fix zfcp handling
726    
727     * Tue Aug 24 2004 Jeremy Katz <katzj@redhat.com> - 4.1.4-1
728     - nash: create raid device if needed (think udev) before calling
729     the raidautorun ioctl (#130561)
730    
731     * Tue Aug 24 2004 Jeremy Katz <katzj@redhat.com> - 4.1.3-1
732     - nash: make echo behavior consistent with other shells
733     - more fixes from Steve Grubb (#129673)
734    
735     * Mon Aug 23 2004 Karsten Hopp <karsten@redhat.de> 4.1.2-1
736     - mkinitrd: add support for zfcp devices (mainframe)
737    
738     * Thu Aug 19 2004 Jeremy Katz <katzj@redhat.com> - 4.1.1-1
739     - don't remove lost+found (#130327)
740     - don't try to mount/umount /sys on 2.4 (#130298)
741    
742     * Tue Aug 17 2004 Jeremy Katz <katzj@redhat.com> - 4.1.0-1
743     - mkinitrd: if using udev for the initrd, set things up appropriately
744     (based on patches from Harald Hoyer and Thomas Woerner)
745     - nash: support for echo -n
746     - nash: better error message on exec failures
747     - nash: exec udev if we're called as a hotplug handler
748    
749     * Mon Aug 16 2004 Jeremy Katz <katzj@redhat.com> - 4.0.6-1
750     - various fixes from a code review by Steve Grubb which should fix
751     some of the lingering problems (#129673)
752     - nash: warning fix from Michal Jaegermann (#129673)
753     - grubby: removal with (hd0,0)
754    
755     * Thu Aug 12 2004 Jeremy Katz <katzj@redhat.com> - 4.0.5-1
756     - nash: oops, let's try that again
757    
758     * Wed Aug 11 2004 Jeremy Katz <katzj@redhat.com> - 4.0.4-1
759     - nash: fix mounting by label in some cases (tracked down by
760     Erik Jacobson, #129581, #129673, #129667, #129635)
761    
762     * Tue Aug 10 2004 Jeremy Katz <katzj@redhat.com> 4.0.3-1
763     - grubby: more (hd0,0) support (#125156)
764     - mkinitrd.8: update manpage (#129585)
765     - nash: fix some warnings
766    
767     * Wed Aug 4 2004 Jeremy Katz <katzj@redhat.com> 4.0.2-1
768     - nash: support bind mounting
769     - grubby: support the (hd0,0)/path syntax for kernels and initrds in
770     grub.conf (#114758, #125156, #120906)
771    
772     * Wed Aug 4 2004 Jeremy Katz <katzj@redhat.com> - 4.0.1-1
773     - improve handling of arguments to init with initramfs (#129057)
774    
775     * Mon Aug 2 2004 Jeremy Katz <katzj@redhat.com> - 4.0.0-1
776     - create an initramfs on 2.6 kernels instead of an initrd
777     - use new mount magic instead of pivot_root
778     on 2.6 kernels
779     - try to handle the case of modules going away on kernel upgrades a
780     little bit more nicely (#123994)
781     - avoid over-zealous creation of /dev/mapper/control (#127115)
782     - improve nash(8) manpage (#127413)
783    
784     * Fri Jun 18 2004 Jeremy Katz <katzj@redhat.com> - 3.5.24-1
785     - fix usb-storage detection with 2.6 (#126309)
786    
787     * Tue May 18 2004 Jeremy Katz <katzj@redhat.com> - 3.5.23-1
788     - add support for RAID6
789    
790     * Wed May 12 2004 Jeremy Katz <katzj@redhat.com>
791     - add support for multipath personality from Tom Callaway (#120379)
792    
793     * Thu May 6 2004 Jeremy Katz <katzj@redhat.com> - 3.5.22-1
794     - bump initrd size (#122325)
795    
796     * Wed Apr 14 2004 Jeremy Katz <katzj@redhat.com> - 3.5.21-1
797     - new-kernel-package: add patch from Ryan Tilder to allow setting new
798     kernel as default (#117605)
799     - mkinitrd: i2o_pci isn't in 2.6 (#120827)
800     - new-kernel-pkg: conditionalize kernel binary name for 2.6 vs 2.4
801     on ppc/ppc64 (as it's vmlinuz in 2.6 instead of the
802     vmlinux from 2.4) (#120868)
803    
804     * Tue Apr 13 2004 Jeremy Katz <katzj@redhat.com> - 3.5.20-1
805     - mkinitrd: minor regex fix for some kernel names (#120624)
806    
807     * Mon Feb 9 2004 Jeremy Katz <katzj@redhat.com> - 3.5.19-1
808     - nash/mkinitrd: quiet mode for nash and necessary mkinitrd changes
809     to work with it
810     - mkinitrd: add lxo's patch for copying lvm.conf (#112099)
811     - new-kernel-pkg: allow specifying the banner used in the boot loader config
812     on the command line (#114809)
813    
814     * Tue Jan 13 2004 Jeremy Katz <katzj@redhat.com>
815     - mkinitrd: add patch from Alex Kiernan for modules with multiple
816     deps in 2.6 (#113306)
817    
818     * Thu Jan 8 2004 Jeremy Katz <katzj@redhat.com> 3.5.18-1
819     - new-kernel-pkg: add a --kernel-arguments option (#113125)
820    
821     * Tue Jan 6 2004 Jeremy Katz <katzj@redhat.com>
822     - fix ybin path (#112939)
823    
824     * Sun Jan 4 2004 Jeremy Katz <katzj@redhat.com> 3.5.17-1
825     - mkinitrd: handle multiple spaces in modules.conf (from Lubomir Bulej)
826     - nash: rebuild against new dietlibc fixing problems with root=LABEL= (#112623)
827     - mkinitrd: determine kernel version and adjust modulefile appropriately
828     so that we look at /etc/modprobe.conf for 2.6 kernels
829     - mkinitrd: first pass at getting lvm working on 2.4 -> 2.6 upgrade
830    
831     * Wed Dec 24 2003 Jeremy Katz <katzj@redhat.com>
832     - mkinitrd: quiet strip by default
833    
834     * Mon Dec 22 2003 Jeremy Katz <katzj@redhat.com> 3.5.16.1-1
835     - make stripping less aggressive
836    
837     * Mon Dec 22 2003 Jeremy Katz <katzj@redhat.com> 3.5.16-1
838     - fixing handling of non-lvm case when /dev/mapper/control isn't present
839     - add patch from Al Viro to get root dev in numeric form by grokking sysfs
840    
841     * Tue Dec 9 2003 Jeremy Katz <katzj@redhat.com>
842     - strip modules if /usr/bin/strip exists (#111756)
843    
844     * Fri Dec 5 2003 Jeremy Katz <katzj@redhat.com> 3.5.15-2
845     - require lvm2 so that it gets installed early enough
846    
847     * Fri Dec 5 2003 Jeremy Katz <katzj@redhat.com> 3.5.15-1
848     - mkinitrd: add support for lvm2 (note: will not currently handle being
849     on a running 2.4 kernel and installing 2.6 with lvm rootfs)
850    
851     * Wed Dec 3 2003 Jeremy Katz <katzj@redhat.com>
852     - nash: add mkdmnod for creating the device-mapper control node
853    
854     * Thu Oct 2 2003 Jeremy Katz <katzj@redhat.com> 3.5.14-1
855     - fix dependency on /usr/bin/tail and /usr/bin/id
856    
857     * Tue Sep 30 2003 Florian La Roche <Florian.LaRoche@redhat.de>
858     - remove one more mktemp dir for "all loopback devices in use" case
859    
860     * Tue Sep 23 2003 Jeremy Katz <katzj@redhat.com> 3.5.13-1
861     - fix getting modules from /lib/modules/$(uname -r)/updates
862    
863     * Mon Sep 22 2003 Jeremy Katz <katzj@redhat.com> 3.5.12-1
864     - argument checking and usage for /sbin/installkernel (#103109)
865    
866     * Wed Sep 3 2003 Jeremy Katz <katzj@redhat.com> 3.5.11-1
867     - really only do grub configs on grub arches
868     - some usb mkinitrd fixes
869    
870     * Fri Aug 29 2003 Jeremy Katz <katzj@redhat.com> 3.5.10-1
871     - clean up bogus warning in installkernel
872     - only try to do grub configs on arches which support grub (#103261)
873    
874     * Thu Aug 7 2003 Matt Wilson <msw@redhat.com> 3.5.9-1
875     - add \n to error messages in grubby
876     - NUL terminate buffer returned from readlink properly
877     - symlinks are most likely relative, chdir to / before trying to
878     follow them
879     - yaboot needs boot prefix
880     - silo needs boot prefix too
881    
882     * Wed Jul 30 2003 Jeremy Katz <katzj@redhat.com>
883     - grubby: don't segfault on label=\n (reported by dburcaw)
884    
885     * Thu Jul 24 2003 Jeremy Katz <katzj@redhat.com>
886     - grubby: patch from zaitcev for uninitialized variable that can get
887     hit in the zipl case
888    
889     * Mon Jul 21 2003 Jeremy Katz <katzj@redhat.com> 3.5.8-1
890     - bump initrd size (#99525)
891    
892     * Wed Jul 9 2003 Jeremy Katz <katzj@redhat.com> 3.5.7-1
893     - pick modules from /lib/modules/$(uname -r)/updates first
894     - be less confused by more than one module of a name
895    
896     * Wed Jun 25 2003 Jeremy Katz <katzj@redhat.com> 3.5.6-1
897     - unbreak reading module options from modules.conf again (#97982)
898    
899     * Fri Jun 20 2003 Bill Nottingham <notting@redhat.com> 3.5.5-1
900     - fix modules.dep usage for 2.5/2.6
901    
902     * Fri Jun 20 2003 Jeremy Katz <katzj@redhat.com> 3.5.4-1
903     - handle more bizarre modules.conf constructs (notting)
904    
905     * Thu Jun 12 2003 Jeremy Katz <katzj@redhat.com> 3.5.3-1
906     - mkinitrd: fix copying of pvs (#97314, #97289)
907     - mkinitrd: use pvscan instead of lvmdiskscan to find PVs to work
908     better on other arches
909     - mkinitrd: better check for dasd existence
910     - mkinitrd: make certain lvm-mod is included if root on lvm
911    
912     * Wed Jun 11 2003 Jeremy Katz <katzj@redhat.com> 3.5.2-1
913     - mkinitrd: revert use of modprobe -c. it breaks in the installer when we
914     don't have a modules.dep for the BOOT kernel
915     - nash: return pivot_root call correctly (#97753)
916    
917     * Wed Jun 11 2003 Jeremy Katz <katzj@redhat.com> 3.5.1-1
918     - nash: fix syscall bits with gcc 3.3 on s390
919     - new-kernel-pkg: do depmod before mkinitrd (#97218)
920    
921     * Tue Jun 10 2003 Jeremy Katz <katzj@redhat.com> 3.5.0-1
922     - mkinitrd: add patch from gc@mandrakesoft.com to determine module
923     deps from modules.dep (#87873)
924     - tweak patch to not break weird cases where module deps aren't all
925     you need :/
926     - grubby: don't remove the last kernel (#60041)
927     - mkinitrd: use modprobe -c to find module options (#89794)
928    
929     * Tue May 20 2003 Matt Wilson <msw@redhat.com> 3.4.52-1
930     - use addSystemMap to build the image for iSeries (#91187)
931    
932     * Fri May 16 2003 Jeremy Katz <katzj@redhat.com> 3.4.51-1
933     - grubby: error out gracefully if we run out of space (#85424)
934     - mkinitrd: copy parent dirs for pvs (#88962)
935     - mkinitrd: exit with an exit status if tar fails (#90123)
936     - new-kernel-pkg: only use the first entry for / (#90155)
937     - grubby: fix a buffer overflow (#90444)
938    
939     * Wed Apr 30 2003 Jeremy Katz <katzj@redhat.com> 3.4.50-1
940     - fix typo in new-kernel-pkg for iSeries
941    
942     * Wed Apr 30 2003 Elliot Lee <sopwith@redhat.com>
943     - BuildRequires: popt
944     - Change grubby Makefile to static-link popt a bit more cleanly
945    
946     * Thu Apr 24 2003 Jeremy Katz <katzj@redhat.com> 3.4.49.1-1
947     - use Arjan's suggestion of vmlinitrd for the kernel + initrd combo file
948    
949     * Thu Apr 24 2003 Jeremy Katz <katzj@redhat.com> 3.4.49-2
950     - fix description referencing /etc/conf.modules (#89558)
951    
952     * Thu Apr 24 2003 Jeremy Katz <katzj@redhat.com> 3.4.49-2
953     - require ppc64-utils on ppc
954    
955     * Fri Apr 18 2003 Jeremy Katz <katzj@redhat.com> 3.4.49-1
956     - new-kernel-pkg: on iSeries, we don't have a boot loader, just make the
957     kernel + initrd combo file (/boot/vmlinux-version.img)
958    
959     * Mon Apr 07 2003 Karsten Hopp <karsten@redhat.com> 3.4.48-1
960     - Fix segfault on mainframe
961    
962     * Wed Mar 26 2003 Jeremy Katz <katzj@redhat.com> 3.4.47-1
963     - mkinitrd: fix using options for loading modules
964     - mkinitrd: don't use kernel parameters for dasd at mkinitrd time,
965     use what's in modules.conf
966    
967     * Mon Mar 24 2003 Jeremy Katz <katzj@redhat.com> 3.4.46-1
968     - new-kernel-pkg: add necessary bits for s390, some logic cleanups
969     - grubby: fix root detection for s390{,x}
970    
971     * Sun Mar 23 2003 Jeremy Katz <katzj@redhat.com> 3.4.45-1
972     - grubby: add silo support (sparc)
973     - grubby: add zipl support (s390{,x})
974     - add grubby test cases for zipl support
975    
976     * Wed Mar 19 2003 Jeremy Katz <katzj@redhat.com> 3.4.44.1-1
977     - fix dasd option reading
978    
979     * Fri Mar 14 2003 Phil Knirsch <pknirsch@redhat.com> 3.4.44
980     - Added automatic dasd= parameters for kernel parameter on s390(x).
981    
982     * Tue Mar 4 2003 Jeremy Katz <katzj@redhat.com> 3.4.43-1
983     - apply ppc patches for new-kernel-pkg and installkernel from Dan
984     Burcaw <dburcaw@terrasoftsolutions.com>
985     - man page tweak (#85471)
986    
987     * Tue Feb 18 2003 Jeremy Katz <katzj@redhat.com> 3.4.42-1
988     - grubby: fix segfault from uninitialized variable (#84128)
989    
990     * Tue Feb 11 2003 Jeremy Katz <katzj@redhat.com> 3.4.41-1
991     - nash: add readlink
992     - use readlink for rootdev to handle symlinks to root devs (#83391)
993    
994     * Tue Feb 4 2003 Jeremy Katz <katzj@redhat.com> 3.4.40-1
995     - fix i2o module ordering (#83447)
996     - ifarch'd build requires of dietlibc now that the build system has a way to
997     handle these
998    
999     * Sat Feb 01 2003 Florian La Roche <Florian.LaRoche@redhat.de>
1000     - change one test from a number to a string test that could otherwise
1001     fail in not properly setup chroot environments
1002    
1003     * Fri Jan 31 2003 <ewt@redhat.com>
1004     - added support for yaboot
1005     - test script runs tests for all platforms
1006     - separated elilo configuration from lilo mode, allowing elilo specific
1007     tests to be run on any platform
1008    
1009     * Sun Jan 26 2003 <ewt@redhat.com>
1010     - grubby now shortens lilo titles to ensure they are less then 16 characters
1011     long (76236)
1012     - mkinitrd would only turn on /dev/md0 if raid was needed; now it enables
1013     all raid devices listed in /proc/mdstat (82209)
1014     - use product name from /etc/redhat-release to generate label in grub.conf
1015     (82352)
1016    
1017     * Mon Jan 20 2003 Bill Nottingham <notting@redhat.com> 3.4.36-1
1018     - don't error out running awk on /proc/mdstat if /proc/mdstat isn't
1019     there
1020    
1021     * Tue Jan 14 2003 <ewt@redhat.com>
1022     - all mkdev() actions will create directories as needed (some code in
1023     mkdevices is now obsolete; I'll remove it later) (#73317)
1024     - added mkdev command to test the above
1025     - support diratime/nodiratime mount options (#78738)
1026     - grubby will follow symlinks when writing new config file (#78713)
1027     - don't depend on raidtab, use /proc/mdstat instead (#80424) this covers
1028     both mkinitrd and grubby
1029    
1030     * Sun Jan 5 2003 Jeremy Katz <katzj@redhat.com> 3.4.34-1
1031     - grubby: fix segfault finding default if default doesn't have a root= (#66000)
1032     - don't include usb modules by default. pass --with-usb to get usb modules
1033     - make sure kudzu exists before trying to exec it
1034     - handle multiple scsi hosts being present (#77422)
1035     - add /usr/sbin to default path (#79581)
1036     - fix using --builtin= (#80448)
1037     - grubby: preserve the mode on config files (#80776)
1038    
1039     * Mon Dec 16 2002 Jeremy Katz <katzj@redhat.com>
1040     - errno fixes
1041    
1042     * Tue Dec 03 2002 Florian La Roche <Florian.LaRoche@redhat.de>
1043     - /sbin/new-kernel-pkg: fix a test to have correct ""
1044    
1045     * Fri Nov 22 2002 Jeremy Katz <katzj@redhat.com>
1046     - mkinitrd: more gzipped module fixes
1047    
1048     * Thu Nov 21 2002 Jeremy Katz <katzj@redhat.com>
1049     - mkinitrd: add support for finding gzipped modules
1050     - mkinitrd: don't be noisy if we don't have lvm-mod loaded
1051    
1052     * Wed Nov 6 2002 Jeremy Katz <katzj@redhat.com>
1053     - grubby: don't bail when looking for root in appends of lilo-style configs
1054     - include grubby on x86_64
1055    
1056     * Thu Sep 26 2002 Nalin Dahyabhai <nalin@redhat.com>
1057     - fix some syntax errors
1058     - use grep's -q flag to save a redirect in places where we're not redirecting
1059     stderr
1060    
1061     * Thu Sep 5 2002 Jeremy Katz <katzj@redhat.com>
1062     - grubby could segfault by going into its lilo checking if it couldn't find
1063     a default to copy (default had no root= and --bad-image-okay wasn't
1064     being used)
1065    
1066     * Mon Sep 2 2002 Jeremy Katz <katzj@redhat.com>
1067     - nash: create directories if needed in mkdevices command (#73090)
1068     - grubby: handle lilo case of non-linux default (#72202)
1069    
1070     * Sat Aug 31 2002 Jeremy Katz <katzj@redhat.com>
1071     - grubby: fix for case like 'append = " hdc=ide-scsi "' (#68802)
1072    
1073     * Fri Aug 30 2002 Bill Nottingham <notting@redhat.com>
1074     - fix firewire stuff (#72916)
1075    
1076     * Fri Aug 23 2002 Bill Nottingham <notting@redhat.com>
1077     - fix mpt fusion stuff
1078    
1079     * Tue Aug 13 2002 Jeremy Katz <katzj@redhat.com>
1080     - /boot/efi/redhat -> /boot/efi/EFI/redhat on ia64
1081    
1082     * Sun Aug 11 2002 Jeremy Katz <katzj@redhat.com>
1083     - fix grubby to work correctly on ia64
1084    
1085     * Thu Aug 08 2002 Michael Fulbright <msf@redhat.com>
1086     - added sleep command to nash and fixed creating initrd with / or /boot on usb
1087    
1088     * Tue Jul 30 2002 Jeremy Katz <katzj@redhat.com>
1089     - grubby: adding kernels to lilo.conf when not using root=LABEL will work
1090     now too
1091    
1092     * Fri Jul 26 2002 Erik Troan <ewt@redhat.com>
1093     - didn't close /proc/partitions in mkdevices
1094    
1095     * Thu Jul 25 2002 Jeremy Katz <katzj@redhat.com>
1096     - grubby: fix adding kernels to lilo when using root=LABEL
1097    
1098     * Wed Jul 24 2002 Erik Troan <ewt@redhat.com>
1099     - added and used mkdevices command (68959)
1100    
1101     * Wed Jul 17 2002 Erik Troan <ewt@redhat.com>
1102     - do proper probing to check root=LABEL
1103     - --bootloader-probe didn't support /etc/sysconfig/grub
1104    
1105     * Fri Jul 12 2002 Erik Troan <ewt@redhat.com>
1106     - don't sanity check root=LABEL right now; probing might make sense?
1107    
1108     * Wed Jul 10 2002 Erik Troan <ewt@redhat.com>
1109     - --ifneeded is obsolete; we always need initrds
1110     - grubby lets you specify multiple indexes for --info
1111     - grubby lets you select kernels by title
1112     - added showlabels to nash
1113     - new-kernel-pkg sets the root device from /etc/fstab rather then inheriting it
1114     - new-kernel-pkg removes all entries w/ a duplicate label (67459)
1115    
1116     * Mon Jul 08 2002 Erik Troan <ewt@redhat.com>
1117     - usb root device code could fail, causing no initrd to be made
1118    
1119     * Thu Jun 27 2002 Erik Troan <ewt@redhat.com>
1120     - grubby didn't add new kernels properly
1121    
1122     * Thu Jun 27 2002 Erik Troan <ewt@redhat.com>
1123     - support root on usb devices
1124    
1125     * Wed Jun 26 2002 Erik Troan <ewt@redhat.com>
1126     - other= in lilo.conf wasn't being parsed out properly
1127    
1128     * Mon Jun 24 2002 Erik Troan <ewt@redhat.com>
1129     - changed --add-kernel implementation so that --args gets handled properly
1130    
1131     * Sun Jun 23 2002 Erik Troan <ewt@redhat.com>
1132     - added loadinitrd (used by mkbootdisk) on ia32 and sparc
1133     - modules "off" and "null" should be ignored (67086)
1134     - mkrootdev looks for root=LABEL=/ in /proc/cmdline, so root by label
1135     works again (fully determined by root= kernel parameter)
1136     - added --update-kernel and --remove-args arguments to grubby
1137     - kernel specification of ALL supported by grubby
1138     - DEFAULT accepted much more consistently
1139     - grubby --info displays info on all kernels specified, not just the first
1140     - ext3 need mbcache now (67354)
1141     - grubby allows config file entry numbers to be used as kernel paths
1142     - support /etc/sysconfig/grub.conf
1143     - display lba info from lilo.conf file in --info
1144    
1145     * Thu Jun 13 2002 Jeremy Katz <katzj@redhat.com>
1146     - don't run lilo twice on kernel removal in new-kernel-pkg
1147     - don't run grubby to add/remove kernels from new-kernel-pkg if
1148     bootloader config doesn't
1149    
1150     * Tue Jun 11 2002 Erik Troan <ewt@redhat.com>
1151     - added --bootloader-probe to grubby
1152     - wrote a man page for grubby
1153     - include grubby on ia64
1154     - updated new-kernel-pkg to work with lilo/elilo
1155     - added --info=DEFAULT option
1156    
1157     * Mon Jun 10 2002 Jeremy Katz <katzj@redhat.com>
1158     - start raid before lvm so that you can have root on lvm on raid (#66175)
1159    
1160     * Tue Jun 04 2002 Erik Troan <ewt@redhat.com>
1161     - failed to initialize a variable in grubby
1162    
1163     * Fri May 31 2002 Erik Troan <ewt@redhat.com>
1164     - added --grub option so grub tests could run on ia64
1165     - added some basic tests of lilo default directive handling
1166    
1167     * Wed May 29 2002 Jeremy Katz <katzj@redhat.com>
1168     - require lvm
1169    
1170     * Tue May 28 2002 Bill Nottingham <notting@redhat.com>
1171     - fix umounting of /initrd when pivoting
1172    
1173     * Tue May 28 2002 Erik Troan <ewt@redhat.com>
1174     - marked /sbin/installkernel as %config (53006)
1175     - run make test during build
1176    
1177     * Wed May 22 2002 Erik Troan <ewt@redhat.com>
1178     - added --nopivot (53679)
1179     - honor INSTALL_PATH in installkernel (32833)
1180     - installkernel versions old kernels as well (52756)
1181     - lilo support added to grubby
1182    
1183     * Tue May 21 2002 Erik Troan <ewt@redhat.com>
1184     - cleaned up usage message
1185     - added --omit-lvm-modules to man page
1186     - added --builtin option (65250)
1187     - skip comments in fstab (65249)
1188     - added findlodev to nash, use that to pick block device (63421)
1189     - support -o option in nash's mount (59185)
1190     - look for xfs_dmapi (60066)
1191     - added > support for executed commands (61180)
1192     - grubby copies permissions from old config file (59227)
1193     - use options from fstab for root filesystem (56071)
1194     - try and be better about returning nonzero on error (60203)
1195     - make modprobe symlink properly to avoid kernel message (62145)
1196     - support linear raid (12775)
1197     - support fallback option in grub config (54794)
1198     - comments in template entries not handled quite right (65198)
1199    
1200     * Sat Apr 20 2002 Erik Troan <ewt@redhat.com>
1201     - grubby does a better job of not adding superfluous default= lines
1202    
1203     * Wed Apr 17 2002 Erik Troan <ewt@redhat.com>
1204     - preload works again
1205    
1206     * Wed Apr 10 2002 Jeremy Katz <katzj@redhat.com>
1207     - revert to not mounting by label
1208    
1209     * Fri Apr 5 2002 Jeremy Katz <katzj@redhat.com>
1210     - include pbrown's changes to load parport_pc when needing ppa.o (#35360)
1211    
1212     * Thu Apr 4 2002 Jeremy Katz <katzj@redhat.com>
1213     - fix redirection bug (#62623)
1214     - create proper link of /sbin->/bin in initrd (#62199)
1215    
1216     * Thu Mar 28 2002 Jeremy Katz <katzj@redhat.com>
1217     - prereq dev package so that we always have the dev package before we get run
1218    
1219     * Fri Mar 22 2002 Jeremy Katz <katzj@redhat.com>
1220     - duh, that won't work. fix it
1221     - don't require lvm tools right now
1222    
1223     * Thu Mar 21 2002 Jeremy Katz <katzj@redhat.com>
1224     - fix nash to create directories for devices like cciss and ida
1225    
1226     * Tue Feb 5 2002 Bill Nottingham <notting@redhat.com>
1227     - run mkinitrd with -f in new-kernel-pkg
1228     - don't run lilo in /sbin/installkernel
1229    
1230     * Fri Feb 1 2002 Jeremy Katz <katzj@redhat.com>
1231     - require lvm
1232    
1233     * Thu Jan 31 2002 Jeremy Katz <katzj@redhat.com>
1234     - clean up warnings for when /proc isn't mounted
1235    
1236     * Tue Jan 29 2002 Jeremy Katz <katzj@redhat.com>
1237     - fix probing for LVM usage to require a volume group to exist before adding
1238     the module
1239     - --omit-lvm-modules will omit LVM modules
1240     - add support for root device being LVM
1241    
1242     * Wed Jan 16 2002 Erik Troan <ewt@redhat.com>
1243     - look for a non /tmpfs directory
1244     - added support for xfs
1245     - use with raid md.o if it exists
1246     - fixed bug in echo
1247     - use find form nash rather then /usr (mkinitrd shouldn't need /usr
1248     mounted)
1249    
1250     * Fri Jan 11 2002 Erik Troan <ewt@redhat.com>
1251     - added support for mounting root filesystem by label
1252     - switched to dietlibc from minilibc
1253     - fix so --preload= works [33675,57560,44377]
1254     - added info on --image-version and --nocompress to man page [57560]
1255     - set fileystem check interval to 0 in case the system clock
1256     is borked [51454]
1257     - give a proper error when run by a user other then root [27218,53159]
1258     - grubby statically linked against popt [55305]
1259     - cleaned up verbose output a bit [21791]
1260    
1261     * Tue Dec 18 2001 Trond Eivind Glomsrød <teg@redhat.com>
1262     - Add LVM module when LVM is used
1263    
1264     * Wed Sep 5 2001 Jeremy Katz <katzj@redhat.com>
1265     - grubby shouldn't blow away default=saved lines (#52981)
1266    
1267     * Fri Aug 31 2001 Jeremy Katz <katzj@redhat.com>
1268     - fix new-kernel-pkg --mkinitrd for ia64
1269    
1270     * Thu Aug 30 2001 Erik Troan <ewt@redhat.com>
1271     - fixed bug handling invalid default (MF #52889)
1272     - in some cases we would set the default to point at a removed image
1273    
1274     * Wed Aug 29 2001 Erik Troan <ewt@redhat.com>
1275     - minor grubby fixes
1276    
1277     * Tue Aug 28 2001 Jeremy Katz <katzj@redhat.com>
1278     - let new-kernel-pkg be able to do more (initrds, modules.*)
1279     - include grubby only on x86
1280    
1281     * Mon Aug 27 2001 Jeremy Katz <katzj@redhat.com>
1282     - more grubby fixups for having a /boot
1283     - added new-kernel-pkg
1284    
1285     * Sun Aug 26 2001 Erik Troan <ewt@redhat.com>
1286     - added grubby
1287     - added installkernel
1288    
1289     * Fri Aug 3 2001 Matt Wilson <msw@redhat.com>
1290     - make consoles with the correct minor numbers
1291     - applied patch from hjl to fix fstab parsing (#50819)
1292    
1293     * Fri Jul 20 2001 Jeremy Katz <katzj@redhat.com>
1294     - skip errors finding jbd as a module if we're skipping them trying to find
1295     ext3 so that you can build a kernel with ext3 built-in and still use an
1296     initrd
1297    
1298     * Wed Jul 11 2001 Bill Nottingham <notting@redhat.com>
1299     - don't print errors if /etc/raidtab doesn't exist
1300     - or /etc/{modules.conf,conf.modules}, for that matter
1301    
1302     * Fri Jul 6 2001 Matt Wilson <msw@redhat.com>
1303     - don't dig through /etc/fstab to find out if we have a filesystem on
1304     a RAID device, it's usually mounted by label so /dev/mdN isn't there
1305     at all (#46525)
1306    
1307     * Tue Jun 26 2001 Bill Nottingham <notting@redhat.com>
1308     - require filesystem >= 2.1.0, otherwise we don't boot
1309    
1310     * Thu Jun 21 2001 Erik Troan <ewt@redhat.com>
1311     - added a bunch of commands to nash
1312     - use pivot_root
1313     - support ext3
1314    
1315     * Fri Jun 08 2001 Florian La Roche <Florian.LaRoche@redhat.de>
1316     - delete the exclusivearch line completely
1317    
1318     * Fri Mar 23 2001 Matt Wilson <msw@redhat.com>
1319     - reset the state of findmodule after getting the modules we need
1320    
1321     * Wed Feb 28 2001 Matt Wilson <msw@redhat.com>
1322     - changed the Requires on mktemp from >= 1.5 to >= 1.5-5 (which included
1323     -d support) (#30127)
1324    
1325     * Fri Feb 23 2001 Erik Troan <ewt@redhat.com>
1326     - let nash be invoked as modprobe to avoid a modprobe failure to exec
1327     - nash will try to run arbitrary commands now (removing insmod as a special
1328     case)
1329    
1330     * Mon Feb 12 2001 Matt Wilson <msw@redhat.com>
1331     - add findutils to Requires line (#27269)
1332    
1333     * Thu Feb 8 2001 Matt Wilson <msw@redhat.com>
1334     - added checks to load the modules i2o_block needs
1335    
1336     * Wed Feb 7 2001 Bill Nottingham <notting@redhat.com>
1337     - fix utterly broken build
1338    
1339     * Wed Jan 31 2001 Helge Deller <hdeller@redhat.com>
1340     - added mandir to nash Makefile (RH 6.x compatibility)
1341    
1342     * Tue Jan 30 2001 Erik Troan <ewt@redhat.com>
1343     - added dependency on mktemp
1344    
1345     * Thu Jan 25 2001 Erik Troan <ewt@redhat.com>
1346     - we need to insert xor.o before raid5.o
1347    
1348     * Wed Jan 24 2001 Matt Wilson <msw@redhat.com>
1349     - code in RAID_AUTORUN ioctl fallback
1350     - fixed raidstart check flag from -z to -n
1351    
1352     * Tue Jan 23 2001 Erik Troan <ewt@redhat.com>
1353     - switched to using nash from sash
1354    
1355     * Tue Jan 23 2001 Matt Wilson <msw@redhat.com>
1356     - added patch from twaugh to avoid blindly adding scsi_mod
1357     and sd_mod to initrd if they are not needed (#24114)
1358    
1359     * Thu Jan 11 2001 Bernhard Rosenkraenzer <bero@redhat.com>
1360     - Enlarge initrds, needed for systems with both IDE and SCSI
1361     (Bug #23846)
1362     - Version 2.[6789] probably shouldn't identify itself as 2.6
1363     with --version. ;)
1364     - bzip2 source
1365    
1366     * Wed Dec 20 2000 Erik Troan <ewt@redhat.com>
1367     - let the kernel autoload ide-cd
1368    
1369     * Fri Dec 08 2000 Erik Troan <ewt@redhat.com>
1370     - added modular ide support
1371    
1372     * Wed Aug 30 2000 Nalin Dahyabhai <nalin@redhat.com>
1373     - use mktemp to create temporary files and directories
1374    
1375     * Sat Aug 05 2000 Erik Troan <ewt@redhat.com>
1376     - changes from Keith Owens for 2.4
1377    
1378     * Tue Jul 4 2000 Matt Wilson <msw@redhat.com>
1379     - build on alpha
1380    
1381     * Mon Jun 26 2000 Bill Nottingham <notting@redhat.com>
1382     - ignore 'unknown' aliases (they shouldn't be there anyways)
1383    
1384     * Thu Jun 1 2000 Bill Nottingham <notting@redhat.com>
1385     - build on ia64
1386     - bump up initrd size on ia64
1387     - modules.confiscation, /usr/man -> /usr/share/man
1388    
1389     * Tue May 2 2000 Nalin Dahyabhai <nalin@redhat.com>
1390     - make RPM pick up man page, regardless of compression
1391    
1392     * Tue Feb 29 2000 Matt Wilson <msw@redhat.com>
1393     - add requirement for /sbin/losetup
1394    
1395     * Mon Feb 7 2000 Matt Wilson <msw@redhat.com>
1396     - gzip manpage
1397    
1398     * Thu Feb 3 2000 Matt Wilson <msw@redhat.com>
1399     - gzip manpage
1400    
1401     * Mon Jan 10 2000 Erik Troan <ewt@redhat.com>
1402     - use sash, not ash
1403    
1404     * Mon Jan 3 2000 Matt Wilson <msw@redhat.com>
1405     - use ash.static for /bin/sh, not sash
1406    
1407     * Sat Jan 1 2000 Erik Troan <ewt@redhat.com>
1408     - configure loopback devices
1409    
1410     * Tue Sep 28 1999 Bill Nottingham <notting@redhat.com>
1411     - sparc fixup from jakub
1412    
1413     * Wed Sep 22 1999 Michael K. Johnson <johnsonm@redhat.com>
1414     - fix cleanup (blush!)
1415    
1416     * Tue Sep 21 1999 Michael K. Johnson <johnsonm@redhat.com>
1417     - now works when /usr is not mounted (do not rely on /usr/bin/install)
1418     - slight cleanups, better usage message
1419    
1420     * Thu Jul 29 1999 Michael K. Johnson <johnsonm@redhat.com>
1421     - Now automatically includes necessary raid modules
1422     - --omit-raid-modules now omits raid modules
1423     - tiny doc updates
1424    
1425     * Thu Jul 29 1999 Bill Nottingham <notting@redhat.com>
1426     - updates from bugzila (#4243, #4244)
1427    
1428     * Sat Mar 27 1999 Matt Wilson <msw@redhat.com>
1429     - --omit-scsi-modules now omits all scsi modules
1430     - updated documentation
1431     - mkinitrd now grabs scsi_hostadapter modules from anywhere -
1432     some RAID controller modules live in block/
1433    
1434     * Thu Feb 25 1999 Matt Wilson <msw@redhat.com>
1435     - updated description
1436    
1437     * Mon Jan 11 1999 Matt Wilson <msw@redhat.com>
1438     - Ignore the absence of scsi modules, include them if they are there, but
1439     don't complain if they are not.
1440     - changed --no-scsi-modules to --omit-scsi-modules (as it should have been)
1441    
1442     * Thu Nov 5 1998 Jeff Johnson <jbj@redhat.com>
1443     - import from ultrapenguin 1.1.
1444    
1445     * Tue Oct 20 1998 Jakub Jelinek <jj@ultra.linux.cz>
1446     - fix for combined sparc/sparc64 insmod, also pluto module is really
1447     fc4:soc:pluto and we don't look at deps, so special case it.
1448    
1449     * Sat Aug 29 1998 Erik Troan <ewt@redhat.com>
1450     - replaced --needs-scsi-mods (which is now the default) with
1451     --omit-scsi-mods
1452    
1453     * Fri Aug 7 1998 Jeff Johnson <jbj@redhat.com>
1454     - correct obscure regex/shell interaction (hardwires tabs on line 232)
1455    
1456     * Mon Jan 12 1998 Erik Troan <ewt@redhat.com>
1457     - added 'make archive' rule to Makefile
1458     - rewrote install procedure for more robust version handling
1459     - be smarter about grabbing options from /etc/conf.modules
1460    
1461     * Mon Oct 20 1997 Erik Troan <ewt@redhat.com>
1462     - made it use /bin/ash.static
1463    
1464     * Wed Apr 16 1997 Erik Troan <ewt@redhat.com>
1465     - Only use '-s' to install binaries if /usr/bin/strip is present.
1466     - Use an image size of 2500 if binaries can't be stripped (1500 otherwise)
1467     - Don't use "mount -o loop" anymore -- losetup the proper devices manually
1468     - Requires losetup, e2fsprogs
1469    
1470     * Wed Mar 12 1997 Michael K. Johnson <johnsonm@redhat.com>
1471     - Fixed a bug in parsing options.
1472     - Changed to use a build tree, then copy the finished tree into the
1473     image after it is built.
1474     - Added patches derived from ones written by Christian Hechelmann which
1475     add an option to put the kernel version number at the end of the module
1476     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