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

Revision 987, 75.4 KB checked in by daisuke, 14 years ago (diff)

mkinitrd: fix resolving library dependencies

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