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

Revision 6519, 76.9 KB checked in by daisuke, 12 years ago (diff)

update kmod patch (install module.{order,builtin} if exist)

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