mkinitrd-vl.spec 76 KB

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