mkinitrd-vl.spec 76 KB

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