source: projects/specs/trunk/m/mkinitrd/mkinitrd-vl.spec @ 806

Revision 806, 75.1 KB checked in by daisuke, 14 years ago (diff)

mkinitrd: remove bash4ism (patch21), add vine patches to repo

Line 
1Summary: Creates an initial ramdisk image for preloading modules.
2Summary(ja): モジュールをプリロードするための初期RAMディスク(initramfs)作成ユーティリティ
3Name: mkinitrd
4Version: 6.0.93
5Release: 7%{?_dist_release}
6License: GPLv2+
7Group: System Environment/Base
8
9Source0: mkinitrd-%{version}.tar.bz2
10
11Patch11: mkinitrd-6.0.93-add-drm-whitelist.patch
12Patch12: mkinitrd-6.0.93-fix-detect-usb-storage.patch
13Patch13: mkinitrd-6.0.93-no-daemonize-plymouth.patch
14Patch14: mkinitrd-6.0.93-noselinux.patch
15Patch15: mkinitrd-6.0.93-restrict-udev-messages.patch
16
17Patch20: mkinitrd-6.0.93-tuxonice.patch
18Patch21: mkinitrd-6.0.93-remove-bash4ism.patch
19
20ExclusiveOs: Linux
21URL: git://git.fedoraproject.org/git/hosted/mkinitrd
22Requires: /bin/sh, /sbin/insmod.static, /sbin/losetup
23Requires: fileutils, grep, mount, gzip, tar, mktemp
24Requires: lvm2
25Requires: filesystem >= 2.1.0, cpio, device-mapper, initscripts
26Requires: coreutils
27Requires: mdadm, elfutils-libelf, isomd5sum, plymouth
28Requires: util-linux-ng
29BuildRequires: popt-devel, elfutils-libelf-devel, elfutils-devel
30BuildRequires: libblkid-devel, parted-devel >= 1.8.5, pkgconfig
31BuildRequires: device-mapper-devel, python-devel
32BuildRequires: python, util-linux-ng, libnl-devel
33%ifnarch s390 s390x
34Requires: dmraid
35Requires: kbd
36%endif
37%ifarch ppc
38Requires: powerpc-utils
39%endif
40Requires: nash = %{version}-%{release}
41Requires: grubby
42BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
43
44%description
45mkinitrd creates filesystem images for use as initial ram filesystem
46(initramfs) images.  These images are used to find and mount the root
47filesystem.
48
49%package devel
50Summary: C header files and library for functionality exported by libnash.
51Summary(ja): C header files and library for functionality exported by libnash.
52Group: Development/Libraries
53Requires: glibc-devel, pkgconfig, e2fsprogs-devel, mkinitrd
54Requires: nash = %{version}-%{release}
55
56%package -n libbdevid-python
57Summary: Python bindings for libbdevid
58Summary(ja): Python bindings for libbdevid
59Group: System Environment/Libraries
60Requires: e2fsprogs, device-mapper-libs
61Requires: python, nash = %{version}-%{release}
62
63%package -n nash
64Summary: nash
65Summary(ja): nash
66Group: System Environment/Base
67Requires: parted, device-mapper-libs, e2fsprogs
68Requires: popt
69Requires: openssl, zlib
70Provides: libbdevid = %{version}-%{release}
71Obsoletes: libbdevid < %{version}-%{release}
72
73%description devel
74C header files and library for functionality exported by libnash.
75
76%description -n libbdevid-python
77Python bindings for libbdevid.
78
79%description -n nash
80nash
81
82%prep
83%setup -q -n mkinitrd-%{version}
84%patch11 -p1
85%patch12 -p1
86%patch13 -p1
87%patch14 -p1
88%patch15 -p1
89%patch20 -p1
90%patch21 -p1
91
92find . -name "Makefile*" -exec sed -i 's|-Werror||g' {} \;
93
94%build
95make LIB=%{_lib}
96make LIB=%{_lib} test
97
98%install
99rm -rf $RPM_BUILD_ROOT
100make LIB=%{_lib} DESTDIR=$RPM_BUILD_ROOT mandir=%{_mandir} install
101rm -f $RPM_BUILD_ROOT/sbin/bdevid $RPM_BUILD_ROOT/%{_includedir}/blkent.h
102
103%clean
104rm -rf $RPM_BUILD_ROOT
105
106%files
107%defattr(-,root,root)
108%attr(755,root,root) /sbin/mkinitrd
109%attr(644,root,root) %{_mandir}/man8/mkinitrd.8*
110%attr(755,root,root) /usr/libexec/mkliveinitrd
111%attr(755,root,root) /usr/libexec/initrd-functions
112
113%files devel
114%defattr(-,root,root)
115%{_libdir}/libnash.so
116%{_libdir}/libbdevid.so
117%{_libdir}/libbdevidprobe.a
118%{_libdir}/pkgconfig/libnash.pc
119%{_libdir}/pkgconfig/libbdevid.pc
120%{_libdir}/pkgconfig/libbdevidprobe.pc
121%{_includedir}/nash.h
122%{_includedir}/nash
123%{_includedir}/bdevid.h
124%{_includedir}/bdevid
125
126%files -n libbdevid-python
127%defattr(-,root,root)
128%{python_sitearch}/bdevid.so
129
130%files -n nash
131%defattr(-,root,root)
132%attr(644,root,root) %{_mandir}/man8/nash.8*
133%attr(755,root,root) /sbin/nash
134%attr(755,root,root) /sbin/lsinitrd
135/%{_lib}/bdevid
136%{_libdir}/libnash.so.*
137%{_libdir}/libbdevid.so.*
138%dir %{_sysconfdir}/kernel
139%dir %{_sysconfdir}/kernel/postinst.d
140%dir %{_sysconfdir}/kernel/prerm.d
141
142%changelog
143* Mon Apr 12 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 6.0.93-7
144- add Patch21 to remove bash4ism
145
146* Thu Mar 25 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 6.0.93-6
147- Requires powerpc-utils instead of ppc64-utils
148
149* Tue Mar 23 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 6.0.93-5
150- fix typo in patch20
151
152* Thu Mar 18 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 6.0.93-4
153- add Patch20 to support tuxonice
154
155* Tue Mar 16 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 6.0.93-3
156- fix python module path on x86_64
157
158* Mon Feb 22 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 6.0.93-2
159- add Patch11-15 from mdv
160
161* Mon Feb 15 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 6.0.93-1
162- initial build for Vine Linux
163
164* Wed Sep  2 2009 Hans de Goede <hdegoede@redhat.com> - 6.0.93-1
165- Move hotplug run to before gpu driver probing (airlied, #520730)
166- Fix (non-fatal) syntax error (katzj, #513414)
167
168* Mon Aug 10 2009 Ville Skyttä <ville.skytta@iki.fi> - 6.0.92-3
169- Convert specfile to UTF-8.
170
171* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.0.92-2
172- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
173
174* Mon Jul 20 2009 Jeremy Katz <katzj@redhat.com> - 6.0.92-1
175- Fix live image booting with udev creating /dev/mapper/control
176- Workaround to try to stop the live image dm backing images from showing
177  up in devkit-disks (#495170)
178
179* Fri Jul 10 2009 Tom "spot" Callaway <tcallawa@redhat.com> - 6.0.91-2
180- rebuild against new parted
181
182* Mon Jul  6 2009 Hans de Goede <hdegoede@redhat.com> - 6.0.91-1
183- Allow setting VG_LIST in /etc/sysconfig/mkinitrd (#509709)
184- Fix mkrootdev failing with norelatime option (#509687)
185
186* Tue Jun 30 2009 Hans de Goede <hdegoede@redhat.com> - 6.0.90-1
187- drop e2fsprogs requires (#508407)
188- process all PVs in a required VG (#506189)
189
190* Wed Jun 24 2009 Jeremy Katz <katzj@redhat.com> - 6.0.89-1
191- grubby is now its own source package as we prepare to let people
192  try out dracut more
193
194* Mon Jun 22 2009 Jeremy Katz <katzj@redhat.com> - 6.0.88-1
195- udev has dropped /lib/udev/vol_id, so use blkid instead (#506360)
196- accordingly, require new enough util-linux-ng for blkid -o udev
197
198* Tue Jun 16 2009 Hans de Goede <hdegoede@redhat.com> - 6.0.87-1
199- Fix mkinitrd creating a non booting initrd when parted-devel is installed
200  and the user has made configuration changes resulting in ld.so searching
201  /usr/lib before /lib (#502221)
202- Fix nash' network command not setting the default gateway (#501033)
203
204* Mon Jun 15 2009 Karsten Hopp <karsten@redhat.com> 6.0.86-2.1
205- there is no kbd package on s390x, don't require it there
206- require libblkid-devel instead on e2fsprogs-devel
207
208* Fri May 29 2009 Peter Jones <pjones@redhat.com> - 6.0.86-2
209- Require "kbd" package so keyboard settings will work right after initial
210  installation. (#501584)
211
212* Thu May 21 2009 Bill Nottingham <notting@redhat.com> - 6.0.86-1
213- Reorder font initialization to properly handle KMS
214
215* Tue May 19 2009 Peter Jones <pjones@redhat.com> - 6.0.85-1
216- Handle F9's crypttab format as well (#501198)
217
218* Thu May 14 2009 Peter Jones <pjones@redhat.com> - 6.0.84-1
219- Don't use fixed device names in cryptsetup (#500830)
220
221* Mon Apr 27 2009 Jeremy Katz <katzj@redhat.com> - 6.0.83-1
222- Fix up syntax error in udev rules for live image (#497762)
223
224* Thu Apr 16 2009 Jeremy Katz <katzj@redhat.com> - 6.0.82-1
225- Don't show live snapshot dev with devkit-disks (#495170)
226- grubby: Don't crash showing "other" sections (hans, #491622)
227
228* Mon Mar 16 2009 Hans de Goede <hdegoede@redhat.com> - 6.0.81-1
229- Make mkinitrd work with kernels < 2.6.29 (#487358, #489151)
230- Fix booting of i2o devices (#476277)
231
232* Fri Mar  6 2009 Jeremy Katz <katzj@redhat.com> - 6.0.80-1
233- Fix up a multi live case to work
234
235* Fri Mar  6 2009 Jeremy Katz <katzj@redhat.com> - 6.0.79-1
236- Fix handling of  keymaps which are symlinks (hdegoede, #485615)
237- Show splash later for live images (mccann)
238- Make live initrd boot quieter (#488862)
239- First steps of multiple live medium support (Till Maas)
240
241* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.0.78-2
242- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
243
244* Mon Feb 23 2009 Hans de Goede <hdegoede@redhat.com> - 6.0.78-1
245- Use dmraid instead of setting up dm tables ourselves, this fixed dmraid10
246  and via dmraid setups (hdegoede)
247- Speed up mkblkdevs (Alexandre Oliva)
248- exit() from nash-hotplug when the parent pid dies (Olivier Blin)
249- Avoid unnecessarily loading raid456 (#312521, Curtis Doty)
250- Fix various segfaults in renameNetworkInterface() (#485309, hdegoede)
251
252* Tue Feb 10 2009 Jeremy Katz <katzj@redhat.com> - 6.0.77-1
253- Fix mkliveinitrd with mtd root (#484496)
254- Minor boot speedup for the live case
255
256* Wed Feb  4 2009 Hans de Goede <hdegoede@redhat.com> - 6.0.76-1
257- Fix configuration of network interfaces for network boot (#481078)
258- Fix iscsi chap password being seen as ********
259- Handle lv root specified as /dev/dm-X properly (#471729)
260- Initial commit of EXTLINUX (no menu) support
261- Do not call dm_resolve_name on dmraidsets names, sometimes it fails, and
262  it is not necessary, this fixes the dmraid boot failure seen on
263  some systems (#476818)
264- Make nash mount support relatime (#296361)
265- FIX: nash unable to find dm devs by uuid or label (#480667)
266
267* Mon Jan 19 2009 Jeremy Katz <katzj@redhat.com> - 6.0.75-1
268- fix live images to be smarter with rootfstype=auto
269
270* Wed Jan 14 2009 Jeremy Katz <katzj@redhat.com> - 6.0.74-1
271- modesetting for live images
272
273* Thu Dec 18 2008 Jeremy Katz <katzj@redhat.com> - 6.0.73-7
274- Split grubby/new-kernel-pkg into their own package
275
276* Wed Dec 10 2008 Adam Jackson <ajax@redhat.com> 6.0.73-6
277- Fix description.
278
279* Sat Dec 06 2008 Jesse Keating <jkeating@redhat.com> - 6.0.73-5
280- Rebuild again for python-2.6
281
282* Thu Dec 04 2008 Peter Jones <pjones@redhat.com> - 6.0.73-4
283- libnl -> libnl-devel in the build requires.
284
285* Thu Dec 04 2008 Peter Jones <pjones@redhat.com> - 6.0.73-3
286- Update libdhcp requirements.
287
288* Thu Dec 04 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 6.0.73-2
289- Rebuild for Python 2.6
290
291* Thu Dec 04 2008 Peter Jones <pjones@redhat.com> - 6.0.73-1
292- Use scsi_wait_scan on scsi devices instead of stabilized (#470628)
293
294* Wed Dec 03 2008 Peter Jones <pjones@redhat.com> - 6.0.72-1
295- loadDrivers before plytmouth --show-splash (wtogami)
296- Ignore missing module groups specified in --with-avail (wtogami)
297- Use libnl and dhclient instead of libdhcp (dcantrell)
298
299* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 6.0.71-2
300- Rebuild for Python 2.6
301
302* Wed Nov 12 2008 Peter Jones <pjones@redhat.com> - 6.0.71-1
303- Allow passing live_keytable= for live keyboard (katzj, #470869)
304- Add "mkchardevs" command, so /dev/hvc* get created (#470839)
305- Fix option passing in mountCommand (#471142)
306- Do full console initialization in the initrd, not just keymap
307  (notting, #458362)
308- move loadDrivers before plymouth for ltsp (wtogami, #470858)
309
310* Tue Nov 04 2008 Peter Jones <pjones@redhat.com> - 6.0.70-1
311- Get rid of glib usage in libbdevid, since it's huge and not used much
312  (Patch from Pascal Terjan)
313- For text plymouth plugin for live initrds (katzj)
314- Fix erroneous qpushd's (lxo, #469611)
315- Handle raidstat contents better (lxo, #465542)
316- Fix logic in stabilizedHash (#466607)
317- Get rid of CVS stuff in the Makefile (notting)
318- Fix firmware path in the resultant initrd (#377921)
319- Hide the splash screen when booting fails (#460606)
320- Make scsi waiting happen on any device with a scsi modalias.
321
322* Wed Oct 29 2008 Peter Jones <pjones@redhat.com> - 6.0.69-1
323- Make it so we actually handle luks devs, cciss or otherwise. (dlehman)
324  Resolves: rhbz#468856
325
326* Mon Oct 27 2008 Peter Jones <pjones@redhat.com> - 6.0.68-1
327- Add buslogic and mptbase to "stabilized" module list.
328- load crc32c module for iscsistart (hansg)
329  Resolves: rhbz#467379
330- Don't run findstoragedriverinsys twice for the same device (hansg)
331  Resolves: rhbz#467390
332- Use iscsi session info for /, not the first one in "iscsiadm -m session"
333  output (hasng)
334  Resolves: rhbz#245645
335
336* Wed Oct 15 2008 Jeremy Katz <katzj@redhat.com> - 6.0.67-1
337- Fix various live initrd + plymouth interactions
338- Allow resetting the overlay at boot time for live initrd
339- Don't make the eject failure with the live_ram case fatal (#466114)
340
341* Thu Oct 09 2008 Peter Jones <pjones@redhat.com> - 6.0.66-1
342- Fix incorrect size allocation when probing weird scsi devices (#440661)
343
344* Mon Oct  6 2008 Jeremy Katz <katzj@redhat.com> - 6.0.65-1
345- More built-in modules + live initrd fixup
346
347* Tue Sep 23 2008 Jeremy Katz <katzj@redhat.com> - 6.0.64-1
348- Fix live initrds for some built-in modules
349
350* Thu Sep 11 2008 Peter Jones <pjones@redhat.com> - 6.0.63-2
351- Require a newer plymouth
352
353* Tue Sep 09 2008 Peter Jones <pjones@redhat.com> - 6.0.63-1
354- Only sleep for /proc/scsi/scsi changes once (wwoods)
355- Handle built-in usbfs better
356- Support dhcp-specified nbd root path (wtogami)
357- Hide plymouth splash screen before dropping to a shell (katzj)
358- Create /dev/live symlink for SD (katzj)
359- Don't force a max length for labels in zipl
360
361* Mon Aug 11 2008 Jeremy Katz <katzj@redhat.com> - 6.0.62-1
362- mkliveinitrd: Deal with changes in where udev expects things
363
364* Thu Aug  7 2008 Jeremy Katz <katzj@redhat.com> - 6.0.61-1
365- Fix calling of plymouth --ask-for-password more
366
367* Thu Aug 07 2008 Peter Jones <pjones@redhat.com> - 6.0.60-1
368- Make hcd kernel modules optional, so the kernel can have it built-in without
369  causing failure.
370- Fix handling of "dhcp" mount option with nfs.
371
372* Thu Aug  7 2008 Jeremy Katz <katzj@redhat.com> - 6.0.59-1
373- And move another function into initrd-functions
374
375* Wed Aug  6 2008 Jeremy Katz <katzj@redhat.com> - 6.0.58-1
376- Use correct plymouth-populate-initrd invocation in mkliveinitrd
377- Move mkliveinitrd to use bits and pieces from initrd-functions
378
379* Wed Jul 30 2008 Peter Jones <pjones@redhat.com> - 6.0.57-1
380- Fix mkliveinitrd's udevtrigger/udevadm usage (notting)
381
382* Tue Jul 29 2008 Peter Jones <pjones@redhat.com> - 6.0.56-1
383- Move a bunch of functions to /usr/libexec/initrd-functions so so that
384  plymouth-populate-initrd can use it instead of duplicating them.
385- Change how we're calling plymouth for password UI
386
387* Mon Jul 28 2008 Peter Jones <pjones@redhat.com> - 6.0.55-2
388- Require plymouth.
389
390* Mon Jul  7 2008 Jeremy Katz <katzj@redhat.com> - 6.0.55-1
391- Make plymouth work with live initrds
392- Strip out BOOT_IMAGE= as an argument to init so that things don't break if
393  you do init=/bin/bash from syslinux
394
395* Wed Jun 18 2008 Peter Jones <pjones@redhat.com> - 6.0.54-1
396- More plymouth work (pjones, rstrode)
397- Update mkliveinitrd because udev's command line utilities changed (katzj)
398
399* Fri Jun 13 2008 Peter Jones <pjones@redhat.com> - 6.0.53-1
400- Merge changes for plymouth integration.
401- Merge changes katzj forgot to push from F-9's 6.0.52-{1,2}:
402- Require isomd5sum so that live images can be verified (#445284)
403- Handle kvm virtio devices (markmc, #444155)
404- Output value from fstab into as arg to mkrootdev (pjones, #209473)
405- Don't depend on system.map (markmc, #430718)
406
407* Wed May 28 2008 Jeremy Katz <katzj@redhat.com> - 6.0.51-2
408- rebuild for libdhcp6client
409
410* Fri Apr 18 2008 Peter Jones <pjones@redhat.com> - 6.0.51-1
411- Handle bangpath translation in sysfs slightly differently.  (#442811)
412
413* Thu Apr 17 2008 Peter Jones <pjones@redhat.com> - 6.0.50-1
414- Handle bangpath translation in sysfs at one more place.  (#442811)
415
416* Thu Apr 17 2008 Peter Jones <pjones@redhat.com> - 6.0.49-1
417- The kernel uevent/sysfs API for firmware loading changed underneath us again.
418
419* Thu Apr 17 2008 Peter Jones <pjones@redhat.com> - 6.0.48-1
420- Add lsinitrd for cebbert.
421
422* Mon Apr 14 2008 Jeremy Katz <katzj@redhat.com> - 6.0.47-1
423- Fix merge fun
424
425* Mon Apr 14 2008 Peter Jones <pjones@redhat.com> - 6.0.46-1
426- Fix ps3 disk handling in /proc/devices (#389331)
427
428* Fri Apr 11 2008 Jeremy Katz <katzj@redhat.com> - 6.0.45-1
429- Fix final bit of resume for hibernate
430
431* Fri Apr 11 2008 Jeremy Katz <katzj@redhat.com> - 6.0.44-1
432- Fix up finding the resume device for hibernate (#438951)
433
434* Mon Apr 07 2008 Peter Jones <pjones@redhat.com> - 6.0.43-1
435- Require diffutils for /usr/bin/cmp (#438568)
436- Chase deps in /sys/block/dm-0/slaves/ and similar (#440485)
437
438* Mon Apr 07 2008 Peter Jones <pjones@redhat.com> - 6.0.42-1
439- Use libelf to find elf interpreter, so we don't have to iterate several
440  ld.so's looking for our linker. (#440091)
441- Try harder to make sure we can read device labels (#437534)
442- Support encrypted RAID member devices (#429600)
443- Fix postinst.d and perm.d usage, and own those directories (#441111)
444
445* Wed Apr 02 2008 Peter Jones <pjones@redhat.com> - 6.0.41-1
446- Fix a warning message when you run with no swap
447- Fix kernel's "make install"
448
449* Thu Mar 20 2008 Peter Jones <pjones@redhat.com> - 6.0.40-1
450- Use /etc/grub.conf rather than pointing at /boot/grub/grub.conf directly.
451
452* Tue Mar 18 2008 Peter Jones <pjones@redhat.com> - 6.0.39-1
453- Fix parsing of /proc/mdstat so we look for sda1 not sda (#437231)
454  (gawk, bash, I hate you both.)
455
456* Tue Mar 18 2008 Peter Jones <pjones@redhat.com> - 6.0.38-1
457- Add --posttrans support in new-kernel-package and installkernel.
458
459* Sun Mar 16 2008 Jeremy Katz <katzj@redhat.com> - 6.0.37-1
460- Fix syntax error with encrypted root
461
462* Fri Mar 14 2008 Peter Jones <pjones@redhat.com> - 6.0.36-1
463- Handle "mapper/" names at more places (hopefully fix #435173 and others)
464
465* Wed Mar 12 2008 Peter Jones <pjones@redhat.com> - 6.0.35-1
466- Resolve label/uuid to a device earlier (#435228)
467
468* Thu Mar  6 2008 Jeremy Katz <katzj@redhat.com> - 6.0.34-1
469- Fix scsi_wait_scan stuff up (#429937)
470- Add support for --without (wtogami, #436248)
471
472* Wed Mar  5 2008 Jeremy Katz <katzj@redhat.com> - 6.0.33-1
473- Fix the non-persistent overlay case
474
475* Tue Mar  4 2008 Jeremy Katz <katzj@redhat.com> - 6.0.32-1
476- Support keymaps for encrypted root devices (dlehman)
477- Add persistence bits to mkliveinitrd (based on changes by Douglas McClendon)
478
479* Tue Feb 26 2008 Jeremy Katz <katzj@redhat.com> - 6.0.31-1
480- Add mkliveinitrd
481
482* Thu Feb 21 2008 Peter Jones <pjones@redhat.com>
483- Require newer lvm2 version.
484
485* Wed Feb 20 2008 Peter Jones <pjones@redhat.com> - 6.0.30-1
486- Load selinux policy during boot.
487
488* Fri Feb 15 2008 Peter Jones <pjones@redhat.com> - 6.0.29-1
489- Work around sysfs path changes
490- Remove debugging echos from dm-crypt work.
491
492* Fri Feb  1 2008 Jeremy Katz <katzj@redhat.com> - 6.0.28-4
493- Don't create the rtc nodes in the initrd anymore (#431274)
494
495* Sat Jan 19 2008 Jeremy Katz <katzj@redhat.com> - 6.0.28-3
496- Don't call lvm.static -- it no longer exists
497
498* Mon Jan 14 2008 David Cantrell <dcantrell@redhat.com> - 6.0.28-2
499- Rebuild for new libdhcp
500
501* Wed Jan 09 2008 Peter Jones <pjones@redhat.com> - 6.0.28-1
502- Fix device detection with labels and no lvm (#427439, #426722)
503- Fix ppoll wrapper for older kernels
504
505* Thu Jan 03 2008 Jesse Keating <jkeating@redhat.com> - 6.0.27-2
506- Rebuild for libparted soname bump.
507
508* Wed Jan 02 2008 Peter Jones <pjones@redhat.com> - 6.0.27-1
509- Fix merge error that caused 6.0.25-1's change to be reverted.
510
511* Wed Jan 02 2008 Peter Jones <pjones@redhat.com> - 6.0.26-1
512- Update copyright and license info
513- Add support for loading all available drivers.
514
515* Fri Dec 21 2007 Peter Jones <pjones@redhat.com> - 6.0.25-2
516- Add BuildReq for util-linux-ng
517
518* Fri Dec 21 2007 Peter Jones <pjones@redhat.com> - 6.0.25-1
519- Don't remove two things from a GHashTable at the same time;
520  it doesn't work with newer glib2.
521
522* Fri Dec 15 2007 Jeremy Katz <katzj@redhat.com> - 6.0-24-1
523- And fix other stupid error for root on LVM on encrypted PV
524
525* Fri Dec 14 2007 Peter Jones <pjones@redhat.com> - 6.0.23-1
526- Fix syntax error from 6.0.22-1
527
528* Thu Dec 13 2007 Jeremy Katz <katzj@redhat.com> - 6.0-22-1
529- Fix root on LVM with an encrypted PV
530
531* Wed Dec 12 2007 Peter Jones <pjones@redhat.com> - 6.0.21-1
532- Fix missing mkdir for /lib
533
534* Tue Dec 11 2007 Peter Jones <pjones@redhat.com> - 6.0.20-1
535- Add encrypted root filesystem support (Patch from dlehman)
536
537* Fri Nov 30 2007 Jeremy Katz <katzj@redhat.com> - 6.0.19-6
538- rebuild for libdhcp6client bump
539
540* Sun Nov 11 2007 Jeremy Katz <katzj@redhat.com> - 6.0.19-5
541- and another rebuild
542
543* Fri Nov  9 2007 Jeremy Katz <katzj@redhat.com> - 6.0.19-4
544- rebuild for new libdhcp4client
545
546* Sat Oct 20 2007 Bill Nottingham <notting@redhat.com> - 6.0.19-3
547- pull the right dynamic linker when multiple ones are present (#336161)
548
549* Thu Sep 27 2007 Peter Jones <pjones@redhat.com> - 6.0.19-1
550- Fix nosegneg library discovery in get_dso_deps() harder (#244730)
551
552* Tue Sep 25 2007 Peter Jones <pjones@redhat.com> - 6.0.18-1
553- Fix segfault on x86_64 paravirt (#304731, patch from Harald Hoyer)
554
555* Wed Sep 19 2007 Peter Jones <pjones@redhat.com> - 6.0.17-1
556- Fix missing quotes causing failure to detect erroneous "--with" command line
557  arguments (#249163)
558- Use open64 in losetup so large files work (#220687)
559- Fix sysfs paths for fw-sbp2 (#231708)
560- Handle spaces in kernel command line better (#240785)
561- Fix handling of --omit-lvm-modules and --omit-dmraid
562
563* Fri Sep 11 2007 Peter Jones <pjones@redhat.com> - 6.0.16-1
564- Fix handling of CCISS one more time (bz#274201)
565
566* Fri Sep  7 2007 Peter Jones <pjones@redhat.com> - 6.0.15-1
567- Fix dmraid on x86_64.
568
569* Fri Aug 31 2007 Peter Jones <pjones@redhat.com> - 6.0.14-1
570- Don't probe loop devices as boot disks or in mkblkdevs
571- Minor performance improvements.
572
573* Thu Aug 30 2007 Peter Jones <pjones@redhat.com> - 6.0.13-1
574- More fixes to mkblkdevs and other related code.
575
576* Mon Aug 27 2007 Peter Jones <pjones@redhat.com> - 6.0.12-3
577- Fix mkblkdevs patch to actually apply ;)
578
579* Mon Aug 27 2007 Peter Jones <pjones@redhat.com> - 6.0.12-2
580- Fix segfault in scsi vpd probe code
581- Fix block device creation
582
583* Mon Aug 27 2007 Peter Jones <pjones@redhat.com> - 6.0.12-1
584- Unmerge one of the 'bash' branch changes; it's not ready yet.
585
586* Mon Aug 27 2007 Peter Jones <pjones@redhat.com> - 6.0.11-2
587- Fix minor build problem on x86_64.
588- Add BR: popt-devel
589
590* Mon Aug 27 2007 Peter Jones <pjones@redhat.com> - 6.0.11-1
591- Temporarily add a requires on mdadm to avoid #249587
592- Backport changes from 'bash' branch.
593
594* Tue Aug  1 2007 Peter Jones <pjones@redhat.com> - 6.0.10-3
595- rebuild to fix merge error.
596
597* Tue Jul 31 2007 Peter Jones <pjones@redhat.com> - 6.0.10-2
598- rebuild to fix merge error.
599
600* Tue Jul 31 2007 Peter Jones <pjones@redhat.com> - 6.0.10-1
601- Fix nosegneg library discovery in get_dso_deps() (#244730)
602- Only do ld.so discovery once in get_dso_deps()
603- Optionally use dhcp to discover nfsroot target (#248575)
604
605* Mon Jun 25 2007 Peter Jones <pjones@redhat.com>
606- Fix symlink paths in installkernel on ia64
607  Resolves #227711
608
609* Mon Apr 16 2007 Peter Jones <pjones@redhat.com> - 6.0.9-1
610- Use scsi_wait_scan.ko with scsi storage modules (#220470)
611- Fix handling of config files with no 'default' line in grubby
612
613* Wed Mar 28 2007 Peter Jones <pjones@redhat.com>
614- Fix perms on libbdevid
615
616* Fri Mar 23 2007 Jeremy Katz <katzj@redhat.com>
617- handle new firewire stack (#231708)
618
619* Wed Feb 28 2007 Peter Jones <pjones@redhat.com>
620- Fix linking error on bdevid probe modules
621
622* Tue Feb 27 2007 Peter Jones <pjones@redhat.com> - 6.0.8-1
623- nash and mkinitrd shouldn't both provide libbdevid.so.*
624
625* Tue Feb 13 2007 Peter Jones <pjones@redhat.com>
626- Query modules for firmware and try to copy it into the image.
627
628* Thu Feb  1 2007 Peter Jones <pjones@redhat.com>
629- Add support for ">>" in nash for better debugging of thaw from hibernate.
630
631* Mon Jan 22 2007 Peter Jones <pjones@redhat.com> - 6.0.7-1
632- Fix UUID handling on resume devices.
633- Don't require that a driver be modular when looking up its name in sysfs.
634- Make removable devices conditionally considered when scanning labels.
635- Fix handling of dm devices without device tables.
636
637* Thu Jan  4 2007 Jeremy Katz <katzj@redhat.com>
638- handle multiline options (#209447)
639- iscsi tools changed their syntax (#221088)
640
641* Wed Jan  3 2007 Jeremy Katz <katzj@redhat.com>
642- don't create /dev/tty* on s390 (#209204)
643
644* Tue Dec 19 2006 Peter Jones <pjones@redhat.com> - 6.0.6-1
645- Fix LABEL handling
646
647* Thu Dec 14 2006 Jeremy Katz <katzj@redhat.com> - 6.0.5-1
648- use "stabilized" with ahci and sata_* as well
649
650* Thu Dec 14 2006 Peter Jones <pjones@redhat.com> - 6.0.4-1
651- use "stabilized" with the new pata drivers so we don't race.
652
653* Thu Dec  7 2006 Jeremy Katz <katzj@redhat.com> - 6.0.3-1
654- build against arbitrary pythons and rebuild for python 2.5
655
656* Tue Dec  5 2006 Peter Jones <pjones@redhat.com> - 6.0.2-1
657- Fix typo introduced in merge (patch from notting)
658
659* Mon Dec  4 2006 Peter Jones <pjones@redhat.com> - 6.0.1-1
660- Fix library soname and link error.
661
662* Mon Dec  4 2006 Peter Jones <pjones@redhat.com> - 6.0-1
663- Merge in close() fix in bdevid probe code from rhel5 branch
664- Try to load raid456 module as well as individual level-based modules
665- more sophisticated modalias probing, so we get new storage drivers better
666  (patch from notting)
667- Handle dynamic executables and libraries
668- Don't clobber the kernel command line when handling resume (#215084).
669- Fix test for "withusb" (#215314).
670- Link dynamically
671
672* Thu Oct 26 2006 Peter Jones <pjones@redhat.com>
673- Don't reference "netdev" in addnetdev()
674- Only use one IP address for "remoteip" in handlenfs()
675- Abort much earlier if not invoked as UID 0
676
677* Thu Sep 28 2006 Peter Jones <pjones@redhat.com> - 5.1.19-1
678- Fix booting on non-LVM devices where sysfs uses a '!' in the device path,
679  such as cciss.  (#201875, #196360)
680
681* Wed Sep 27 2006 Peter Jones <pjones@redhat.com> - 5.1.18-1
682- Split nash into its own package to work around dep sorting issue on install.
683
684* Thu Sep 21 2006 Peter Jones <pjones@redhat.com> - 5.1.17-1
685- Fix module dependency probing when there's no modalias
686
687* Wed Sep 20 2006 Peter Jones <pjones@redhat.com> - 5.1.16-1
688- Don't require non-tmpfs tmpdir unless we're using loopback
689- Fix symlink chasing for yaboot.conf in grubby (#207302)
690
691* Wed Sep 20 2006 Jeremy Katz <katzj@redhat.com>
692- Hack for moduledeps of gfs2/nfs
693
694* Tue Sep 19 2006 Jeremy Katz <katzj@redhat.com>
695- Handle zfcp.conf not specifying scsiid and scsilun (#198803)
696
697* Tue Sep 12 2006 Peter Jones <pjones@redhat.com>
698- Fix escaping error in md-handler's awk script
699
700* Fri Sep  8 2006 Jesse Keating <jkeating@redhat.com> - 5.1.15-1
701- more typos to fix related to (#205194)
702
703* Fri Sep  8 2006 Peter Jones <pjones@redhat.com> - 5.1.14-1
704- Fix another typo in the same one-line shell wrapper (#205194)
705
706* Fri Sep  8 2006 Peter Jones <pjones@redhat.com> - 5.1.13-1
707- Fix missing coreutils dep and typo in shell wrapper (#205194)
708- Fix bad mpath test (#204758)
709
710* Thu Sep  7 2006 Peter Jones <pjones@redhat.com> - 5.1.12-1
711- Fix bug in dm dependency scanning (#205635)
712
713* Tue Sep  6 2006 Peter Jones <pjones@redhat.com> - 5.1.11-1
714- Pull in bdevid properly (not two sources any more)
715- Lots of minor bugfixes, leak fixups, etc.
716- Updates for new iScsi userland (katzj)
717- ata and usb device id probes in bdevid
718- preliminary work for boot-time device identification.
719- Fixes for network driver selection (katzj)
720
721* Fri Sep  1 2006 Peter Jones <pjones@redhat.com> - 5.1.10-1
722- Fix %%setup args
723- Work around lvm locking problems when clvm is installed (#203904)
724- Work around lvm segfault by always using lvm.static
725- Fix label scanning on dm devices (based on a patch from Hans de Goede)
726  (#204763)
727- handle the /proc/bus/usb mounting with a state machine in the module
728  loading emission, not with a sentinal value
729- do forced finding of devices *after* auto-detection of the root fs, so
730  we're not blindsided by bogus scsi_hostadapter aliases and the like.
731- move nashDm* functions to libnash so stuff in block.c can call them.
732
733* Tue Aug 29 2006 David Cantrell <dcantrell@redhat.com> - 5.1.9-2
734- BuildRequires parted-devel >= 1.7.1-15
735
736* Fri Aug 17 2006 Peter Jones <pjones@redhat.com> - 5.1.9-1
737- Fix "MOUNT_PROC_USB" warning
738
739* Wed Aug 16 2006 Peter Jones <pjones@redhat.com> - 5.1.8-1
740- Use modprobe to find module deps (#202559, #202596)
741- Fix typo for /dev/efirtc (#202110)
742
743* Wed Aug 16 2006 Peter Jones <pjones@redhat.com> - 5.1.7-1
744- Make "stabilized" work better (patch from Alexandre Oliva)
745- Rewrite usb handling (notting and pjones)
746- Fix libbdevid provides/obsoletes.
747- Include usb hcd drivers by default
748
749* Mon Aug 14 2006 Bill Nottingham <notting@redhat.com> - 5.1.6-1
750- don't make every root device /dev/loop0. Eep.
751
752* Mon Aug 14 2006 Peter Jones <pjones@redhat.com> - 5.1.5-1
753- Provide libbdevid.
754
755* Mon Aug 14 2006 Peter Jones <pjones@redhat.com> - 5.1.4-1
756- Fix requires for libbdevid
757- Make it safe to call nashLogger and nashLoggerV with no context.
758
759* Mon Aug 14 2006 Mark McLoughlin <markmc@redhat.com> - 5.1.3-2
760- Fix compile error
761
762* Fri Aug 11 2006 Bill Nottingham <notting@redhat.com> - 5.1.3-1
763- replace various sed/grep/cut/head calls with bash & awk equivalents
764- fix a typo
765- nfs loop fixes
766- silence xen errors when sysfs layout is different
767
768* Wed Jul 26 2006 Peter Jones <pjones@redhat.com> - 5.1.2-1
769- pull in new libbdevid for scsi probing fix
770- restructure package so things can include libbdevid (and its modules)
771  without depending on python
772
773* Wed Jul 19 2006 Bill Nottingham <notting@redhat.com>
774- support for loopback root (including loop-over-NFS)
775
776* Tue Jul 18 2006 Jeremy Katz <katzj@redhat.com> - 5.1.1-1
777- build with -fPIC
778- pull in new libbdevid for linking fix
779
780* Mon Jul 17 2006 Jeremy Katz <katzj@redhat.com> - 5.1.0-1
781- allow rootdev/rootfs/rootopts parsing on the mkinitrd command line (notting)
782- fix case where we'd spin forever resolving a device (#199046)
783
784* Thu Jul 13 2006 Peter Jones <pjones@redhat.com> - 5.0.47-1
785- add libbdevid
786- fix mode handling on open syscall wrapper (patch from Mark McLoughlin)
787- save dhcp lease file after network initialization (patch from markmc)
788
789* Thu Jul  6 2006 Bill Nottingham <notting@redhat.com>
790- if NFS host doesn't resolve, assume it's an IP
791- make sure IP check doesn't get extraneous info
792
793* Wed Jul  5 2006 Peter Jones <pjones@redhat.com>
794- make libnash.a and the nash-devel package
795- use libdhcp instead of pump (patch from Mark McLoughlin)
796
797* Fri Jun 30 2006 Jeremy Katz <katzj@redhat.com> - 5.0.46-1
798- if we don't get a modalias for a net driver, try via
799  ethtool (notting, #196104)
800- add patches from Aron Griffis (aron AT hp DOT com) for multiboot
801  support on ia64
802
803* Thu Jun 22 2006 Jeremy Katz <katzj@redhat.com> - 5.0.45-1
804- don't emit <empty> for iscsi username/password stuff
805- handle _netdev option for filesystems
806
807* Thu Jun 22 2006 Jeremy Katz <katzj@redhat.com> - 5.0.44-1
808- fix so we only use iscsistart if we're doing root on iscsi
809- fix spurious shell error (noticed by karsten)
810
811* Wed Jun 21 2006 Jeremy Katz <katzj@redhat.com> - 5.0.43-1
812- Add back patches from pjones which had just been in the package for
813  * fix bad shell code to detect DMs in use
814  * fix "stabilized" to stat where appropriate
815  * use stabilized for sbp2
816
817* Wed Jun 21 2006 Jeremy Katz <katzj@redhat.com> - 5.0.42-1
818- add a hack to handle xennet devices not having a modalias (#196104)
819- initial pass at support for root on iscsi (patch from Patrick
820  Mansfield <patmans@us.ibm.com>)
821
822* Mon Jun 12 2006 Peter Jones <pjones@redhat.com>
823- Fixes for stateless/diskless configurations (patch from Jeff Law,
824  <law@redhat.com>)
825
826* Wed May 24 2006 Peter Jones <pjones@redhat.com> - 5.0.41-1
827- (very) basic multipath support
828- minor fixes for usb
829
830* Thu May 18 2006 Jeremy Katz <katzj@redhat.com> - 5.0.40-1
831- fix multiple netdev handling (#192321)
832
833* Tue May 10 2006 Peter Jones <pjones@redhat.com> - 5.0.39-1
834- handle [eou]hci_hcd even _more_ correctly ;)
835
836* Tue May  9 2006 Peter Jones <pjones@redhat.com> - 5.0.38-1
837- handle bringing up multiple network devices (katzj)
838- make "withusb=yes" default
839- add --without-usb
840- make usb load [euo]hci_hcd correctly
841
842* Mon May  1 2006 Jeremy Katz <katzj@redhat.com>  - 5.0.37-1
843- munge rootopts on all non-nfs cases
844
845* Wed Apr 26 2006 Bill Nottingham <notting@redhat.com> - 5.0.36-1
846- NFS root fixes
847- fix typo
848
849* Mon Apr 10 2006 Peter Jones <pjones@redhat.com> - 5.0.34-1
850- fix "!" handling for sysfs paths in mkblkdevs
851- fix argument checking for mknodCommand
852
853* Thu Mar 30 2006 Peter Jones <pjones@redhat.com> - 5.0.33-1
854- fix unbalanced pushd in mkinitrd (patch from Pete Zaitcev, bz# 185822)
855- add "cond" command for simple conditionals (bz# 182938)
856- add "status" command to see/set the exit status for testing
857- add "--remove-args" and "--update" args for new-kernel-pkg (patch from
858  Don Zickus, bz# 183917)
859
860* Mon Mar 13 2006 Peter Jones <pjones@redhat.com> - 5.0.32-1
861- handle sd_mod on scsi_mod in findmodule, not in the scsi setup.  This
862  fixes the "no scsi_hostadapter" alias problem better (#182008).
863
864* Fri Mar 10 2006 Peter Jones <pjones@redhat.com> - 5.0.31-1
865- add segv handler for nash
866
867* Wed Mar  8 2006 Peter Jones <pjones@redhat.com> - 5.0.30-1
868- move blkid.tab* references to /etc/blkid/blkid.tab*
869- don't do the selinux context stuff on blkid.tab*, as it now inherits from
870  the directory.
871
872* Mon Feb 27 2006 Peter Jones <pjones@redhat.com> - 5.0.29-1
873- Fix pump-devel buildrequires
874- Fix grubby's getpathbyspec() usage (#183010)
875- Fix grubby's makefile
876- Make readlink command work with super scary huge sysfs paths (#183091)
877- Make readlink handle directories better (#166666)
878- Don't create ramdisk blockdevs, mkblkdevs does it (#181873)
879- Don't use showlabels to resolve labels, use resolveDevice so we don't
880  need messy awk (#180372)
881
882* Fri Feb 24 2006 Peter Jones <pjones@redhat.com> - 5.0.28-1
883- Make /dev/efirtc on ia64 boxes (#182598)
884- Handle selinux contexts on /etc/blkid.tab* since we can't do it in
885  libblkid.
886- Make building from the "nash" subdir work again
887- Make getpathbyspec() allocate on the caller's stack, eliminating
888  several memory leaks in callers.
889- Don't strip nash
890
891* Wed Feb 22 2006 Peter Jones <pjones@redhat.com> - 5.0.27-1
892- Fix multiboot argument quoting in new-kernel-package (#182243)
893- Fix "netlink" fd error in hotplug initialization.
894- Fix directory creation in smartmknod()
895- Fix find command when it's not run alone (#181874, patch from Mark
896  McLoughlin)
897- Don't use 0-length uuids
898- Update /dev/mapper nodes more often
899- Allow dm partadd not to include the /dev/mapper path
900- Use /etc/fstab, not /fstab, so if you've got /sbin/mount it'll work
901- Bring in sd_mod if libata or scsi_mod is selected (#181983)
902- use -Wl,--wrap,open and __wrap_open() instead of coeOpen()
903
904* Wed Feb 15 2006 Peter Jones <pjones@redhat.com> - 5.0.26-1
905- fix detection of floppy devices, don't probe them for labels
906- fix grubby to use the same label scanning code as nash
907- senseless rewriting of makefiles so that grubby can use nash's .o's, uh,
908  "more easily".
909
910* Tue Feb 14 2006 Peter Jones <pjones@redhat.com> - 5.0.25-1
911- rework hotplug control fds (#181515)
912
913* Tue Feb 14 2006 Peter Jones <pjones@redhat.com> - 5.0.24-1
914- use the right nash-dm command to get the device list
915- check if a subdevice has the same partition table, not if it starts
916  at the right place (fixes partition comparison on !mirror devices)
917
918* Mon Feb 13 2006 Peter Jones <pjones@redhat.com> - 5.0.23-1
919- add basic hotplug handler and firmware loader
920
921* Mon Feb 13 2006 Jesse Keating <jkeating@redhat.com> - 5.0.22-1.1
922- rebump for build order issues during double-long bump
923
924* Sat Feb 11 2006 Peter Jones <pjones@redhat.com> - 5.0.22-1
925- formatting cleanups
926- prefix partition number with "p" for partitions on dmraid
927- add support for disabling partitions which overlap with partitions on
928  dm devices.
929- add multipath support
930- fix dm creation ordering and partition detection
931- add "network" command (katzj)
932- add nfsroot support (katzj)
933- put "showlabels" back into nash
934
935* Tue Feb  3 2006 Peter Jones <pjones@redhat.com> - 5.0.21-1
936- add "mount -o bind" support and "mount --move" support (#109366, patch
937  from Kasper Dupont)
938- add resolveDevice command, which cases down device labels.
939- remove "findlodev" from the documentation (#178587)
940- fix nash command name parsing bug (#178587)
941- fix "find" argument parsing (#178587)
942- add "find" handling for "-type d"
943
944* Thu Feb  2 2006 Peter Jones <pjones@redhat.com> - 5.0.20-1
945- fix really dumb spec file mistake
946- fix devno detection for /dev/root
947- fix testdm check
948
949* Thu Feb  2 2006 Peter Jones <pjones@redhat.com> - 5.0.19-1
950- mkinitrd: get resolve_dm_name() and get_numeric_dev() from initscripts
951  instead of a private copy
952- add block.[ch]:
953  - move parse_sysfs_devnum(), sysfs_blkdev_probe(), and
954    mkpathbyspec() from nash.c
955  - add label/uuid/name lookups for block devices using libblkid
956- add lib.[ch]:
957  - move makeFdCoe(), coeOpen(), coeFopen(), coeOpendir(), readFD(),
958    nashLoggerV(), nashLogger(), qprintf(), eprintf(), smartmknod(),
959    testing, quiet, reallyquiet from nash.c
960  - move nashDefaultLogger(), from dm.c
961  - move log enums and declarations from dm.h
962- dm.c: add dm_finish(), which does dm_task_destroy() and then library cleanup
963  (solves an fd leak)
964- remove linux_fs.h, mount_by_label.[ch], name_to_dev_t.[ch]
965
966* Tue Jan 31 2006 Peter Jones <pjones@redhat.com> - 5.0.18-1
967- make mkinitrd discover dm uuids
968- add uuid support to nash's "dm create" and "dm partadd"
969- add nash command "dm get_uuid $NAME"
970- add support for renamed dm raids
971
972* Tue Jan  3 2006 Peter Jones <pjones@redhat.com> - 5.0.17-1
973- fix dm operations to create/remove device nodes during each change.
974
975* Tue Jan  3 2006 Peter Jones <pjones@redhat.com> - 5.0.16-1
976- Hopefully fix raid autorun with a patch from Paul Flinders.
977
978* Mon Dec 19 2005 Peter Jones <pjones@redhat.com> - 5.0.15-1
979- Don't open init's console with close-on-exec
980
981* Wed Dec 18 2005 Peter Jones <pjones@redhat.com> - 5.0.14-1
982- Remove vestigial loopback support.
983- Remove email addresses from man pages (which still need some work)
984
985* Fri Dec 16 2005 Jesse Keating <jkeating@redhat.com> - 5.0.13-1.1
986- bump for gcc
987
988* Mon Dec  5 2005 Peter Jones <pjones@redhat.com> - 5.0.13-1
989- Updates for gcc 4.1
990
991* Sat Nov 26 2005 Peter Jones <pjones@redhat.com> - 5.0.12-1
992- Fix buildreq/req for dmraid on s390
993- Typo fix from Alexandre Oliva
994
995* Mon Nov 21 2005 Peter Jones <pjones@redhat.com> - 5.0.11-1
996- audit for open()s without appropriate closes()
997- make new functions coeOpen(), coeFopen(), and coeOpendir().  These behave
998  like open(), fopen(), and opendir() except that they set any associated
999  file descriptors to close on exec().
1000- use them everywhere except where we open a console.
1001
1002* Thu Nov 17 2005 Peter Jones <pjones@redhat.com> - 5.0.10-1
1003- don't set up dmraids that aren't active in the initrd
1004
1005* Wed Nov 16 2005 Peter Jones <pjones@redhat.com> - 5.0.9-1
1006- dmraid support
1007
1008* Fri Oct 21 2005 Peter Jones <pjones@redhat.com> - 5.0.8-1
1009- don't clobber cmdline in mkrootdev (fixes runlevel selection)
1010
1011* Fri Oct 21 2005 Jeremy Katz <katzj@redhat.com> - 5.0.7-1
1012- fix new-kernel-pkg --multiboot=
1013
1014* Tue Oct 18 2005 <pjones@redhat.com> - 5.0.6-1
1015- make lvm work again
1016
1017* Mon Oct 17 2005 Peter Jones <pjones@redhat.com> - 5.0.5-1
1018- make PROBE, MODULES, and PREMODS load defaults from a config file
1019- get rid of support for not using a dynamic /dev
1020- add options to force device probes (for when PROBE is "no")
1021- consolidate some duplicate code paths
1022- make nash's otherCommand check PATH first and use what it finds there for
1023  any commands it needs to run, unless the command starts with "nash-",
1024  in which case the internal version is used unconditionally
1025- remove the symlink hack for setuproot/preswitchroot/switchroot
1026- wrap all the nash commands in mkinitrd with shell functions and use the
1027  "nash-" varient.
1028- rework root fs creation so Jeremy can use the otherCommand feature
1029
1030* Fri Oct  7 2005 Peter Jones <pjones@redhat.com> - 5.0.4-1
1031- split switchroot into setuproot and switchroot, with presetuproot in
1032  between
1033- make preswitchroot and setuproot execute through symlinks, so they may
1034  be replaced by a second initramfs image
1035- add logic to mount filesystems specified in /etc/fstab.sys during setuproot
1036- general code cleanups
1037
1038* Fri Sep 30 2005 Peter Jones <pjones@redhat.com> - 5.0.3-1
1039- fix root dev discovery to give us "hda3" and such again, rather than
1040  a full sysfs path
1041
1042* Thu Sep 29 2005 Peter Jones <pjones@redhat.com> - 5.0.2-1
1043- add error and quiet printf functions
1044- use them instead of testing quiet and typing stderr everywhere
1045- actually make _all_ errors use eprintf (and thus stderr)
1046- print strerror in errors instead of raw errno
1047- make "getKernelCmdLine use readFD
1048- make "getKernelArg" picky about if you've got the right command vs
1049  just one that starts with the same string
1050- make "getKernelArg" handle "=" for you, so it either gives you the value
1051  when there is one, '\0' when there's not and it's EOL, or whitespace.
1052- reformat some two-space-indent spots
1053- check for short reads in catCommand
1054- kill pivotroot
1055- cleaned up resume messages
1056- make mkrootdev use readFD
1057- combine mkdevies and makedevs into mkblkdevs, no longer
1058  using /proc/partitions
1059- don't use callocs+memcpy/strcpy+strcat when we can use asprintf
1060- make setQuietCommand use getKenrelArg
1061- make runStartup use readFD
1062- patch from Alexandre Oliva to fix LVM-on-RAID1 /root and swap-on-LVM
1063  (bz #169059)
1064- reorder device creation for easier maintenance create /dev/rtc
1065- change fixme comment about lvm vgs
1066- use cemit at some places we used a lot of emits before
1067- reorder device node creation for clarity
1068- use mkblkdevs instead of makedevs and mkdevices
1069- decouple loopback root and lvm
1070
1071* Wed Sep 28 2005 Peter Jones <pjones@redhat.com> - 5.0.1-1
1072- create /dev/rtc
1073- create /dev/tty, /dev/tty{0..11}, and /dev/ttyS{0..4}
1074- tweak the messages output in loud mode during device node creation
1075
1076* Tue Sep 27 2005 Peter Jones <pjones@redhat.com> - 5.0.0-1
1077- remove support for pivotroot
1078- remove support for non-initramfs initrds
1079- remove support for 2.4 kernels
1080- don't force scsi_mod before scsi modules; deps should bring it in.
1081  same for "unknown"; it's not needed any more.
1082- lots of whitespace adjustment
1083- minor messaging changes
1084- no manual redirection to stderr or RCFILE, nor manual verbose checking
1085- in light of these changes and other planned changes, this is 5.0.0
1086
1087* Mon Sep 26 2005 Peter Jones <pjones@redhat.com> - 4.2.24-1
1088- Fix module discovery for raid (eleminates "find" warning as well)
1089
1090* Sun Sep 25 2005 Peter Jones <pjones@redhat.com> - 4.2.23-2
1091- Fix module discovery to not always use the modules /dev/hda1 requires
1092  when using root-on-label.
1093- Put the lvm check after the raid check, so the raid check atually gets run.
1094
1095* Wed Sep 21 2005 Peter Jones <pjones@redhat.com> - 4.2.22-1
1096- Only scan appended kernel command line args for duplicates once.
1097- handle short reads correctly in nash's readFD
1098- use calloc for things instead of malloc, since we usually need zeroed memory
1099  and we never memset
1100- use canonicalize_file_name instead of malloc+realpath
1101- honor quiet flag on suspend/resume
1102- autodetect storage drivers in mkinitrd
1103
1104* Mon Aug 15 2005 Peter Jones <pjones@redhat.com> - 4.2.21-1
1105- Fix a bug in switchroot's command line parsing (patch from mkj)
1106
1107* Fri Aug 12 2005 Jeremy Katz <katzj@redhat.com> - 4.2.20-1
1108- fix a buglet in root vg finding
1109- support resume with swsusp
1110
1111* Wed Aug  5 2005 Peter Jones <pjones@redhat.com> - 4.2.19-1
1112- Fix yaboot stanza placement with a patch from dwmw2 (#142346)
1113
1114* Wed Jul 20 2005 Bill Nottingham <notting@redhat.com> - 4.2.18-1
1115- since udev is not in use, don't require it or claim to be starting it
1116
1117* Fri Jun 24 2005 Peter Jones <pjones@redhat.com> - 4.2.17-1
1118- Don't use udev or udevstart in the initrd; it's trivial to do
1119  all that work by looking for directories with "dev" nodes in sysfs
1120  and making the device from the dirname using major/minor from "dev"
1121
1122* Mon Jun  6 2005 Peter Jones <pjones@redhat.com> - 4.2.16-1
1123- Add a patch from Jeff Layton to remove files from the initramfs
1124  before executing the new init.  (slightly modified, #153069)
1125
1126* Tue May 17 2005 Peter Jones <pjones@redhat.com> - 4.2.15-1
1127- Better init argument handling (don't mess up with serial console)
1128
1129* Tue May 10 2005 Peter Jones <pjones@redhat.com> - 4.2.14-1
1130- Better init argument handling (no uninitialized args)
1131
1132* Fri May  6 2005 Peter Jones <pjones@redhat.com> - 4.2.13-1
1133- allow for lvm VGs to be in the /dev/mapper/$VG-$LV format (#154767)
1134
1135* Wed May  4 2005 Peter Jones <pjones@redhat.com> - 4.2.12-1
1136- Don't copy "console=" arguments from /proc/cmdline to init
1137
1138* Wed May  4 2005 Peter Jones <pjones@redhat.com> - 4.2.11-1
1139- don't copy "rw" option into the initrd; use "ro" instead if it's
1140  the only option.
1141- Don't print "unmounting old ..." messages in nash if we're set to quiet
1142
1143* Tue May  3 2005 Peter Jones <pjones@redhat.com> - 4.2.10-1
1144- set umask explicitly
1145
1146* Tue Apr 26 2005 Peter Jones <pjones@redhat.com> - 4.2.9-1
1147- invoke bash with "--norc" (#155986)
1148- use binary udevstart.static, not a symlink
1149- print exit status in nash when programs return an error
1150
1151* Tue Apr  5 2005 Peter Jones <pjones@redhat.com> - 4.2.8-1
1152- Don't consolidate duplicates in "--args" (#147222)
1153
1154* Wed Mar 30 2005 Peter Jones <pjones@redhat.com> - 4.2.7-1
1155- unmount what filesystems we can from the initramfs
1156- close appropriate files before spawning init
1157
1158* Wed Mar 23 2005 Peter Jones <pjones@redhat.com> - 4.2.6-1
1159- work correctly with "set -o noclobber"
1160- wait longer after modprobe of usb-storage
1161- fix a wrong error output file
1162
1163* Tue Mar 22 2005 Peter Jones <pjones@redhat.com> - 4.2.5-1
1164- handle mount-by-uuid for root correctly (##148756)
1165
1166* Thu Mar 17 2005 Peter Jones <pjones@redhat.com> - 4.2.4-1
1167- don't do vgmknodes at all for lvm
1168
1169* Tue Mar 15 2005 Peter Jones <pjones@redhat.com> - 4.2.3-1
1170- use --ignorelockingfailure with lvm commands in the initrd, and only
1171  activate the volume / is on.  (#151172)
1172
1173* Tue Mar 15 2005 Peter Jones <pjones@redhat.com> - 4.2.2-1
1174- Fix accidental formatting of data in grub.conf (#151118,
1175  from proski@gnu.org)
1176
1177* Tue Mar  1 2005 Peter Jones <pjones@redhat.com> - 4.2.1-1
1178- typo fixes
1179- one missed gcc4 fix
1180
1181* Tue Mar  1 2005 Peter Jones <pjones@redhat.com> - 4.2.0.4-1
1182- fix gcc4 warnings/errors
1183- use -D_FORTIFY_SOURCE=2 wherever we don't use RPM_OPT_FLAGS
1184
1185* Fri Jan 21 2005 Peter Jones <pjones@redhat.com> - 4.2.0.3-1
1186- Make nash expand environment variables on command lines (#144474)
1187- Make nash check pids returned from wait*() (#145660)
1188
1189* Fri Jan 21 2005 Peter Jones <pjones@redhat.com> - 4.2.0.2-1
1190- Make getArg return NULL on cmd=NULL, fixing #144472 .  Based on a
1191  patch from Kasper Dupont.
1192
1193* Tue Jan 18 2005 Jeremy Katz <katzj@redhat.com> - 4.2.0.1-1
1194- fix grubby tests to run on systems with /boot = /
1195
1196* Tue Jan 18 2005 Jeremy Katz <katzj@redhat.com> - 4.2.0-1
1197- grubby: add multiboot support for xen0
1198- new-kernel-pkg: likewise
1199
1200* Mon Dec 20 2004 Jeremy Katz <katzj@redhat.com> - 4.1.20-1
1201- grubby: fix mac yaboot.conf updating if magicboot line is present
1202
1203* Mon Nov 22 2004 Jeremy Katz <katzj@redhat.com> - 4.1.19-1
1204- remove use of dietlibc for nash
1205
1206* Wed Nov  3 2004 Jeremy Katz <katzj@redhat.com>
1207- handle machines with lots of disks in /proc/partitions (#137816)
1208
1209* Sun Oct 24 2004 Jeremy Katz <katzj@redhat.com>
1210- require cpio (#136814)
1211
1212* Sun Oct 17 2004 Jeremy Katz <katzj@redhat.com> - 4.1.18-1
1213- fix UPDATEDEFAULT with new-kernel-pkg (#135997)
1214
1215* Fri Oct 15 2004 Jeremy Katz <katzj@redhat.com> - 4.1.17-1
1216- run udevstart again instead of sleeping, this will ensure all
1217  devices are created in all cases after modules have been
1218  loaded (thanks to notting)
1219
1220* Fri Oct 15 2004 Jeremy Katz <katzj@redhat.com> - 4.1.16-1
1221- mkinitrd: Sleep briefly to let udev finish creating devices
1222
1223* Wed Oct 13 2004 Jeremy Katz <katzj@redhat.com> - 4.1.15-1
1224- new-kernel-pkg: set new kernels as default (#135161) when
1225  a) /etc/sysconfig/kernel contains UPDATEDEFAULT=yes
1226  b) --package foo is passed in and foo matches DEFAULTKERNEL
1227     in /etc/sysconfig/kernel
1228
1229* Thu Sep 30 2004 Jeremy Katz <katzj@redhat.com> - 4.1.14-1
1230- support changing root on the kernel command line with lvm (#133236)
1231
1232* Wed Sep 22 2004 Jeremy Katz <katzj@redhat.com> - 4.1.12-1
1233- update to work with udev 032, conflict with old udev
1234- if udev is present, use it.  trying to avoid the use of udev if it's
1235  installed is the road to things not working
1236
1237* Fri Sep 10 2004 Jeremy Katz <katzj@redhat.com> - 4.1.11-1
1238- more fixing
1239
1240* Wed Sep  8 2004 Jeremy Katz <katzj@redhat.com> - 4.1.10-1
1241- mkinitrd: mount tmpfs with the right permissions
1242
1243* Tue Aug 31 2004 Jeremy Katz <katzj@redhat.com> - 4.1.9-1
1244- mkinitrd: use tmpfs instead of ramfs for udev stuff
1245
1246* Fri Aug 27 2004 Jeremy Katz <katzj@redhat.com> - 4.1.8-1
1247- nash: and the hack to fix ppc broke other arches, conditionalize it (#130928)
1248
1249* Wed Aug 25 2004 Jeremy Katz <katzj@redhat.com> - 4.1.6-1
1250- nash: fix another off by one (#130987)
1251- nash: hack to fix ppc booting (#130928)
1252
1253* Tue Aug 25 2004 Karsten Hopp <karsten@redhat.com> - 4.1.5-1
1254- fix zfcp handling
1255
1256* Tue Aug 24 2004 Jeremy Katz <katzj@redhat.com> - 4.1.4-1
1257- nash: create raid device if needed (think udev) before calling
1258  the raidautorun ioctl (#130561)
1259
1260* Tue Aug 24 2004 Jeremy Katz <katzj@redhat.com> - 4.1.3-1
1261- nash: make echo behavior consistent with other shells
1262- more fixes from Steve Grubb (#129673)
1263
1264* Mon Aug 23 2004 Karsten Hopp <karsten@redhat.de> 4.1.2-1
1265- mkinitrd: add support for zfcp devices (mainframe)
1266
1267* Thu Aug 19 2004 Jeremy Katz <katzj@redhat.com> - 4.1.1-1
1268- don't remove lost+found (#130327)
1269- don't try to mount/umount /sys on 2.4 (#130298)
1270
1271* Tue Aug 17 2004 Jeremy Katz <katzj@redhat.com> - 4.1.0-1
1272- mkinitrd: if using udev for the initrd, set things up appropriately
1273  (based on patches from Harald Hoyer and Thomas Woerner)
1274- nash: support for echo -n
1275- nash: better error message on exec failures
1276- nash: exec udev if we're called as a hotplug handler
1277
1278* Mon Aug 16 2004 Jeremy Katz <katzj@redhat.com> - 4.0.6-1
1279- various fixes from a code review by Steve Grubb which should fix
1280  some of the lingering problems (#129673)
1281- nash: warning fix from Michal Jaegermann (#129673)
1282- grubby: removal with (hd0,0)
1283
1284* Thu Aug 12 2004 Jeremy Katz <katzj@redhat.com> - 4.0.5-1
1285- nash: oops, let's try that again
1286
1287* Wed Aug 11 2004 Jeremy Katz <katzj@redhat.com> - 4.0.4-1
1288- nash: fix mounting by label in some cases (tracked down by
1289  Erik Jacobson, #129581, #129673, #129667, #129635)
1290
1291* Tue Aug 10 2004 Jeremy Katz <katzj@redhat.com>  4.0.3-1
1292- grubby: more (hd0,0) support (#125156)
1293- mkinitrd.8: update manpage (#129585)
1294- nash: fix some warnings
1295
1296* Wed Aug  4 2004 Jeremy Katz <katzj@redhat.com> 4.0.2-1
1297- nash: support bind mounting
1298- grubby: support the (hd0,0)/path syntax for kernels and initrds in
1299  grub.conf (#114758, #125156, #120906)
1300
1301* Wed Aug  4 2004 Jeremy Katz <katzj@redhat.com> - 4.0.1-1
1302- improve handling of arguments to init with initramfs (#129057)
1303
1304* Mon Aug  2 2004 Jeremy Katz <katzj@redhat.com> - 4.0.0-1
1305- create an initramfs on 2.6 kernels instead of an initrd
1306- use new mount magic instead of pivot_root
1307  on 2.6 kernels
1308- try to handle the case of modules going away on kernel upgrades a
1309  little bit more nicely (#123994)
1310- avoid over-zealous creation of /dev/mapper/control (#127115)
1311- improve nash(8) manpage (#127413)
1312
1313* Fri Jun 18 2004 Jeremy Katz <katzj@redhat.com> - 3.5.24-1
1314- fix usb-storage detection with 2.6 (#126309)
1315
1316* Tue May 18 2004 Jeremy Katz <katzj@redhat.com> - 3.5.23-1
1317- add support for RAID6
1318
1319* Wed May 12 2004 Jeremy Katz <katzj@redhat.com>
1320- add support for multipath personality from Tom Callaway (#120379)
1321
1322* Thu May  6 2004 Jeremy Katz <katzj@redhat.com> - 3.5.22-1
1323- bump initrd size (#122325)
1324
1325* Wed Apr 14 2004 Jeremy Katz <katzj@redhat.com> - 3.5.21-1
1326- new-kernel-package: add patch from Ryan Tilder to allow setting new
1327  kernel as default (#117605)
1328- mkinitrd: i2o_pci isn't in 2.6 (#120827)
1329- new-kernel-pkg: conditionalize kernel binary name for 2.6 vs 2.4
1330  on ppc/ppc64 (as it's vmlinuz in 2.6 instead of the
1331  vmlinux from 2.4) (#120868)
1332
1333* Tue Apr 13 2004 Jeremy Katz <katzj@redhat.com> - 3.5.20-1
1334- mkinitrd: minor regex fix for some kernel names (#120624)
1335
1336* Mon Feb  9 2004 Jeremy Katz <katzj@redhat.com> - 3.5.19-1
1337- nash/mkinitrd: quiet mode for nash and necessary mkinitrd changes
1338  to work with it
1339- mkinitrd: add lxo's patch for copying lvm.conf (#112099)
1340- new-kernel-pkg: allow specifying the banner used in the boot loader config
1341  on the command line (#114809)
1342
1343* Tue Jan 13 2004 Jeremy Katz <katzj@redhat.com>
1344- mkinitrd: add patch from Alex Kiernan for modules with multiple
1345  deps in 2.6 (#113306)
1346
1347* Thu Jan  8 2004 Jeremy Katz <katzj@redhat.com> 3.5.18-1
1348- new-kernel-pkg: add a --kernel-arguments option (#113125)
1349
1350* Tue Jan  6 2004 Jeremy Katz <katzj@redhat.com>
1351- fix ybin path (#112939)
1352
1353* Sun Jan  4 2004 Jeremy Katz <katzj@redhat.com> 3.5.17-1
1354- mkinitrd: handle multiple spaces in modules.conf (from Lubomir Bulej)
1355- nash: rebuild against new dietlibc fixing problems with root=LABEL= (#112623)
1356- mkinitrd: determine kernel version and adjust modulefile appropriately
1357  so that we look at /etc/modprobe.conf for 2.6 kernels
1358- mkinitrd: first pass at getting lvm working on 2.4 -> 2.6 upgrade
1359
1360* Wed Dec 24 2003 Jeremy Katz <katzj@redhat.com>
1361- mkinitrd: quiet strip by default
1362
1363* Mon Dec 22 2003 Jeremy Katz <katzj@redhat.com> 3.5.16.1-1
1364- make stripping less aggressive
1365
1366* Mon Dec 22 2003 Jeremy Katz <katzj@redhat.com> 3.5.16-1
1367- fixing handling of non-lvm case when /dev/mapper/control isn't present
1368- add patch from Al Viro to get root dev in numeric form by grokking sysfs
1369
1370* Tue Dec  9 2003 Jeremy Katz <katzj@redhat.com>
1371- strip modules if /usr/bin/strip exists (#111756)
1372
1373* Fri Dec  5 2003 Jeremy Katz <katzj@redhat.com> 3.5.15-2
1374- require lvm2 so that it gets installed early enough
1375
1376* Fri Dec  5 2003 Jeremy Katz <katzj@redhat.com> 3.5.15-1
1377- mkinitrd: add support for lvm2 (note: will not currently handle being
1378  on a running 2.4 kernel and installing 2.6 with lvm rootfs)
1379
1380* Wed Dec  3 2003 Jeremy Katz <katzj@redhat.com>
1381- nash: add mkdmnod for creating the device-mapper control node
1382
1383* Thu Oct  2 2003 Jeremy Katz <katzj@redhat.com> 3.5.14-1
1384- fix dependency on /usr/bin/tail and /usr/bin/id
1385
1386* Tue Sep 30 2003 Florian La Roche <Florian.LaRoche@redhat.de>
1387- remove one more mktemp dir for "all loopback devices in use" case
1388
1389* Tue Sep 23 2003 Jeremy Katz <katzj@redhat.com> 3.5.13-1
1390- fix getting modules from /lib/modules/$(uname -r)/updates
1391
1392* Mon Sep 22 2003 Jeremy Katz <katzj@redhat.com> 3.5.12-1
1393- argument checking and usage for /sbin/installkernel  (#103109)
1394
1395* Wed Sep  3 2003 Jeremy Katz <katzj@redhat.com> 3.5.11-1
1396- really only do grub configs on grub arches
1397- some usb mkinitrd fixes
1398
1399* Fri Aug 29 2003 Jeremy Katz <katzj@redhat.com> 3.5.10-1
1400- clean up bogus warning in installkernel
1401- only try to do grub configs on arches which support grub (#103261)
1402
1403* Thu Aug  7 2003 Matt Wilson <msw@redhat.com> 3.5.9-1
1404- add \n to error messages in grubby
1405- NUL terminate buffer returned from readlink properly
1406- symlinks are most likely relative, chdir to / before trying to
1407  follow them
1408- yaboot needs boot prefix
1409- silo needs boot prefix too
1410
1411* Wed Jul 30 2003 Jeremy Katz <katzj@redhat.com>
1412- grubby: don't segfault on label=\n (reported by dburcaw)
1413
1414* Thu Jul 24 2003 Jeremy Katz <katzj@redhat.com>
1415- grubby: patch from zaitcev for uninitialized variable that can get
1416  hit in the zipl case
1417
1418* Mon Jul 21 2003 Jeremy Katz <katzj@redhat.com> 3.5.8-1
1419- bump initrd size (#99525)
1420
1421* Wed Jul  9 2003 Jeremy Katz <katzj@redhat.com> 3.5.7-1
1422- pick modules from /lib/modules/$(uname -r)/updates first
1423- be less confused by more than one module of a name
1424
1425* Wed Jun 25 2003 Jeremy Katz <katzj@redhat.com> 3.5.6-1
1426- unbreak reading module options from modules.conf again (#97982)
1427
1428* Fri Jun 20 2003 Bill Nottingham <notting@redhat.com> 3.5.5-1
1429- fix modules.dep usage for 2.5/2.6
1430
1431* Fri Jun 20 2003 Jeremy Katz <katzj@redhat.com> 3.5.4-1
1432- handle more bizarre modules.conf constructs (notting)
1433
1434* Thu Jun 12 2003 Jeremy Katz <katzj@redhat.com> 3.5.3-1
1435- mkinitrd: fix copying of pvs (#97314, #97289)
1436- mkinitrd: use pvscan instead of lvmdiskscan to find PVs to work
1437  better on other arches
1438- mkinitrd: better check for dasd existence
1439- mkinitrd: make certain lvm-mod is included if root on lvm
1440
1441* Wed Jun 11 2003 Jeremy Katz <katzj@redhat.com> 3.5.2-1
1442- mkinitrd: revert use of modprobe -c.  it breaks in the installer when we
1443  don't have a modules.dep for the BOOT kernel
1444- nash: return pivot_root call correctly (#97753)
1445
1446* Wed Jun 11 2003 Jeremy Katz <katzj@redhat.com> 3.5.1-1
1447- nash: fix syscall bits with gcc 3.3 on s390
1448- new-kernel-pkg: do depmod before mkinitrd (#97218)
1449
1450* Tue Jun 10 2003 Jeremy Katz <katzj@redhat.com> 3.5.0-1
1451- mkinitrd: add patch from gc@mandrakesoft.com to determine module
1452  deps from modules.dep (#87873)
1453- tweak patch to not break weird cases where module deps aren't all
1454  you need :/
1455- grubby: don't remove the last kernel (#60041)
1456- mkinitrd: use modprobe -c to find module options (#89794)
1457
1458* Tue May 20 2003 Matt Wilson <msw@redhat.com> 3.4.52-1
1459- use addSystemMap to build the image for iSeries (#91187)
1460
1461* Fri May 16 2003 Jeremy Katz <katzj@redhat.com> 3.4.51-1
1462- grubby: error out gracefully if we run out of space (#85424)
1463- mkinitrd: copy parent dirs for pvs (#88962)
1464- mkinitrd: exit with an exit status if tar fails (#90123)
1465- new-kernel-pkg: only use the first entry for / (#90155)
1466- grubby: fix a buffer overflow  (#90444)
1467
1468* Wed Apr 30 2003 Jeremy Katz <katzj@redhat.com> 3.4.50-1
1469- fix typo in new-kernel-pkg for iSeries
1470
1471* Wed Apr 30 2003 Elliot Lee <sopwith@redhat.com>
1472- BuildRequires: popt
1473- Change grubby Makefile to static-link popt a bit more cleanly
1474
1475* Thu Apr 24 2003 Jeremy Katz <katzj@redhat.com> 3.4.49.1-1
1476- use Arjan's suggestion of vmlinitrd for the kernel + initrd combo file
1477
1478* Thu Apr 24 2003 Jeremy Katz <katzj@redhat.com> 3.4.49-2
1479- fix description referencing /etc/conf.modules (#89558)
1480
1481* Thu Apr 24 2003 Jeremy Katz <katzj@redhat.com> 3.4.49-2
1482- require ppc64-utils on ppc
1483
1484* Fri Apr 18 2003 Jeremy Katz <katzj@redhat.com> 3.4.49-1
1485- new-kernel-pkg: on iSeries, we don't have a boot loader, just make the
1486  kernel + initrd combo file (/boot/vmlinux-version.img)
1487
1488* Mon Apr 07 2003 Karsten Hopp <karsten@redhat.com> 3.4.48-1
1489- Fix segfault on mainframe
1490
1491* Wed Mar 26 2003 Jeremy Katz <katzj@redhat.com> 3.4.47-1
1492- mkinitrd: fix using options for loading modules
1493- mkinitrd: don't use kernel parameters for dasd at mkinitrd time,
1494  use what's in modules.conf
1495
1496* Mon Mar 24 2003 Jeremy Katz <katzj@redhat.com> 3.4.46-1
1497- new-kernel-pkg: add necessary bits for s390, some logic cleanups
1498- grubby: fix root detection for s390{,x}
1499
1500* Sun Mar 23 2003 Jeremy Katz <katzj@redhat.com> 3.4.45-1
1501- grubby: add silo support (sparc)
1502- grubby: add zipl support (s390{,x})
1503- add grubby test cases for zipl support
1504
1505* Wed Mar 19 2003 Jeremy Katz <katzj@redhat.com> 3.4.44.1-1
1506- fix dasd option reading
1507
1508* Fri Mar 14 2003 Phil Knirsch <pknirsch@redhat.com> 3.4.44
1509- Added automatic dasd= parameters for kernel parameter on s390(x).
1510
1511* Tue Mar  4 2003 Jeremy Katz <katzj@redhat.com> 3.4.43-1
1512- apply ppc patches for new-kernel-pkg and installkernel from Dan
1513  Burcaw <dburcaw@terrasoftsolutions.com>
1514- man page tweak (#85471)
1515
1516* Tue Feb 18 2003 Jeremy Katz <katzj@redhat.com> 3.4.42-1
1517- grubby: fix segfault from uninitialized variable (#84128)
1518
1519* Tue Feb 11 2003 Jeremy Katz <katzj@redhat.com> 3.4.41-1
1520- nash: add readlink
1521- use readlink for rootdev to handle symlinks to root devs (#83391)
1522
1523* Tue Feb  4 2003 Jeremy Katz <katzj@redhat.com> 3.4.40-1
1524- fix i2o module ordering (#83447)
1525- ifarch'd build requires of dietlibc now that the build system has a way to
1526  handle these
1527
1528* Sat Feb 01 2003 Florian La Roche <Florian.LaRoche@redhat.de>
1529- change one test from a number to a string test that could otherwise
1530  fail in not properly setup chroot environments
1531
1532* Fri Jan 31 2003 <ewt@redhat.com>
1533- added support for yaboot
1534- test script runs tests for all platforms
1535- separated elilo configuration from lilo mode, allowing elilo specific
1536  tests to be run on any platform
1537
1538* Sun Jan 26 2003 <ewt@redhat.com>
1539- grubby now shortens lilo titles to ensure they are less then 16 characters
1540  long (76236)
1541- mkinitrd would only turn on /dev/md0 if raid was needed; now it enables
1542  all raid devices listed in /proc/mdstat (82209)
1543- use product name from /etc/redhat-release to generate label in grub.conf
1544  (82352)
1545
1546* Mon Jan 20 2003 Bill Nottingham <notting@redhat.com> 3.4.36-1
1547- don't error out running awk on /proc/mdstat if /proc/mdstat isn't
1548  there
1549
1550* Tue Jan 14 2003 <ewt@redhat.com>
1551- all mkdev() actions will create directories as needed (some code in
1552  mkdevices is now obsolete; I'll remove it later) (#73317)
1553- added mkdev command to test the above
1554- support diratime/nodiratime mount options (#78738)
1555- grubby will follow symlinks when writing new config file (#78713)
1556- don't depend on raidtab, use /proc/mdstat instead (#80424) this covers
1557  both mkinitrd and grubby
1558
1559* Sun Jan  5 2003 Jeremy Katz <katzj@redhat.com> 3.4.34-1
1560- grubby: fix segfault finding default if default doesn't have a root= (#66000)
1561- don't include usb modules by default.  pass --with-usb to get usb modules
1562- make sure kudzu exists before trying to exec it
1563- handle multiple scsi hosts being present (#77422)
1564- add /usr/sbin to default path (#79581)
1565- fix using --builtin= (#80448)
1566- grubby: preserve the mode on config files (#80776)
1567
1568* Mon Dec 16 2002 Jeremy Katz <katzj@redhat.com>
1569- errno fixes
1570
1571* Tue Dec 03 2002 Florian La Roche <Florian.LaRoche@redhat.de>
1572- /sbin/new-kernel-pkg: fix a test to have correct ""
1573
1574* Fri Nov 22 2002 Jeremy Katz <katzj@redhat.com>
1575- mkinitrd: more gzipped module fixes
1576
1577* Thu Nov 21 2002 Jeremy Katz <katzj@redhat.com>
1578- mkinitrd: add support for finding gzipped modules
1579- mkinitrd: don't be noisy if we don't have lvm-mod loaded
1580
1581* Wed Nov  6 2002 Jeremy Katz <katzj@redhat.com>
1582- grubby: don't bail when looking for root in appends of lilo-style configs
1583- include grubby on x86_64
1584
1585* Thu Sep 26 2002 Nalin Dahyabhai <nalin@redhat.com>
1586- fix some syntax errors
1587- use grep's -q flag to save a redirect in places where we're not redirecting
1588  stderr
1589
1590* Thu Sep  5 2002 Jeremy Katz <katzj@redhat.com>
1591- grubby could segfault by going into its lilo checking if it couldn't find
1592  a default to copy (default had no root= and --bad-image-okay wasn't
1593  being used)
1594
1595* Mon Sep  2 2002 Jeremy Katz <katzj@redhat.com>
1596- nash: create directories if needed in mkdevices command (#73090)
1597- grubby: handle lilo case of non-linux default (#72202)
1598
1599* Sat Aug 31 2002 Jeremy Katz <katzj@redhat.com>
1600- grubby: fix for case like 'append = " hdc=ide-scsi "' (#68802)
1601
1602* Fri Aug 30 2002 Bill Nottingham <notting@redhat.com>
1603- fix firewire stuff (#72916)
1604
1605* Fri Aug 23 2002 Bill Nottingham <notting@redhat.com>
1606- fix mpt fusion stuff
1607
1608* Tue Aug 13 2002 Jeremy Katz <katzj@redhat.com>
1609- /boot/efi/redhat -> /boot/efi/EFI/redhat on ia64
1610
1611* Sun Aug 11 2002 Jeremy Katz <katzj@redhat.com>
1612- fix grubby to work correctly on ia64
1613
1614* Thu Aug 08 2002 Michael Fulbright <msf@redhat.com>
1615- added sleep command to nash and fixed creating initrd with / or /boot on usb
1616
1617* Tue Jul 30 2002 Jeremy Katz <katzj@redhat.com>
1618- grubby: adding kernels to lilo.conf when not using root=LABEL will work
1619  now too
1620
1621* Fri Jul 26 2002 Erik Troan <ewt@redhat.com>
1622- didn't close /proc/partitions in mkdevices
1623
1624* Thu Jul 25 2002 Jeremy Katz <katzj@redhat.com>
1625- grubby: fix adding kernels to lilo when using root=LABEL
1626
1627* Wed Jul 24 2002 Erik Troan <ewt@redhat.com>
1628- added and used mkdevices command (68959)
1629
1630* Wed Jul 17 2002 Erik Troan <ewt@redhat.com>
1631- do proper probing to check root=LABEL
1632- --bootloader-probe didn't support /etc/sysconfig/grub
1633
1634* Fri Jul 12 2002 Erik Troan <ewt@redhat.com>
1635- don't sanity check root=LABEL right now; probing might make sense?
1636
1637* Wed Jul 10 2002 Erik Troan <ewt@redhat.com>
1638- --ifneeded is obsolete; we always need initrds
1639- grubby lets you specify multiple indexes for --info
1640- grubby lets you select kernels by title
1641- added showlabels to nash
1642- new-kernel-pkg sets the root device from /etc/fstab rather then inheriting it
1643- new-kernel-pkg removes all entries w/ a duplicate label (67459)
1644
1645* Mon Jul 08 2002 Erik Troan <ewt@redhat.com>
1646- usb root device code could fail, causing no initrd to be made
1647
1648* Thu Jun 27 2002 Erik Troan <ewt@redhat.com>
1649- grubby didn't add new kernels properly
1650
1651* Thu Jun 27 2002 Erik Troan <ewt@redhat.com>
1652- support root on usb devices
1653
1654* Wed Jun 26 2002 Erik Troan <ewt@redhat.com>
1655- other= in lilo.conf wasn't being parsed out properly
1656
1657* Mon Jun 24 2002 Erik Troan <ewt@redhat.com>
1658- changed --add-kernel implementation so that --args gets handled properly
1659
1660* Sun Jun 23 2002 Erik Troan <ewt@redhat.com>
1661- added loadinitrd (used by mkbootdisk) on ia32 and sparc
1662- modules "off" and "null" should be ignored (67086)
1663- mkrootdev looks for root=LABEL=/ in /proc/cmdline, so root by label
1664  works again (fully determined by root= kernel parameter)
1665- added --update-kernel and --remove-args arguments to grubby
1666- kernel specification of ALL supported by grubby
1667- DEFAULT accepted much more consistently
1668- grubby --info displays info on all kernels specified, not just the first
1669- ext3 need mbcache now (67354)
1670- grubby allows config file entry numbers to be used as kernel paths
1671- support /etc/sysconfig/grub.conf
1672- display lba info from lilo.conf file in --info
1673
1674* Thu Jun 13 2002 Jeremy Katz <katzj@redhat.com>
1675- don't run lilo twice on kernel removal in new-kernel-pkg
1676- don't run grubby to add/remove kernels from new-kernel-pkg if
1677  bootloader config doesn't
1678
1679* Tue Jun 11 2002 Erik Troan <ewt@redhat.com>
1680- added --bootloader-probe to grubby
1681- wrote a man page for grubby
1682- include grubby on ia64
1683- updated new-kernel-pkg to work with lilo/elilo
1684- added --info=DEFAULT option
1685
1686* Mon Jun 10 2002 Jeremy Katz <katzj@redhat.com>
1687- start raid before lvm so that you can have root on lvm on raid (#66175)
1688
1689* Tue Jun 04 2002 Erik Troan <ewt@redhat.com>
1690- failed to initialize a variable in grubby
1691
1692* Fri May 31 2002 Erik Troan <ewt@redhat.com>
1693- added --grub option so grub tests could run on ia64
1694- added some basic tests of lilo default directive handling
1695
1696* Wed May 29 2002 Jeremy Katz <katzj@redhat.com>
1697- require lvm
1698
1699* Tue May 28 2002 Bill Nottingham <notting@redhat.com>
1700- fix umounting of /initrd when pivoting
1701
1702* Tue May 28 2002 Erik Troan <ewt@redhat.com>
1703- marked /sbin/installkernel as %config (53006)
1704- run make test during build
1705
1706* Wed May 22 2002 Erik Troan <ewt@redhat.com>
1707- added --nopivot (53679)
1708- honor INSTALL_PATH in installkernel (32833)
1709- installkernel versions old kernels as well (52756)
1710- lilo support added to grubby
1711
1712* Tue May 21 2002 Erik Troan <ewt@redhat.com>
1713- cleaned up usage message
1714- added --omit-lvm-modules to man page
1715- added --builtin option (65250)
1716- skip comments in fstab (65249)
1717- added findlodev to nash, use that to pick block device (63421)
1718- support -o option in nash's mount (59185)
1719- look for xfs_dmapi (60066)
1720- added > support for executed commands (61180)
1721- grubby copies permissions from old config file (59227)
1722- use options from fstab for root filesystem (56071)
1723- try and be better about returning nonzero on error (60203)
1724- make modprobe symlink properly to avoid kernel message (62145)
1725- support linear raid (12775)
1726- support fallback option in grub config (54794)
1727- comments in template entries not handled quite right (65198)
1728
1729* Sat Apr 20 2002 Erik Troan <ewt@redhat.com>
1730- grubby does a better job of not adding superfluous default= lines
1731
1732* Wed Apr 17 2002 Erik Troan <ewt@redhat.com>
1733- preload works again
1734
1735* Wed Apr 10 2002 Jeremy Katz <katzj@redhat.com>
1736- revert to not mounting by label
1737
1738* Fri Apr  5 2002 Jeremy Katz <katzj@redhat.com>
1739- include pbrown's changes to load parport_pc when needing ppa.o (#35360)
1740
1741* Thu Apr  4 2002 Jeremy Katz <katzj@redhat.com>
1742- fix redirection bug (#62623)
1743- create proper link of /sbin->/bin in initrd (#62199)
1744
1745* Thu Mar 28 2002 Jeremy Katz <katzj@redhat.com>
1746- prereq dev package so that we always have the dev package before we get run
1747
1748* Fri Mar 22 2002 Jeremy Katz <katzj@redhat.com>
1749- duh, that won't work.  fix it
1750- don't require lvm tools right now
1751
1752* Thu Mar 21 2002 Jeremy Katz <katzj@redhat.com>
1753- fix nash to create directories for devices like cciss and ida
1754
1755* Tue Feb  5 2002 Bill Nottingham <notting@redhat.com>
1756- run mkinitrd with -f in new-kernel-pkg
1757- don't run lilo in /sbin/installkernel
1758
1759* Fri Feb  1 2002 Jeremy Katz <katzj@redhat.com>
1760- require lvm
1761
1762* Thu Jan 31 2002 Jeremy Katz <katzj@redhat.com>
1763- clean up warnings for when /proc isn't mounted
1764
1765* Tue Jan 29 2002 Jeremy Katz <katzj@redhat.com>
1766- fix probing for LVM usage to require a volume group to exist before adding
1767  the module
1768- --omit-lvm-modules will omit LVM modules
1769- add support for root device being LVM
1770
1771* Wed Jan 16 2002 Erik Troan <ewt@redhat.com>
1772- look for a non /tmpfs directory
1773- added support for xfs
1774- use with raid md.o if it exists
1775- fixed bug in echo
1776- use find form nash rather then /usr (mkinitrd shouldn't need /usr
1777  mounted)
1778
1779* Fri Jan 11 2002 Erik Troan <ewt@redhat.com>
1780- added support for mounting root filesystem by label
1781- switched to dietlibc from minilibc
1782- fix so --preload= works [33675,57560,44377]
1783- added info on --image-version and --nocompress to man page [57560]
1784- set fileystem check interval to 0 in case the system clock
1785  is borked [51454]
1786- give a proper error when run by a user other then root [27218,53159]
1787- grubby statically linked against popt [55305]
1788- cleaned up verbose output a bit [21791]
1789
1790* Tue Dec 18 2001 Trond Eivind Glomsrød <teg@redhat.com>
1791- Add LVM module when LVM is used
1792
1793* Wed Sep  5 2001 Jeremy Katz <katzj@redhat.com>
1794- grubby shouldn't blow away default=saved lines (#52981)
1795
1796* Fri Aug 31 2001 Jeremy Katz <katzj@redhat.com>
1797- fix new-kernel-pkg --mkinitrd for ia64
1798
1799* Thu Aug 30 2001 Erik Troan <ewt@redhat.com>
1800- fixed bug handling invalid default (MF #52889)
1801- in some cases we would set the default to point at a removed image
1802
1803* Wed Aug 29 2001 Erik Troan <ewt@redhat.com>
1804- minor grubby fixes
1805
1806* Tue Aug 28 2001 Jeremy Katz <katzj@redhat.com>
1807- let new-kernel-pkg be able to do more (initrds, modules.*)
1808- include grubby only on x86
1809
1810* Mon Aug 27 2001 Jeremy Katz <katzj@redhat.com>
1811- more grubby fixups for having a /boot
1812- added new-kernel-pkg
1813
1814* Sun Aug 26 2001 Erik Troan <ewt@redhat.com>
1815- added grubby
1816- added installkernel
1817
1818* Fri Aug  3 2001 Matt Wilson <msw@redhat.com>
1819- make consoles with the correct minor numbers
1820- applied patch from hjl to fix fstab parsing (#50819)
1821
1822* Fri Jul 20 2001 Jeremy Katz <katzj@redhat.com>
1823- skip errors finding jbd as a module if we're skipping them trying to find
1824  ext3 so that you can build a kernel with ext3 built-in and still use an
1825  initrd
1826
1827* Wed Jul 11 2001 Bill Nottingham <notting@redhat.com>
1828- don't print errors if /etc/raidtab doesn't exist
1829- or /etc/{modules.conf,conf.modules}, for that matter
1830
1831* Fri Jul  6 2001 Matt Wilson <msw@redhat.com>
1832- don't dig through /etc/fstab to find out if we have a filesystem on
1833  a RAID device, it's usually mounted by label so /dev/mdN isn't there
1834  at all (#46525)
1835
1836* Tue Jun 26 2001 Bill Nottingham <notting@redhat.com>
1837- require filesystem >= 2.1.0, otherwise we don't boot
1838
1839* Thu Jun 21 2001 Erik Troan <ewt@redhat.com>
1840- added a bunch of commands to nash
1841- use pivot_root
1842- support ext3
1843
1844* Fri Jun 08 2001 Florian La Roche <Florian.LaRoche@redhat.de>
1845- delete the exclusivearch line completely
1846
1847* Fri Mar 23 2001 Matt Wilson <msw@redhat.com>
1848- reset the state of findmodule after getting the modules we need
1849
1850* Wed Feb 28 2001 Matt Wilson <msw@redhat.com>
1851- changed the Requires on mktemp from >= 1.5 to >= 1.5-5 (which included
1852  -d support) (#30127)
1853
1854* Fri Feb 23 2001 Erik Troan <ewt@redhat.com>
1855- let nash be invoked as modprobe to avoid a modprobe failure to exec
1856- nash will try to run arbitrary commands now (removing insmod as a special
1857  case)
1858
1859* Mon Feb 12 2001 Matt Wilson <msw@redhat.com>
1860- add findutils to Requires line (#27269)
1861
1862* Thu Feb  8 2001 Matt Wilson <msw@redhat.com>
1863- added checks to load the modules i2o_block needs
1864
1865* Wed Feb  7 2001 Bill Nottingham <notting@redhat.com>
1866- fix utterly broken build
1867
1868* Wed Jan 31 2001 Helge Deller <hdeller@redhat.com>
1869- added mandir to nash Makefile (RH 6.x compatibility)
1870
1871* Tue Jan 30 2001 Erik Troan <ewt@redhat.com>
1872- added dependency on mktemp
1873
1874* Thu Jan 25 2001 Erik Troan <ewt@redhat.com>
1875- we need to insert xor.o before raid5.o
1876
1877* Wed Jan 24 2001 Matt Wilson <msw@redhat.com>
1878- code in RAID_AUTORUN ioctl fallback
1879- fixed raidstart check flag from -z to -n
1880
1881* Tue Jan 23 2001 Erik Troan <ewt@redhat.com>
1882- switched to using nash from sash
1883
1884* Tue Jan 23 2001 Matt Wilson <msw@redhat.com>
1885- added patch from twaugh to avoid blindly adding scsi_mod
1886  and sd_mod to initrd if they are not needed (#24114)
1887
1888* Thu Jan 11 2001 Bernhard Rosenkraenzer <bero@redhat.com>
1889- Enlarge initrds, needed for systems with both IDE and SCSI
1890  (Bug #23846)
1891- Version 2.[6789] probably shouldn't identify itself as 2.6
1892  with --version. ;)
1893- bzip2 source
1894
1895* Wed Dec 20 2000 Erik Troan <ewt@redhat.com>
1896- let the kernel autoload ide-cd
1897
1898* Fri Dec 08 2000 Erik Troan <ewt@redhat.com>
1899- added modular ide support
1900
1901* Wed Aug 30 2000 Nalin Dahyabhai <nalin@redhat.com>
1902- use mktemp to create temporary files and directories
1903
1904* Sat Aug 05 2000 Erik Troan <ewt@redhat.com>
1905- changes from Keith Owens for 2.4
1906
1907* Tue Jul  4 2000 Matt Wilson <msw@redhat.com>
1908- build on alpha
1909
1910* Mon Jun 26 2000 Bill Nottingham <notting@redhat.com>
1911- ignore 'unknown' aliases (they shouldn't be there anyways)
1912
1913* Thu Jun  1 2000 Bill Nottingham <notting@redhat.com>
1914- build on ia64
1915- bump up initrd size on ia64
1916- modules.confiscation, /usr/man -> /usr/share/man
1917
1918* Tue May  2 2000 Nalin Dahyabhai <nalin@redhat.com>
1919- make RPM pick up man page, regardless of compression
1920
1921* Tue Feb 29 2000 Matt Wilson <msw@redhat.com>
1922- add requirement for /sbin/losetup
1923
1924* Mon Feb  7 2000 Matt Wilson <msw@redhat.com>
1925- gzip manpage
1926
1927* Thu Feb  3 2000 Matt Wilson <msw@redhat.com>
1928- gzip manpage
1929
1930* Mon Jan 10 2000 Erik Troan <ewt@redhat.com>
1931- use sash, not ash
1932
1933* Mon Jan  3 2000 Matt Wilson <msw@redhat.com>
1934- use ash.static for /bin/sh, not sash
1935
1936* Sat Jan 1 2000 Erik Troan <ewt@redhat.com>
1937- configure loopback devices
1938
1939* Tue Sep 28 1999 Bill Nottingham <notting@redhat.com>
1940- sparc fixup from jakub
1941
1942* Wed Sep 22 1999 Michael K. Johnson <johnsonm@redhat.com>
1943- fix cleanup (blush!)
1944
1945* Tue Sep 21 1999 Michael K. Johnson <johnsonm@redhat.com>
1946- now works when /usr is not mounted (do not rely on /usr/bin/install)
1947- slight cleanups, better usage message
1948
1949* Thu Jul 29 1999 Michael K. Johnson <johnsonm@redhat.com>
1950- Now automatically includes necessary raid modules
1951- --omit-raid-modules now omits raid modules
1952- tiny doc updates
1953
1954* Thu Jul 29 1999 Bill Nottingham <notting@redhat.com>
1955- updates from bugzila (#4243, #4244)
1956
1957* Sat Mar 27 1999 Matt Wilson <msw@redhat.com>
1958- --omit-scsi-modules now omits all scsi modules
1959- updated documentation
1960- mkinitrd now grabs scsi_hostadapter modules from anywhere -
1961  some RAID controller modules live in block/
1962
1963* Thu Feb 25 1999 Matt Wilson <msw@redhat.com>
1964- updated description
1965
1966* Mon Jan 11 1999 Matt Wilson <msw@redhat.com>
1967- Ignore the absence of scsi modules, include them if they are there, but
1968  don't complain if they are not.
1969- changed --no-scsi-modules to --omit-scsi-modules (as it should have been)
1970
1971* Thu Nov  5 1998 Jeff Johnson <jbj@redhat.com>
1972- import from ultrapenguin 1.1.
1973
1974* Tue Oct 20 1998 Jakub Jelinek <jj@ultra.linux.cz>
1975- fix for combined sparc/sparc64 insmod, also pluto module is really
1976  fc4:soc:pluto and we don't look at deps, so special case it.
1977
1978* Sat Aug 29 1998 Erik Troan <ewt@redhat.com>
1979- replaced --needs-scsi-mods (which is now the default) with
1980  --omit-scsi-mods
1981
1982* Fri Aug  7 1998 Jeff Johnson <jbj@redhat.com>
1983- correct obscure regex/shell interaction (hardwires tabs on line 232)
1984
1985* Mon Jan 12 1998 Erik Troan <ewt@redhat.com>
1986- added 'make archive' rule to Makefile
1987- rewrote install procedure for more robust version handling
1988- be smarter about grabbing options from /etc/conf.modules
1989
1990* Mon Oct 20 1997 Erik Troan <ewt@redhat.com>
1991- made it use /bin/ash.static
1992
1993* Wed Apr 16 1997 Erik Troan <ewt@redhat.com>
1994- Only use '-s' to install binaries if /usr/bin/strip is present.
1995- Use an image size of 2500 if binaries can't be stripped (1500 otherwise)
1996- Don't use "mount -o loop" anymore -- losetup the proper devices manually
1997- Requires losetup, e2fsprogs
1998
1999* Wed Mar 12 1997 Michael K. Johnson <johnsonm@redhat.com>
2000- Fixed a bug in parsing options.
2001- Changed to use a build tree, then copy the finished tree into the
2002  image after it is built.
2003- Added patches derived from ones written by Christian Hechelmann which
2004  add an option to put the kernel version number at the end of the module
2005  name and use install -s to strip binaries on the fly.
Note: See TracBrowser for help on using the repository browser.