source: projects/specs/branches/6/m/mkinitrd/mkinitrd-vl.spec @ 11229

Revision 11229, 77.7 KB checked in by iwamoto, 6 years ago (diff)

mkinitrd: update R:

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