util-linux-vl.spec 78 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493
  1. ### Header
  2. Summary: A collection of basic system utilities
  3. Summary(ja): 基本システムユーティリティー集
  4. Name: util-linux
  5. Version: 2.34
  6. Release: 1%{?_dist_release}
  7. License: GPLv2 and GPLv2+ and LGPLv2+ and BSD with advertising and Public Domain
  8. Group: System Environment/Base
  9. URL: http://en.wikipedia.org/wiki/Util-linux
  10. %define _unpackaged_files_terminate_build 1
  11. ### Features
  12. %define with_selinux 0
  13. %define with_audit 1
  14. %define mtab_symlink 1
  15. ### Macros
  16. %bcond_with bashcomp
  17. %define floppyver 0.18
  18. %define no_hwclock_archs s390 s390x
  19. %define no_cfsfdisk_archs sparc sparcv9 sparc64
  20. %define build_compat32 %{?_with_compat32:1}%{!?_with_compat32:0}
  21. %define _unpackaged_files_terminate_build 1
  22. %define _localstatedir /var/run
  23. %define compldir %{_datadir}/bash-completion/completions/
  24. ### Paths
  25. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  26. ### Dependences
  27. %if %{with_audit}
  28. BuildRequires: audit-libs-devel >= 1.0.6
  29. %endif
  30. BuildRequires: gettext
  31. %if %{with_selinux}
  32. BuildRequires: libselinux-devel
  33. %endif
  34. BuildRequires: bison
  35. BuildRequires: ncurses-devel
  36. BuildRequires: pam-devel
  37. BuildRequires: texinfo
  38. BuildRequires: zlib-devel
  39. BuildRequires: popt-devel
  40. BuildRequires: libutempter-devel
  41. BuildRequires: eudev-libudev-devel
  42. BuildRequires: libcap-ng-devel
  43. BuildRequires: libuser-devel
  44. # su/runuser patches need this
  45. BuildRequires: automake, autoconf, libtool
  46. ### Sources
  47. Source0: https://mirrors.edge.kernel.org/pub/linux/utils/util-linux/v%{version}/%{name}-%{version}.tar.xz
  48. Source1: util-linux-login.pamd
  49. Source2: util-linux-remote.pamd
  50. Source3: util-linux-chsh-chfn.pamd
  51. Source4: util-linux-60-raw.rules
  52. Source12: util-linux-su.pamd
  53. Source13: util-linux-su-l.pamd
  54. Source14: util-linux-runuser.pamd
  55. Source15: util-linux-runuser-l.pamd
  56. Source5: util-linux-ng-login-noselinux.pamd
  57. Source6: util-linux-ng-remote-noselinux.pamd
  58. Source10: uuidd.init
  59. #Source11: http://download.sourceforge.net/floppyutil/floppy-%{floppyver}.tar.bz2
  60. ### Obsoletes & Conflicts & Provides
  61. %ifarch alpha
  62. Conflicts: initscripts <= 4.58
  63. %endif
  64. # su(1) and runuser(1) merged into util-linux v2.22
  65. Conflicts: coreutils < 8.20
  66. # eject has been merged into util-linux v2.22
  67. Obsoletes: eject <= 2.1.5
  68. Provides: eject = 2.1.6
  69. # last, lastb, mesg and wall in util-linux is enabled.
  70. Conflicts: SysVinit-tools < 2.88dsf-4
  71. Conflicts: kernel < 2.2.12-7
  72. # old versions of e2fsprogs contain fsck, uuidgen
  73. Conflicts: e2fsprogs < 1.41.8-5
  74. # old versions of util-linux have been splited to more sub-packages
  75. Obsoletes: mount < 2.11, losetup < 2.11
  76. Provides: mount = %{version}-%{release}, losetup = %{version}-%{release}
  77. # Robert Love's schedutils have been merged to util-linux-2.13-pre1
  78. Obsoletes: schedutils < 1.5
  79. Provides: schedutils = %{version}-%{release}
  80. # rename from util-linux-ng to util-linux
  81. Obsoletes: util-linux-ng < 2.19
  82. Provides: util-linux-ng = %{version}-%{release}
  83. # setarch merge in util-linux-ng-2.13
  84. %ifarch sparc sparcv9 sparc64
  85. Obsoletes: sparc32
  86. %endif
  87. Obsoletes: setarch < 2.1
  88. Provides: setarch = %{version}-%{release}
  89. # libblkid, blkid, findfs is moved from e2fsprogs
  90. Conflicts: e2fsprogs < 1.41.5
  91. # mountpoint is moved from SysVinit-tools
  92. Conflicts: SysVinit-tools < 2.88dsf-2
  93. Requires(preun): /sbin/install-info
  94. Requires(post): /sbin/install-info
  95. Requires(pre): coreutils
  96. Requires(post): coreutils
  97. Requires: pam >= 0.66-4, /etc/pam.d/system-auth
  98. Requires: libuuid = %{version}-%{release}
  99. Requires: libblkid = %{version}-%{release}
  100. Requires: libmount = %{version}-%{release}
  101. %if %{with_audit}
  102. Requires: audit-libs >= 1.0.6
  103. %endif
  104. Requires: elogind
  105. Requires: eudev
  106. # Vine
  107. Requires(post,preun): alternatives
  108. Provides: pager
  109. Distribution: Vine Linux
  110. Vendor: Project Vine
  111. Packager: daisuke
  112. ### Ready for upstream?
  113. ###
  114. # 151635 - makeing /var/log/lastlog
  115. Patch0: 2.28-login-lastlog-create.patch
  116. # 1751290 - regression: lsblk not showing PKNAME in f31+
  117. Patch1: lsblk-force-to-print-PKNAME-for-partition.patch
  118. # https://github.com/systemd/systemd/issues/10872
  119. Patch2: libmount-improve-mountinfo-reliability.patch
  120. %description
  121. The util-linux-ng package contains a large variety of low-level system
  122. utilities that are necessary for a Linux system to function. Among
  123. others, Util-linux contains the fdisk configuration tool and the login
  124. program.
  125. %description -l ja
  126. Util-linux パッケージは Linux システムが機能するために必要なさまざまな
  127. 低レベルのシステムユーティリティを含んでいます。fdisk 設定ツールやログ
  128. インプログラムも含んでいます。
  129. %if %{with bashcomp}
  130. %package -n bash-completion-util-linux
  131. Summary: bash-completions for util-linux
  132. Summary(ja): util-linux用のbash補完拡張
  133. Group: System Environment/Base
  134. License: GPLv2 and GPLv2+
  135. Requires: bash-completion
  136. %description -n bash-completion-util-linux
  137. This package contains bash-completions to use util-linux.
  138. %endif
  139. %package -n libfdisk
  140. Summary: Partitioning library for fdisk-like programs.
  141. Group: Development/Libraries
  142. License: LGPLv2+
  143. %description -n libfdisk
  144. This is library for fdisk-like programs, part of util-linux.
  145. %package -n libfdisk-devel
  146. Summary: Partitioning library for fdisk-like programs.
  147. Group: Development/Libraries
  148. License: LGPLv2+
  149. Requires: libfdisk = %{version}-%{release}
  150. Requires: pkgconfig
  151. %description -n libfdisk-devel
  152. This is development library and headers for fdisk-like programs,
  153. part of util-linux.
  154. %package -n libsmartcols
  155. Summary: Formatting library for ls-like programs.
  156. Group: Development/Libraries
  157. License: LGPLv2+
  158. %description -n libsmartcols
  159. This is library for ls-like terminal programs, part of util-linux.
  160. %package -n libsmartcols-devel
  161. Summary: Formatting library for ls-like programs.
  162. Group: Development/Libraries
  163. License: LGPLv2+
  164. Requires: libsmartcols = %{version}-%{release}
  165. Requires: pkgconfig
  166. %description -n libsmartcols-devel
  167. This is development library and headers for ls-like terminal programs,
  168. part of util-linux.
  169. %package -n libmount
  170. Summary: Device mounting library
  171. Summary(ja): デバイスマウントライブラリ
  172. Group: System Environment/Libraries
  173. License: LGPLv2+
  174. Requires: libblkid = %{version}-%{release}
  175. %description -n libmount
  176. This is the device mounting library, part of util-linux.
  177. %package -n libmount-devel
  178. Summary: Development files for device mounting library
  179. Summary(ja): デバイスマウントライブラリの開発用ファイル
  180. Group: Development/Libraries
  181. License: LGPLv2+
  182. Requires: libmount = %{version}-%{release}
  183. Requires: pkgconfig
  184. %description -n libmount-devel
  185. This is the device mounting development library and headers,
  186. part of util-linux.
  187. %package -n libblkid
  188. Summary: Block device ID library
  189. Summary(ja): ブロックデバイス識別ライブラリ
  190. Group: System Environment/Libraries
  191. License: LGPLv2+
  192. %description -n libblkid
  193. This is block device identification library, part of util-linux-ng.
  194. %package -n libblkid-devel
  195. Summary: Development files for block device ID library
  196. Summary(ja): ブロックデバイス識別ライブラリの開発用ファイル
  197. Group: Development/Libraries
  198. License: LGPLv2+
  199. Provides: libblkid-static = %{version}-%{release}
  200. Requires: libblkid = %{version}-%{release}
  201. Requires: pkgconfig
  202. %description -n libblkid-devel
  203. This is the block device identification development library and headers,
  204. part of util-linux-ng.
  205. %package -n libuuid
  206. Summary: Universally unique ID library
  207. Summary(ja): UUID ライブラリ
  208. Group: System Environment/Libraries
  209. License: BSD
  210. %description -n libuuid
  211. This is the universally unique ID library, part of e2fsprogs.
  212. The libuuid library generates and parses 128-bit universally unique
  213. id's (UUID's). A UUID is an identifier that is unique across both
  214. space and time, with respect to the space of all UUIDs. A UUID can
  215. be used for multiple purposes, from tagging objects with an extremely
  216. short lifetime, to reliably identifying very persistent objects
  217. across a network.
  218. See also the "uuid" package, which is a separate implementation.
  219. %package -n libuuid-devel
  220. Summary: Development files for universally unique ID library
  221. Summary(ja): UUID ライブラリの開発用ファイル
  222. Group: Development/Libraries
  223. License: BSD
  224. Provides: libuuid-static = %{version}-%{release}
  225. Requires: libuuid = %{version}-%{release}
  226. Requires: pkgconfig
  227. %description -n libuuid-devel
  228. This is the universally unique ID development library and headers,
  229. part of e2fsprogs.
  230. The libuuid library generates and parses 128-bit universally unique
  231. id's (UUID's). A UUID is an identifier that is unique across both
  232. space and time, with respect to the space of all UUIDs. A UUID can
  233. be used for multiple purposes, from tagging objects with an extremely
  234. short lifetime, to reliably identifying very persistent objects
  235. across a network.
  236. See also the "uuid-devel" package, which is a separate implementation.
  237. %package -n uuidd
  238. Summary: Helper daemon to guarantee uniqueness of time-based UUIDs
  239. Summary(ja): 時系列 UUID の唯一性を保証するためのヘルパーデーモン
  240. Group: System Environment/Daemons
  241. Requires: libuuid = %{version}-%{release}
  242. License: GPLv2
  243. Requires(pre): shadow-utils
  244. %description -n uuidd
  245. The uuidd package contains a userspace daemon (uuidd) which guarantees
  246. uniqueness of time-based UUID generation even at very high rates on
  247. SMP systems.
  248. # compat32
  249. %package -n compat32-libmount
  250. Summary: Device mounting library
  251. Summary(ja): デバイスマウントライブラリ
  252. Group: System Environment/Libraries
  253. License: LGPLv2+
  254. Requires: libmount = %{version}-%{release}
  255. %description -n compat32-libmount
  256. This is the device mounting library, part of util-linux.
  257. %package -n compat32-libmount-devel
  258. Summary: Development files for device mounting library
  259. Summary(ja): デバイスマウントライブラリの開発用ファイル
  260. Group: Development/Libraries
  261. License: LGPLv2+
  262. Requires: libmount-devel = %{version}-%{release}
  263. Requires: compat32-libmount = %{version}-%{release}
  264. Requires: compat32-pkgconfig
  265. %description -n compat32-libmount-devel
  266. This is the device mounting development library and headers,
  267. part of util-linux.
  268. %package -n compat32-libblkid
  269. Summary: Block device ID library
  270. Summary(ja): ブロックデバイス識別ライブラリ
  271. Group: System Environment/Libraries
  272. License: LGPLv2+
  273. Requires: libblkid = %{version}-%{release}
  274. %description -n compat32-libblkid
  275. This is block device identification library, part of util-linux-ng.
  276. %package -n compat32-libblkid-devel
  277. Summary: Development files for block device ID library
  278. Summary(ja): ブロックデバイス識別ライブラリの開発用ファイル
  279. Group: Development/Libraries
  280. License: LGPLv2+
  281. Requires: libblkid-devel = %{version}-%{release}
  282. Requires: compat32-libblkid = %{version}-%{release}
  283. Requires: compat32-pkgconfig
  284. Provides: compat32-libblkid-static = %{version}-%{release}
  285. %description -n compat32-libblkid-devel
  286. This is the block device identification development library and headers,
  287. part of util-linux-ng.
  288. %package -n compat32-libuuid
  289. Summary: Universally unique ID library
  290. Summary(ja): UUID ライブラリ
  291. Group: System Environment/Libraries
  292. Requires: libuuid = %{version}-%{release}
  293. License: BSD
  294. %description -n compat32-libuuid
  295. This is the universally unique ID library, part of e2fsprogs.
  296. The libuuid library generates and parses 128-bit universally unique
  297. id's (UUID's). A UUID is an identifier that is unique across both
  298. space and time, with respect to the space of all UUIDs. A UUID can
  299. be used for multiple purposes, from tagging objects with an extremely
  300. short lifetime, to reliably identifying very persistent objects
  301. across a network.
  302. %package -n compat32-libuuid-devel
  303. Summary: Development files for universally unique ID library
  304. Summary(ja): UUID ライブラリの開発用ファイル
  305. Group: Development/Libraries
  306. License: BSD
  307. Requires: libuuid-devel = %{version}-%{release}
  308. Requires: compat32-libuuid = %{version}-%{release}
  309. Requires: compat32-pkgconfig
  310. %description -n compat32-libuuid-devel
  311. This is the universally unique ID development library and headers,
  312. part of e2fsprogs.
  313. The libuuid library generates and parses 128-bit universally unique
  314. id's (UUID's). A UUID is an identifier that is unique across both
  315. space and time, with respect to the space of all UUIDs. A UUID can
  316. be used for multiple purposes, from tagging objects with an extremely
  317. short lifetime, to reliably identifying very persistent objects
  318. across a network.
  319. %prep
  320. %autosetup -p1
  321. %build
  322. unset LINGUAS || :
  323. ./autogen.sh
  324. export CFLAGS="-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 $RPM_OPT_FLAGS"
  325. export SUID_CFLAGS="-fpie"
  326. export SUID_LDFLAGS="-pie -Wl,-z,relro -Wl,-z,now"
  327. export DAEMON_CFLAGS="$SUID_CFLAGS"
  328. export DAEMON_LDFLAGS="$SUID_LDFLAGS"
  329. %configure \
  330. --bindir=/bin \
  331. --sbindir=/sbin \
  332. --libdir=/%{_lib} \
  333. --disable-silent-rules \
  334. --disable-bfs \
  335. --disable-pg \
  336. --enable-partx \
  337. --enable-login-utils \
  338. --enable-kill \
  339. --enable-write \
  340. --enable-ddate \
  341. --enable-chfn-chsh \
  342. --enable-raw \
  343. --enable-libmount-force-mountinfo \
  344. --with-udev \
  345. %if %{with_selinux}
  346. --with-selinux \
  347. %else
  348. --without-selinux \
  349. %endif
  350. %if %{with_audit}
  351. --with-audit \
  352. %else
  353. --without-audit \
  354. %endif
  355. %if %{mtab_symlink}
  356. --enable-libmount-mount \
  357. %endif
  358. --with-fsprobe=builtin \
  359. --with-utempter \
  360. --disable-makeinstall-chown
  361. # build util-linux
  362. make %{?_smp_mflags}
  363. %install
  364. rm -rf ${RPM_BUILD_ROOT}
  365. mkdir -p ${RPM_BUILD_ROOT}/{bin,sbin}
  366. mkdir -p ${RPM_BUILD_ROOT}%{_bindir}
  367. mkdir -p ${RPM_BUILD_ROOT}%{_infodir}
  368. mkdir -p ${RPM_BUILD_ROOT}%{_mandir}/man{1,6,8,5}
  369. mkdir -p ${RPM_BUILD_ROOT}%{_sbindir}
  370. mkdir -p ${RPM_BUILD_ROOT}%{_sysconfdir}/{pam.d,security/console.apps,blkid}
  371. mkdir -p ${RPM_BUILD_ROOT}/var/log
  372. touch ${RPM_BUILD_ROOT}/var/log/lastlog
  373. chmod 0644 ${RPM_BUILD_ROOT}/var/log/lastlog
  374. # install util-linux
  375. make install DESTDIR=${RPM_BUILD_ROOT}
  376. echo '.so man8/raw.8' > $RPM_BUILD_ROOT%{_mandir}/man8/rawdevices.8
  377. {
  378. # see RH bugzilla #216664
  379. mkdir -p ${RPM_BUILD_ROOT}/lib/udev/rules.d
  380. pushd ${RPM_BUILD_ROOT}/lib/udev/rules.d
  381. install -m 644 %{SOURCE4} ./60-raw.rules
  382. popd
  383. }
  384. # Our own initscript for uuidd
  385. install -D -m 755 %{SOURCE10} ${RPM_BUILD_ROOT}/etc/rc.d/init.d/uuidd
  386. # And a dirs uuidd needs that the makefiles don't create
  387. install -d ${RPM_BUILD_ROOT}/var/run/uuidd
  388. install -d ${RPM_BUILD_ROOT}/var/lib/libuuid
  389. # libtool junk
  390. rm -rf ${RPM_BUILD_ROOT}%{_libdir}/*.la
  391. # static libs
  392. rm -rf ${RPM_BUILD_ROOT}%{_libdir}/*.a
  393. # PAM settings
  394. {
  395. pushd ${RPM_BUILD_ROOT}%{_sysconfdir}/pam.d
  396. %if %{with_selinux}
  397. install -m 644 %{SOURCE1} ./login
  398. install -m 644 %{SOURCE2} ./remote
  399. %else
  400. install -m 644 %{SOURCE5} ./login
  401. install -m 644 %{SOURCE6} ./remote
  402. %endif
  403. install -m 644 %{SOURCE3} ./chsh
  404. install -m 644 %{SOURCE3} ./chfn
  405. install -m 644 %{SOURCE12} ./su
  406. install -m 644 %{SOURCE13} ./su-l
  407. install -m 644 %{SOURCE14} ./runuser
  408. install -m 644 %{SOURCE15} ./runuser-l
  409. popd
  410. }
  411. ln -sf ../../sbin/hwclock ${RPM_BUILD_ROOT}/usr/sbin/hwclock
  412. ln -sf hwclock ${RPM_BUILD_ROOT}/sbin/clock
  413. # Final cleanup
  414. %ifarch %no_hwclock_archs
  415. rm -f $RPM_BUILD_ROOT/sbin/{hwclock,clock} $RPM_BUILD_ROOT%{_mandir}/man8/hwclock.8* $RPM_BUILD_ROOT/usr/sbin/{hwclock,clock}
  416. %endif
  417. %ifarch s390 s390x
  418. rm -f $RPM_BUILD_ROOT/usr/{bin,sbin}/{fdformat,tunelp,floppy} $RPM_BUILD_ROOT%{_mandir}/man8/{fdformat,tunelp,floppy}.8*
  419. %endif
  420. # deprecated commands
  421. for I in /sbin/fsck.minix /sbin/mkfs.{bfs,minix} /sbin/sln \
  422. /usr/bin/chkdupexe %{_bindir}/line %{_bindir}/pg %{_bindir}/newgrp \
  423. /sbin/shutdown /usr/sbin/vipw /usr/sbin/vigr; do
  424. rm -f $RPM_BUILD_ROOT$I
  425. done
  426. # deprecated man pages
  427. for I in man1/chkdupexe.1 man1/line.1 man1/pg.1 man1/newgrp.1 \
  428. man8/fsck.minix.8 man8/mkfs.minix.8 man8/mkfs.bfs.8 \
  429. man8/vipw.8 man8/vigr; do
  430. rm -rf $RPM_BUILD_ROOT%{_mandir}/${I}*
  431. done
  432. # deprecated docs
  433. for I in text-utils/README.pg misc-utils/README.reset; do
  434. rm -rf $I
  435. done
  436. # we install getopt/getopt-*.{bash,tcsh} as doc files
  437. chmod 644 misc-utils/getopt-*.{bash,tcsh}
  438. rm -rf ${RPM_BUILD_ROOT}%{_datadir}/doc/util-linux/getopt
  439. ln -sf ../../bin/kill $RPM_BUILD_ROOT%{_bindir}/kill
  440. %if %{mtab_symlink}
  441. ln -s /proc/mounts %{buildroot}/etc/mtab
  442. %else
  443. touch %{buildroot}/etc/mtab
  444. %endif
  445. # /usr/sbin -> /sbin
  446. for I in addpart delpart partx; do
  447. if [ -e $RPM_BUILD_ROOT/usr/sbin/$I ]; then
  448. mv $RPM_BUILD_ROOT/usr/sbin/$I $RPM_BUILD_ROOT/sbin/$I
  449. fi
  450. done
  451. # /usr/bin -> /bin
  452. for I in taskset; do
  453. if [ -e $RPM_BUILD_ROOT/usr/bin/$I ]; then
  454. mv $RPM_BUILD_ROOT/usr/bin/$I $RPM_BUILD_ROOT/bin/$I
  455. fi
  456. done
  457. # /sbin -> /bin
  458. for I in raw; do
  459. if [ -e $RPM_BUILD_ROOT/sbin/$I ]; then
  460. mv $RPM_BUILD_ROOT/sbin/$I $RPM_BUILD_ROOT/bin/$I
  461. fi
  462. done
  463. # omit info/dir file
  464. rm -f ${RPM_BUILD_ROOT}%{_infodir}/dir
  465. # find MO files
  466. %find_lang %name
  467. # the files section supports only one -f option...
  468. mv %{name}.lang %{name}.files
  469. # create list of setarch(8) symlinks
  470. find $RPM_BUILD_ROOT%{_bindir}/ -regextype posix-egrep -type l \
  471. -regex ".*(linux32|linux64|s390|s390x|i386|ppc|ppc64|ppc32|sparc|sparc64|sparc32|sparc32bash|mips|mips64|mips32|ia64|x86_64|uname26)$" \
  472. -printf "%{_bindir}/%f\n" >> %{name}.files
  473. find $RPM_BUILD_ROOT%{_mandir}/man8 -regextype posix-egrep \
  474. -regex ".*(linux32|linux64|s390|s390x|i386|ppc|ppc64|ppc32|sparc|sparc64|sparc32|sparc32bash|mips|mips64|mips32|ia64|x86_64|uname26)\.8.*" \
  475. -printf "%{_mandir}/man8/%f*\n" >> %{name}.files
  476. # drop python files
  477. rm -rf %{buildroot}%{python_sitelib}/libmount
  478. rm -rf %{buildroot}%{python_sitearch}/libmount
  479. %if !%{with bashcomp}
  480. rm -rf %{buildroot}%{compldir}
  481. %endif
  482. %check
  483. #to run tests use "--with check"
  484. %if %{?_with_check:1}%{!?_with_check:0}
  485. make check
  486. %endif
  487. %clean
  488. [ "${RPM_BUILD_ROOT}" != "/" ] && rm -rf ${RPM_BUILD_ROOT}
  489. %post
  490. # only for minimal buildroots without /var/log
  491. [ -d /var/log ] || /bin/mkdir -p /var/log
  492. /bin/touch /var/log/lastlog
  493. /bin/chown root:root /var/log/lastlog
  494. /bin/chmod 0644 /var/log/lastlog
  495. %{_syssbindir}/update-alternatives --install %{_bindir}/pager \
  496. pager %{_sysbindir}/more 40
  497. %if %{with_selinux}
  498. # Fix the file context, do not use restorecon
  499. if [ -x /usr/sbin/selinuxenabled ] && /usr/sbin/selinuxenabled; then
  500. SECXT=$( /usr/sbin/matchpathcon -n /var/log/lastlog 2> /dev/null )
  501. if [ -n "$SECXT" ]; then
  502. # Selinux enabled, but without policy? It's true for buildroots
  503. # without selinux stuff on host machine with enabled selinux.
  504. # We don't want to use any RPM dependence on selinux policy for
  505. # matchpathcon(2). SELinux policy should be optional.
  506. /usr/bin/chcon "$SECXT" /var/log/lastlog >/dev/null 2>&1
  507. fi
  508. fi
  509. %endif
  510. %if %{mtab_symlink}
  511. rm -f /etc/mtab
  512. ln -s /proc/mounts /etc/mtab
  513. %else
  514. touch /etc/mtab
  515. /bin/chown root:root /etc/mtab
  516. /bin/chmod 0644 /etc/mtab
  517. %endif
  518. %preun
  519. if [ "$1" = 0 ]; then
  520. %{_syssbindir}/update-alternatives --remove pager %{_sysbindir}/more
  521. fi
  522. exit 0
  523. %post -n libblkid
  524. /sbin/ldconfig
  525. [ -e /etc/blkid.tab ] && mv /etc/blkid.tab /etc/blkid/blkid.tab || :
  526. [ -e /etc/blkid.tab.old ] && mv /etc/blkid.tab.old /etc/blkid/blkid.tab.old || :
  527. %postun -n libblkid -p /sbin/ldconfig
  528. %post -n libuuid -p /sbin/ldconfig
  529. %postun -n libuuid -p /sbin/ldconfig
  530. %post -n libmount -p /sbin/ldconfig
  531. %postun -n libmount -p /sbin/ldconfig
  532. %post -n compat32-libuuid -p /sbin/ldconfig
  533. %postun -n compat32-libuuid -p /sbin/ldconfig
  534. %post -n compat32-libblkid -p /sbin/ldconfig
  535. %postun -n compat32-libblkid -p /sbin/ldconfig
  536. %post -n compat32-libmount -p /sbin/ldconfig
  537. %postun -n compat32-libmount -p /sbin/ldconfig
  538. %pre -n uuidd
  539. getent group uuidd >/dev/null || groupadd -r uuidd
  540. getent passwd uuidd >/dev/null || \
  541. useradd -r -g uuidd -d /var/lib/libuuid -s /sbin/nologin \
  542. -c "UUID generator helper daemon" uuidd
  543. exit 0
  544. %post -n uuidd
  545. /sbin/chkconfig --add uuidd
  546. %preun -n uuidd
  547. if [ "$1" = 0 ]; then
  548. /sbin/service uuidd stop > /dev/null 2>&1 || :
  549. /sbin/chkconfig --del uuidd
  550. fi
  551. %files -f %{name}.files
  552. %defattr(-,root,root)
  553. %doc README NEWS AUTHORS
  554. %doc Documentation/deprecated.txt
  555. %{!?_licensedir:%global license %%doc}
  556. %license README.licensing Documentation/licenses/*
  557. %doc misc-utils/getopt-*.{bash,tcsh}
  558. %config(noreplace) %{_sysconfdir}/pam.d/chfn
  559. %config(noreplace) %{_sysconfdir}/pam.d/chsh
  560. %config(noreplace) %{_sysconfdir}/pam.d/login
  561. %config(noreplace) %{_sysconfdir}/pam.d/remote
  562. %config(noreplace) %{_sysconfdir}/pam.d/su
  563. %config(noreplace) %{_sysconfdir}/pam.d/su-l
  564. %config(noreplace) %{_sysconfdir}/pam.d/runuser
  565. %config(noreplace) %{_sysconfdir}/pam.d/runuser-l
  566. %config(noreplace) /lib/udev/rules.d
  567. %attr(4755,root,root) /bin/mount
  568. %attr(4755,root,root) /bin/umount
  569. %attr(4755,root,root) /bin/su
  570. %attr(755,root,root) /bin/login
  571. %attr(4711,root,root) %{_bindir}/chfn
  572. %attr(4711,root,root) %{_bindir}/chsh
  573. %attr(2755,root,tty) %{_bindir}/write
  574. %ghost %attr(0644,root,root) %verify(not md5 size mtime) /var/log/lastlog
  575. %ghost %verify(not md5 size mtime) %config(noreplace,missingok) /etc/mtab
  576. /bin/dmesg
  577. /bin/findmnt
  578. /bin/kill
  579. /bin/lsblk
  580. /bin/more
  581. /bin/mountpoint
  582. /bin/taskset
  583. /bin/raw
  584. /bin/wdctl
  585. /sbin/addpart
  586. /sbin/agetty
  587. /sbin/blkdiscard
  588. /sbin/blkid
  589. /sbin/blkzone
  590. /sbin/blockdev
  591. /sbin/chcpu
  592. /sbin/ctrlaltdel
  593. /sbin/delpart
  594. /sbin/fdisk
  595. /sbin/findfs
  596. /sbin/fsck
  597. /sbin/fsck.cramfs
  598. /sbin/fsfreeze
  599. /sbin/fstrim
  600. /sbin/losetup
  601. /sbin/mkfs
  602. /sbin/mkfs.cramfs
  603. /sbin/mkswap
  604. /sbin/nologin
  605. /sbin/partx
  606. /sbin/pivot_root
  607. /sbin/runuser
  608. /sbin/sulogin
  609. /sbin/swaplabel
  610. /sbin/swapoff
  611. /sbin/swapon
  612. /sbin/switch_root
  613. /sbin/wipefs
  614. /sbin/zramctl
  615. %{_bindir}/cal
  616. %{_bindir}/chrt
  617. %{_bindir}/chmem
  618. %{_bindir}/choom
  619. %{_bindir}/col
  620. %{_bindir}/colcrt
  621. %{_bindir}/colrm
  622. %{_bindir}/column
  623. #%{_bindir}/ddate
  624. %{_bindir}/eject
  625. %{_bindir}/fallocate
  626. %{_bindir}/fincore
  627. %{_bindir}/flock
  628. %{_bindir}/getopt
  629. %{_bindir}/hardlink
  630. %{_bindir}/hexdump
  631. %{_bindir}/ionice
  632. %{_bindir}/ipcmk
  633. %{_bindir}/ipcrm
  634. %{_bindir}/ipcs
  635. %{_bindir}/isosize
  636. %{_bindir}/kill
  637. %{_bindir}/last
  638. %{_bindir}/lastb
  639. %{_bindir}/logger
  640. %{_bindir}/look
  641. %{_bindir}/lscpu
  642. %{_bindir}/lsipc
  643. %{_bindir}/lslocks
  644. %{_bindir}/lslogins
  645. %{_bindir}/lsmem
  646. %{_bindir}/lsns
  647. %{_bindir}/mesg
  648. %{_bindir}/mcookie
  649. %{_bindir}/namei
  650. %{_bindir}/nsenter
  651. %{_bindir}/prlimit
  652. %{_bindir}/rename
  653. %{_bindir}/renice
  654. %{_bindir}/rev
  655. %{_bindir}/script
  656. %{_bindir}/scriptreplay
  657. %{_bindir}/setarch
  658. %{_bindir}/setpriv
  659. %{_bindir}/setsid
  660. %{_bindir}/setterm
  661. #%{_bindir}/tailf
  662. %{_bindir}/ul
  663. %{_bindir}/unshare
  664. %{_bindir}/utmpdump
  665. %{_bindir}/uuidgen
  666. %{_bindir}/uuidparse
  667. %{_bindir}/whereis
  668. %attr(-,root,tty) %{_bindir}/wall
  669. %{_sbindir}/ldattach
  670. %{_sbindir}/readprofile
  671. %{_sbindir}/resizepart
  672. %{_sbindir}/rfkill
  673. %{_sbindir}/rtcwake
  674. %{_mandir}/man1/cal.1*
  675. %{_mandir}/man1/chfn.1*
  676. %{_mandir}/man1/choom.1*
  677. %{_mandir}/man1/chrt.1*
  678. %{_mandir}/man1/chsh.1*
  679. %{_mandir}/man1/col.1*
  680. %{_mandir}/man1/colcrt.1*
  681. %{_mandir}/man1/colrm.1*
  682. %{_mandir}/man1/column.1*
  683. #%{_mandir}/man1/ddate.1*
  684. %{_mandir}/man1/dmesg.1*
  685. %{_mandir}/man1/eject.1*
  686. %{_mandir}/man1/fincore.1*
  687. %{_mandir}/man1/fallocate.1*
  688. %{_mandir}/man1/flock.1*
  689. %{_mandir}/man1/getopt.1*
  690. %{_mandir}/man1/hardlink.1*
  691. %{_mandir}/man1/hexdump.1*
  692. %{_mandir}/man1/ionice.1*
  693. %{_mandir}/man1/ipcmk.1*
  694. %{_mandir}/man1/ipcrm.1*
  695. %{_mandir}/man1/ipcs.1*
  696. %{_mandir}/man1/kill.1*
  697. %{_mandir}/man1/last.1*
  698. %{_mandir}/man1/lastb.1*
  699. %{_mandir}/man1/logger.1*
  700. %{_mandir}/man1/login.1*
  701. %{_mandir}/man1/look.1*
  702. %{_mandir}/man1/lscpu.1*
  703. %{_mandir}/man1/lsipc.1*
  704. %{_mandir}/man1/lslogins.1*
  705. %{_mandir}/man1/lsmem.1*
  706. %{_mandir}/man1/mesg.1*
  707. %{_mandir}/man1/mcookie.1*
  708. %{_mandir}/man1/more.1*
  709. %{_mandir}/man1/namei.1*
  710. %{_mandir}/man1/nsenter.1*
  711. %{_mandir}/man1/mountpoint.1*
  712. %{_mandir}/man1/prlimit.1*
  713. %{_mandir}/man1/rename.1*
  714. %{_mandir}/man1/renice.1*
  715. %{_mandir}/man1/rev.1*
  716. %{_mandir}/man1/runuser.1*
  717. %{_mandir}/man1/script.1*
  718. %{_mandir}/man1/scriptreplay.1*
  719. %{_mandir}/man1/setsid.1*
  720. %{_mandir}/man1/setpriv.1*
  721. %{_mandir}/man1/setterm.1*
  722. %{_mandir}/man1/su.1*
  723. #%{_mandir}/man1/tailf.1*
  724. %{_mandir}/man1/taskset.1*
  725. %{_mandir}/man1/ul.1*
  726. %{_mandir}/man1/unshare.1*
  727. %{_mandir}/man1/utmpdump.1*
  728. %{_mandir}/man1/uuidgen.1*
  729. %{_mandir}/man1/uuidparse.1*
  730. %{_mandir}/man1/wall.1*
  731. %{_mandir}/man1/whereis.1*
  732. %{_mandir}/man1/write.1*
  733. #%{_mandir}/ru/man1/ddate.1.gz
  734. %{_mandir}/man5/adjtime_config.5*
  735. %{_mandir}/man5/fstab.5*
  736. %{_mandir}/man5/terminal-colors.d.5*
  737. %{_mandir}/man8/addpart.8*
  738. %{_mandir}/man8/agetty.8*
  739. %{_mandir}/man8/blkdiscard.8*
  740. %{_mandir}/man8/blkid.8*
  741. %{_mandir}/man8/blkzone.8*
  742. %{_mandir}/man8/blockdev.8*
  743. %{_mandir}/man8/ctrlaltdel.8*
  744. %{_mandir}/man8/chcpu.8*
  745. %{_mandir}/man8/chmem.8*
  746. %{_mandir}/man8/delpart.8*
  747. %{_mandir}/man8/fdisk.8*
  748. %{_mandir}/man8/findfs.8*
  749. %{_mandir}/man8/findmnt.8*
  750. %{_mandir}/man8/fsck.8*
  751. %{_mandir}/man8/fsck.cramfs.8*
  752. %{_mandir}/man8/fsfreeze.8*
  753. %{_mandir}/man8/fstrim.8*
  754. %{_mandir}/man8/isosize.8*
  755. %{_mandir}/man8/ldattach.8*
  756. %{_mandir}/man8/losetup.8*
  757. %{_mandir}/man8/lsblk.8*
  758. %{_mandir}/man8/lslocks.8*
  759. %{_mandir}/man8/lsns.8*
  760. %{_mandir}/man8/mkfs.8*
  761. %{_mandir}/man8/mkfs.cramfs.8*
  762. %{_mandir}/man8/mkswap.8*
  763. %{_mandir}/man8/mount.8*
  764. %{_mandir}/man8/nologin.8*
  765. %{_mandir}/man8/partx.8*
  766. %{_mandir}/man8/pivot_root.8*
  767. %{_mandir}/man8/readprofile.8*
  768. %{_mandir}/man8/resizepart.8*
  769. %{_mandir}/man8/rfkill.8*
  770. %{_mandir}/man8/rtcwake.8*
  771. %{_mandir}/man8/setarch.8*
  772. %{_mandir}/man8/sulogin.8*
  773. %{_mandir}/man8/swaplabel.8*
  774. %{_mandir}/man8/swapoff.8*
  775. %{_mandir}/man8/swapon.8*
  776. %{_mandir}/man8/switch_root.8*
  777. %{_mandir}/man8/umount.8*
  778. %{_mandir}/man8/wdctl.8*
  779. %{_mandir}/man8/wipefs.8*
  780. %{_mandir}/man8/raw.8*
  781. %{_mandir}/man8/rawdevices.8*
  782. %{_mandir}/man8/zramctl.8*
  783. %ifnarch s390 s390x
  784. /sbin/clock
  785. /sbin/hwclock
  786. %{_sbindir}/fdformat
  787. %{_sbindir}/hwclock
  788. %{_mandir}/man8/fdformat.8*
  789. %{_mandir}/man8/hwclock.8*
  790. %endif
  791. %ifnarch sparc sparcv9 sparc64
  792. /sbin/cfdisk
  793. /sbin/sfdisk
  794. %{_mandir}/man8/cfdisk.8*
  795. %{_mandir}/man8/sfdisk.8*
  796. %endif
  797. %ifarch sparc sparc64 sparcv9
  798. %{_bindir}/sunhostid
  799. %endif
  800. %if %{with bashcomp}
  801. %files -n bash-completion-util-linux
  802. %defattr(-,root,root)
  803. %{compldir}/*
  804. %endif
  805. %files -n uuidd
  806. %defattr(-,root,root)
  807. /etc/rc.d/init.d/uuidd
  808. %{_mandir}/man8/uuidd.8*
  809. %attr(-, uuidd, uuidd) %{_sbindir}/uuidd
  810. %dir %attr(2775, uuidd, uuidd) /var/lib/libuuid
  811. %dir %attr(2775, uuidd, uuidd) /var/run/uuidd
  812. %files -n libfdisk
  813. %defattr(-,root,root)
  814. %{!?_licensedir:%global license %%doc}
  815. %license Documentation/licenses/COPYING.LGPL-2.1* libfdisk/COPYING*
  816. /%{_lib}/libfdisk.so.*
  817. %files -n libfdisk-devel
  818. %defattr(-,root,root)
  819. %{_libdir}/libfdisk.so
  820. %{_includedir}/libfdisk
  821. %{_libdir}/pkgconfig/fdisk.pc
  822. %files -n libsmartcols
  823. %defattr(-,root,root)
  824. %{!?_licensedir:%global license %%doc}
  825. %license Documentation/licenses/COPYING.LGPL-2.1* libsmartcols/COPYING*
  826. /%{_lib}/libsmartcols.so.*
  827. %files -n libsmartcols-devel
  828. %defattr(-,root,root)
  829. %{_libdir}/libsmartcols.so
  830. %{_includedir}/libsmartcols
  831. %{_libdir}/pkgconfig/smartcols.pc
  832. %files -n libmount
  833. %defattr(-,root,root)
  834. %doc libmount/COPYING
  835. /%{_lib}/libmount.so.*
  836. %files -n libmount-devel
  837. %defattr(-,root,root)
  838. %doc libmount/COPYING
  839. #%{_libdir}/libmount.a
  840. %{_libdir}/libmount.so
  841. %{_includedir}/libmount
  842. %{_libdir}/pkgconfig/mount.pc
  843. %files -n libblkid
  844. %defattr(-,root,root)
  845. %dir /etc/blkid
  846. /%{_lib}/libblkid.so.*
  847. %files -n libblkid-devel
  848. %defattr(-,root,root)
  849. #%{_libdir}/libblkid.a
  850. %{_libdir}/libblkid.so
  851. %{_includedir}/blkid
  852. %{_mandir}/man3/libblkid.3*
  853. %{_libdir}/pkgconfig/blkid.pc
  854. %files -n libuuid
  855. %defattr(-,root,root)
  856. /%{_lib}/libuuid.so.*
  857. %files -n libuuid-devel
  858. %defattr(-,root,root)
  859. #%{_libdir}/libuuid.a
  860. %{_libdir}/libuuid.so
  861. %{_includedir}/uuid
  862. %{_mandir}/man3/uuid.3*
  863. %{_mandir}/man3/uuid_clear.3*
  864. %{_mandir}/man3/uuid_compare.3*
  865. %{_mandir}/man3/uuid_copy.3*
  866. %{_mandir}/man3/uuid_generate.3*
  867. %{_mandir}/man3/uuid_generate_random.3*
  868. %{_mandir}/man3/uuid_generate_time.3*
  869. %{_mandir}/man3/uuid_generate_time_safe.3*
  870. %{_mandir}/man3/uuid_is_null.3*
  871. %{_mandir}/man3/uuid_parse.3*
  872. %{_mandir}/man3/uuid_time.3*
  873. %{_mandir}/man3/uuid_unparse.3*
  874. %{_libdir}/pkgconfig/uuid.pc
  875. # compat32
  876. %if %{build_compat32}
  877. %files -n compat32-libuuid
  878. %defattr(-,root,root)
  879. /%{_lib}/libuuid.so.*
  880. %files -n compat32-libuuid-devel
  881. %defattr(-,root,root)
  882. #%{_libdir}/libuuid.a
  883. %{_libdir}/libuuid.so
  884. %{_libdir}/pkgconfig/uuid.pc
  885. %files -n compat32-libblkid
  886. %defattr(-,root,root)
  887. /%{_lib}/libblkid.so.*
  888. %files -n compat32-libblkid-devel
  889. %defattr(-,root,root)
  890. #%{_libdir}/libblkid.a
  891. %{_libdir}/libblkid.so
  892. %{_libdir}/pkgconfig/blkid.pc
  893. %files -n compat32-libmount
  894. %defattr(-,root,root)
  895. /%{_lib}/libmount.so.*
  896. %files -n compat32-libmount-devel
  897. %defattr(-,root,root)
  898. #%{_libdir}/libmount.a
  899. %{_libdir}/libmount.so
  900. %{_libdir}/pkgconfig/mount.pc
  901. %endif
  902. %changelog
  903. * Sun Oct 27 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.34-1
  904. - updated to 2.34.
  905. * Wed Dec 26 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.33-1
  906. - updated to 2.33.
  907. - dropped R:ConsoleKit-libs (ConsoleKit is obsolete).
  908. - added R:elogind.
  909. * Fri Sep 08 2017 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.30.1-1
  910. - updated to 2.30.1.
  911. - updated Patch7.
  912. - dropped Patch0-2,8 and 200-210.
  913. * Mon Nov 23 2015 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.22.2-5
  914. - set "/var/run" to %%_localstatedir.
  915. * Sun Feb 1 2015 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 2.22.2-4
  916. - added compat32-libblkid
  917. * Thu Oct 2 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 2.22.2-3
  918. - updated Summary
  919. - fixed %doc to include libmount COPYING
  920. - library subpackages are moved to System Environment/Libraries Group
  921. * Tue Jun 17 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.22.2-2
  922. - change BuildRequires: eudev-libudev-devel instead of libudev-devel
  923. * Sun Jan 20 2013 Daisuke SUZUKI <daisuke@linux.or.jp> 2.22.2-1
  924. - upadte to 2.22.2
  925. - add R(pre): coreutils to fix install order
  926. * Wed Nov 28 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 2.22.1-2
  927. - run autogen.sh before configure
  928. - remove "* include postlogin" from su.pamd
  929. * Tue Nov 27 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 2.22.1-1
  930. - update to 2.22.1
  931. - add upstream patches
  932. - move su/runuser from coreutils (add C:)
  933. - move eject from eject (add O:)
  934. - move sulogin/utmpdump from SysVinit-tools (C:)
  935. - enable raw by default
  936. * Tue Feb 21 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 2.20.1-1
  937. - update to 2.20.1
  938. - enable audit
  939. - provide mountpoint (conflicts: SysVinit-tools < 2.88dsf-2)
  940. * Sat Mar 19 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.19-1
  941. - new upstream release
  942. - rename again to util-linux
  943. - O: util-linux-ng < 2.19
  944. - build with libutempter
  945. - add BR: libutempter-devel
  946. - make /etc/mtab symlinks to /proc/mounts
  947. - drop mount.tmpfs
  948. - add libmount, libmount-devel subpackage
  949. * Thu Sep 30 2010 Shu KONNO <owa@bg.wakwak.com> 2.17.1-2
  950. - rebuilt with rpm-4.8.1 for pkg-config
  951. * Mon Apr 12 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 2.17.1-1
  952. - new upstream release
  953. - add R: libuuid = %{version}-%{release}, libblkid = %{version}-%{release}
  954. - remove Patch3, Patch9-14 (merged in upstream)
  955. - add Patch9
  956. * Thu Feb 11 2010 NAKAMURA Kenta <kenta@vinelinux.org> - 2.16-3
  957. - added compat32-libuuid packages for x86_64 arch support
  958. - added BuildRequires: popt-devel
  959. * Wed Feb 10 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.16-2
  960. - rebuilt with new toolchain
  961. * Mon Oct 19 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 2.16-1
  962. - update to 2.16 (merge patches from fedora)
  963. - libblkid/blkid/findfs is moved from e2fsprogs
  964. - add libuuid, libblkid and uuddd subpackage
  965. * Mon Sep 15 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 2.14.1-1
  966. - new upstream release
  967. * Wed Jun 25 2008 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 2.14-2
  968. - updated to util-linux-ng 2.14 based on 2.14-1 from Fedora
  969. - define with_{selinux,audit} macros (defaults to 0 on Vine)
  970. - add Source[56] for system without selinux
  971. - merge previous Vine changes on util-linux-2.12r-2:
  972. - Fri Apr 13 2007 KANEKO Seiji <giraffe@m2.pbc.ne.jp> 2.12p-0vl9
  973. - add Provides: pager
  974. - add Requires(post,preun): alternatives
  975. - Mon Apr 09 2007 KANEKO Seiji <giraffe@m2.pbc.ne.jp> 2.12p-0vl8
  976. - add update-alternatives: pager in %%post, %%preun scriptlet
  977. - add /usr/sbin/clock in %%files section
  978. * Mon Jun 9 2008 Karel Zak <kzak@redhat.com> 2.14-1
  979. - upgrade to stable util-linux-ng release
  980. * Mon May 19 2008 Karel Zak <kzak@redhat.com> 2.14-0.1
  981. - upgrade to 2.14-rc3
  982. - remove arch(8) (deprecated in favor of uname(1) or arch(1) from coreutils)
  983. - add a new command ldattach(8)
  984. - cfdisk(8) linked with libncursesw
  985. * Tue Apr 22 2008 Karel Zak <kzak@redhat.com> 2.13.1-9
  986. - fix audit log injection attack via login
  987. * Thu Apr 17 2008 Karel Zak <kzak@redhat.com> 2.13.1-8
  988. - fix location of the command raw(8)
  989. * Tue Apr 15 2008 Karel Zak <kzak@redhat.com> 2.13.1-7
  990. - fix 244383 - libblkid uses TYPE="swsuspend" for S1SUSPEND/S2SUSPEND
  991. * Wed Apr 2 2008 Karel Zak <kzak@redhat.com> 2.13.1-6
  992. - fix 439984 - backport mkswap -U
  993. * Wed Mar 26 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 2.13.1-5
  994. - clean up sparc conditionals
  995. * Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.13.1-4
  996. - Autorebuild for GCC 4.3
  997. * Mon Jan 28 2008 Karel Zak <kzak@redhat.com> 2.13.1-3
  998. - upgrade to new upstream release
  999. - fix #427874 - util-linux-ng gets "excess command line argument" on update
  1000. * Wed Jan 2 2008 Karel Zak <kzak@redhat.com> 2.13.1-2
  1001. - update to upstream 2.13.1-rc2
  1002. * Wed Dec 12 2007 Dan Walsh <dwalsh@redhat.com> 2.13.1-1
  1003. - Fix pam files so that pam_keyinit happens after pam_selinux.so
  1004. * Wed Dec 12 2007 Karel Zak <kzak@redhat.com> 2.13.1-0.2
  1005. - remove viwp and vigr (in favour of shadow-utils)
  1006. * Sun Dec 9 2007 Karel Zak <kzak@redhat.com> 2.13.1-0.1
  1007. - update to the latest upstream stable branch
  1008. (commit: fda9d11739ee88c3b2f22a73f12ec019bd3b8335)
  1009. * Wed Oct 31 2007 Karel Zak <kzak@redhat.com> 2.13-4
  1010. - fix #354791 - blockdev command calls the blkpg ioctl with a wrong data structure
  1011. * Tue Oct 16 2007 Karel Zak <kzak@redhat.com> 2.13-3
  1012. - fix mount -L | -U segfault
  1013. - fix script die on SIGWINCH
  1014. * Thu Oct 4 2007 Karel Zak <kzak@redhat.com> 2.13-2
  1015. - update to the latest upstream stable branch
  1016. * Tue Aug 28 2007 Karel Zak <kzak@redhat.com> 2.13-1
  1017. - upgrade to stable util-linux-ng release
  1018. * Fri Aug 24 2007 Karel Zak <kzak@redhat.com> 2.13-0.59
  1019. - add release number to util-linux Provides and increment setarch Obsoletes
  1020. - fix #254114 - spec typo
  1021. - upgrade to floppy-0.16
  1022. - add BuildRequires: popt-devel
  1023. * Wed Aug 22 2007 Jesse Keating <jkeating@redhat.com> 2.13-0.58
  1024. - Obsolete a sufficiently high enough version of setarch
  1025. * Mon Aug 20 2007 Karel Zak <kzak@redhat.com> 2.13-0.57
  1026. - fix #253664 - util-linux-ng fails to build on sparc (patch by Dennis Gilmore)
  1027. - rebase to new GIT snapshot
  1028. * Mon Aug 20 2007 Karel Zak <kzak@redhat.com> 2.13-0.56
  1029. - fix obsoletes field
  1030. * Mon Aug 20 2007 Karel Zak <kzak@redhat.com> 2.13-0.55
  1031. - util-linux-ng includes setarch(1), define relevat Obsoletes+Provides
  1032. * Mon Aug 20 2007 Karel Zak <kzak@redhat.com> 2.13-0.54
  1033. - port "blockdev --rmpart" patch from util-linux
  1034. - use same Provides/Obsoletes setting like in util-linux
  1035. * Wed Aug 15 2007 Karel Zak <kzak@redhat.com> 2.13-0.53
  1036. - fix #252046 - review Request: util-linux-ng (util-linux replacement)
  1037. * Mon Aug 13 2007 Karel Zak <kzak@redhat.com> 2.13-0.52
  1038. - rebase to util-linux-ng (new util-linux upstream fork,
  1039. based on util-linux 2.13-pre7)
  1040. - more than 70 Fedora/RHEL patches have been merged to upstream code
  1041. * Fri Apr 6 2007 Karel Zak <kzak@redhat.com> 2.13-0.51
  1042. - fix #150493 - hwclock --systohc sets clock 0.5 seconds slow
  1043. - fix #220873 - starting RPC idmapd: Error: RPC MTAB does not exist.
  1044. (added rpc_pipefs to util-linux-2.13-umount-sysfs.patch)
  1045. - fix #227903 - mount -f does not work with NFS-mounted
  1046. * Sat Mar 3 2007 David Zeuthen <davidz@redhat.com> 2.13-0.50
  1047. - include ConsoleKit session module by default (#229172)
  1048. * Thu Jan 11 2007 Karel Zak <kzak@redhat.com> 2.13-0.49
  1049. - fix #222293 - undocumented partx,addpart, delpart
  1050. * Sun Dec 17 2006 Karel Zak <kzak@redhat.com> 2.13-0.48
  1051. - fix paths in po/Makefile.in.in
  1052. * Fri Dec 15 2006 Karel Zak <kzak@redhat.com> 2.13-0.47
  1053. - fix #217240 - namei ignores non-directory components instead of saying "Not a directory"
  1054. - fix #217241 - namei enforces symlink limits inconsistently
  1055. * Thu Dec 14 2006 Karel Zak <kzak@redhat.com> 2.13-0.46
  1056. - fix leaking file descriptor in the more command (patch by Steve Grubb)
  1057. * Wed Dec 13 2006 Karel Zak <kzak@redhat.com> 2.13-0.45
  1058. - use ncurses only
  1059. - fix #218915 - fdisk -b 4K
  1060. - upgrade to -pre7 release
  1061. - fix building problem with raw0 patch
  1062. - fix #217186 - /bin/sh: @MKINSTALLDIRS@: No such file or directory
  1063. (port po/Makefile.in.in from gettext-0.16)
  1064. - sync with FC6 and RHEL5:
  1065. - fix #216489 - SCHED_BATCH option missing in chrt
  1066. - fix #216712 - issues with raw device support ("raw0" is wrong device name)
  1067. - fix #216760 - mount with context or fscontext option fails
  1068. (temporarily disabled the support for additional contexts -- not supported by kernel yet)
  1069. - fix #211827 - Can't mount with additional contexts
  1070. - fix #213127 - mount --make-unbindable does not work
  1071. - fix #211749 - add -r option to losetup to create a read-only loop
  1072. * Thu Oct 12 2006 Karel Zak <kzak@redhat.com> 2.13-0.44
  1073. - fix #209911 - losetup.8 updated (use dm-crypt rather than deprecated cryptoloop)
  1074. - fix #210338 - spurious error from '/bin/login -h $PHONENUMBER' (bug in IPv6 patch)
  1075. - fix #208634 - mkswap "works" without warning on a mounted device
  1076. * Sun Oct 01 2006 Jesse Keating <jkeating@redhat.com> - 2.13-0.43
  1077. - rebuilt for unwind info generation, broken in gcc-4.1.1-21
  1078. * Wed Sep 20 2006 Karel Zak <kzak@redhat.com> 2.13-0.42
  1079. - remove obsolete NFS code and patches (we use /sbin/mount.nfs
  1080. and /sbin/umount.nfs from nfs-utils now)
  1081. - move nfs.5 to nfs-utils
  1082. * Fri Sep 15 2006 Karel Zak <kzak@redhat.com> 2.13-0.41
  1083. - fix #205038 - mount not allowing sloppy option (exports "-s"
  1084. to external /sbin/mount.nfs(4) calls)
  1085. - fix minor bug in util-linux-2.13-mount-twiceloop.patch
  1086. - fix #188193- util-linux should provide plugin infrastructure for HAL
  1087. * Mon Aug 21 2006 Karel Zak <kzak@redhat.com> 2.13-0.40
  1088. - fix Makefile.am in util-linux-2.13-mount-context.patch
  1089. - fix #201343 - pam_securetty requires known user to work
  1090. (split PAM login configuration to two files)
  1091. - fix #203358 - change location of taskset binary to allow for early affinity work
  1092. * Fri Aug 11 2006 Karel Zak <kzak@redhat.com> 2.13-0.39
  1093. - fix #199745 - non-existant simpleinit(8) mentioned in ctrlaltdel(8)
  1094. * Thu Aug 10 2006 Dan Walsh <dwalsh@redhat.com> 2.13-0.38
  1095. - Change keycreate line to happen after pam_selinux open call so it gets correct context
  1096. * Thu Aug 10 2006 Karel Zak <kzak@redhat.com> 2.13-0.37
  1097. - fix #176494 - last -i returns strange IP addresses (patch by Bill Nottingham)
  1098. * Thu Jul 27 2006 Karel Zak <kzak@redhat.com> 2.13-0.36
  1099. - fix #198300, #199557 - util-linux "post" scriptlet failure
  1100. * Thu Jul 27 2006 Steve Dickson <steved@redhat.com> 2.13-0.35
  1101. - Added the -o fsc flag to nfsmount.
  1102. * Wed Jul 26 2006 Karel Zak <kzak@redhat.com> 2.13-0.34
  1103. - rebuild
  1104. * Tue Jul 18 2006 Karel Zak <kzak@redhat.com> 2.13-0.33
  1105. - add Requires(post): libselinux
  1106. * Mon Jul 17 2006 Karel Zak <kzak@redhat.com> 2.13-0.32
  1107. - add IPv6 support to the login command (patch by Milan Zazrivec)
  1108. - fix #198626 - add keyinit instructions to the login PAM script
  1109. (patch by David Howells)
  1110. * Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.13-0.31.1
  1111. - rebuild
  1112. * Tue Jul 11 2006 Karel Zak <kzak@redhat.com> 2.13-0.31
  1113. - cleanup dependences for post and preun scriptlets
  1114. * Mon Jul 10 2006 Karsten Hopp <karsten@redhat.de> 2.13-0.30
  1115. - silence install in minimal buildroot without /var/log
  1116. * Fri Jul 7 2006 Karel Zak <kzak@redhat.com> 2.13-0.29
  1117. - include the raw command for RHELs
  1118. * Mon Jun 26 2006 Florian La Roche <laroche@redhat.com> 2.13-0.28
  1119. - move install-info parts from postun to preun
  1120. * Wed Jun 21 2006 Dan Walsh <dwalsh@RedHat.com> 2.13-0.27
  1121. - Only execute chcon on machines with selinux enabled
  1122. * Wed Jun 14 2006 Steve Dickson <steved@redhat.com> 2.13-0.26
  1123. - Remove unneeded header files from nfsmount.c
  1124. * Mon Jun 12 2006 Karel Zak <kzak@redhat.com> 2.13-0.25
  1125. - fix #187014 - umount segfaults for normal user
  1126. - fix #183446 - cal not UTF-8-aware
  1127. - fix #186915 - mount does not translate SELIinux context options though libselinux
  1128. - fix #185500 - Need man page entry for -o context= mount option
  1129. - fix #152579 - missing info about /etc/mtab and /proc/mounts mismatch
  1130. - fix #183890 - missing info about possible ioctl() and fcntl() problems on NFS filesystem
  1131. - fix #191230 - using mount --move results in wrong data in /etc/mtab
  1132. - added mount subtrees support
  1133. - fdisk: wrong number of sectors for large disks (suse#160822)
  1134. - merge fdisk-xvd (#182553) with new fdisk-isfull (#188981) patch
  1135. - fix #181549 - raw(8) manpage has old information about dd
  1136. - remove asm/page.h usage
  1137. * Wed May 24 2006 Dan Walsh <dwalsh@RedHat.com> 2.13-0.24
  1138. - Remove requirement on restorecon, since we can do the same thing
  1139. - with chcon/matchpathcon, and not add requirement on policycoreutils
  1140. * Wed May 24 2006 Steve Dickson <steved@redhat.com> 2.13-0.23
  1141. - Fixed bug in patch for bz183713 which cause nfs4 mounts to fail.
  1142. * Tue May 2 2006 Steve Dickson <steved@redhat.com> 2.13-0.22
  1143. - Added syslog logging to background mounts as suggested
  1144. by a customer.
  1145. * Mon May 1 2006 Steve Dickson <steved@redhat.com> 2.13-0.21
  1146. - fix #183713 - foreground mounts are not retrying as advertised
  1147. - fix #151549 - Added 'noacl' mount flag
  1148. - fix #169042 - Changed nfsmount to try udp before using tcp when rpc-ing
  1149. the remote rpc.mountd (iff -o tcp is not specified).
  1150. This drastically increases the total number of tcp mounts
  1151. that can happen at once (ala autofs).
  1152. * Thu Mar 9 2006 Jesse Keating <jkeating@redhat.com> 2.13-0.20
  1153. - Better calling of restorecon as suggested by Bill Nottingham
  1154. - prereq restorecon to avoid ordering issues
  1155. * Thu Mar 9 2006 Jesse Keating <jkeating@redhat.com> 2.13-0.19
  1156. - restorecon /var/log/lastlog
  1157. * Wed Mar 8 2006 Karel Zak <kzak@redhat.com> 2.13-0.17
  1158. - fix #181782 - mkswap selinux relabeling (fix util-linux-2.13-mkswap-selinux.patch)
  1159. * Wed Feb 22 2006 Karel Zak <kzak@redhat.com> 2.13-0.16
  1160. - fix #181782 - mkswap should automatically add selinux label to swapfile
  1161. - fix #180730 - col is exiting with 1 (fix util-linux-2.12p-col-EILSEQ.patch)
  1162. - fix #181896 - broken example in schedutils man pages
  1163. - fix #177331 - login omits pam_acct_mgmt & pam_chauthtok when authentication is skipped.
  1164. - fix #177523 - umount -a should not unmount sysfs
  1165. - fix #182553 - fdisk -l inside xen guest shows no disks
  1166. * Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.13-0.15.1
  1167. - bump again for double-long bug on ppc(64)
  1168. * Wed Feb 8 2006 Peter Jones <pjones@redhat.com> 2.13-0.15
  1169. - add "blockdev --rmpart N <device>" and "blockdev --rmparts <device>"
  1170. * Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.13-0.14.1
  1171. - rebuilt for new gcc4.1 snapshot and glibc changes
  1172. * Thu Jan 19 2006 Steve Dickson <steved@redhat.com> 2.13-0.14
  1173. - Updated the gssd_check() and idmapd_check(), used with
  1174. nfsv4 mounts, to looked for the correct file in /var/lock/subsys
  1175. which stops bogus warnings.
  1176. * Tue Jan 3 2006 Karel Zak <kzak@redhat.com> 2.13-0.13
  1177. - fix #174676 - hwclock audit return code mismatch
  1178. - fix #176441: col truncates data
  1179. - fix #174111 - mount allows loopback devices to be mounted more than once to the same mount point
  1180. - better wide chars usage in the cal command (based on the old 'moremisc' patch)
  1181. * Mon Dec 12 2005 Karel Zak <kzak@redhat.com> 2.13-0.12
  1182. - rebuilt
  1183. * Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
  1184. - rebuilt
  1185. * Fri Nov 25 2005 Karel Zak <kzak@redhat.com> 2.13-0.11.pre6
  1186. - update to upstream version 2.13-pre6
  1187. - fix #172203 - mount man page in RHEL4 lacks any info on cifs mount options
  1188. * Mon Nov 7 2005 Karel Zak <kzak@redhat.com> 2.13-0.10.pre5
  1189. - fix #171337 - mkfs.cramfs doesn't work correctly with empty files
  1190. * Fri Oct 28 2005 Karel Zak <kzak@redhat.com> 2.13-0.9.pre5
  1191. - rebuild
  1192. * Wed Oct 26 2005 Karel Zak <kzak@redhat.com> 2.13-0.8.pre5
  1193. - updated version of the patch for hwclock audit
  1194. * Thu Oct 20 2005 Karel Zak <kzak@redhat.com> 2.13-0.7.pre5
  1195. - fix #171337 - mkfs.cramfs dies creating installer image
  1196. * Thu Oct 20 2005 Karel Zak <kzak@redhat.com> 2.13-0.6.pre5
  1197. - update to upstream 2.13pre5
  1198. - remove separated cramfs1.1 (already in upstream package)
  1199. - remove odd symlink /usr/bin/mkcramfs -> ../../sbin/mkfs.cramfs
  1200. - fix #170171 - ipcs -lm always report "max total shared memory (kbytes) = 0"
  1201. * Mon Oct 17 2005 Karel Zak <kzak@redhat.com> 2.13-0.5.pre4
  1202. * fix #170564 - add audit message to login
  1203. * Fri Oct 7 2005 Karel Zak <kzak@redhat.com> 2.13-0.4.pre4
  1204. - fix #169628 - /usr/bin/floppy doesn't work with /dev/fd0
  1205. - fix #168436 - login will attempt to run if it has no read/write access to its terminal
  1206. - fix #168434 - login's timeout can fail - needs to call siginterrupt(SIGALRM,1)
  1207. - fix #165253 - losetup missing option -a [new feature]
  1208. - update PAM files (replace pam_stack with new "include" PAM directive)
  1209. - remove kbdrate from src.rpm
  1210. - update to 2.13pre4
  1211. * Fri Oct 7 2005 Steve Dickson <steved@redhat.com> 2.13-0.3.pre3
  1212. - fix #170110 - Documentation for 'rsize' and 'wsize' NFS mount options
  1213. is misleading
  1214. * Fri Sep 2 2005 Karel Zak <kzak@redhat.com> 2.13-0.3.pre2
  1215. - fix #166923 - hwclock will not run on a non audit-enabled kernel
  1216. - fix #159410 - mkswap(8) claims max swap area size is 2 GB
  1217. - fix #165863 - swsusp swaps should be reinitialized
  1218. - change /var/log/lastlog perms to 0644
  1219. * Tue Aug 16 2005 Karel Zak <kzak@redhat.com> 2.13-0.2.pre2
  1220. - /usr/share/misc/getopt/* -move-> /usr/share/doc/util-linux-2.13/getopt-*
  1221. - the arch command marked as deprecated
  1222. - removed: elvtune, rescuept and setfdprm
  1223. - removed: man8/sln.8 (moved to man-pages, see #10601)
  1224. - removed REDAME.pg and README.reset
  1225. - .spec file cleanup
  1226. - added schedutils (commands: chrt, ionice and taskset)
  1227. * Tue Jul 12 2005 Karel Zak <kzak@redhat.com> 2.12p-9.7
  1228. - fix #159339 - util-linux updates for new audit system
  1229. - fix #158737 - sfdisk warning for large partitions, gpt
  1230. - fix #150912 - Add ocfs2 support
  1231. - NULL is better than zero at end of execl()
  1232. * Thu Jun 16 2005 Karel Zak <kzak@redhat.com> 2.12p-9.5
  1233. - fix #157656 - CRM 546998: Possible bug in vipw, changes permissions of /etc/shadow and /etc/gshadow
  1234. - fix #159339 - util-linux updates for new audit system (pam_loginuid.so added to util-linux-selinux.pamd)
  1235. - fix #159418 - sfdisk unusable - crashes immediately on invocation
  1236. - fix #157674 - sync option on VFAT mount destroys flash drives
  1237. - fix .spec file /usr/sbin/{hwclock,clock} symlinks
  1238. * Wed May 4 2005 Jeremy Katz <katzj@redhat.com> - 2.12p-9.3
  1239. - rebuild against new libe2fsprogs (and libblkid) to fix cramfs auto-detection
  1240. * Mon May 2 2005 Karel Zak <kzak@redhat.com> 2.12p-9.2
  1241. - rebuild
  1242. * Mon May 2 2005 Karel Zak <kzak@redhat.com> 2.12p-9
  1243. - fix #156597 - look - doesn't work with separators
  1244. * Mon Apr 25 2005 Karel Zak <kzak@redhat.com> 2.12p-8
  1245. - fix #154498 - util-linux login & pam session
  1246. - fix #155293 - man 5 nfs should include vers as a mount option
  1247. - fix #76467 - At boot time, fsck chokes on LVs listed by label in fstab
  1248. - new Source URL
  1249. - added note about ATAPI IDE floppy to fdformat.8
  1250. - fix #145355 - Man pages for fstab and fstab-sync in conflict
  1251. * Tue Apr 5 2005 Karel Zak <kzak@redhat.com> 2.12p-7
  1252. - enable build with libblkid from e2fsprogs-devel
  1253. - remove workaround for duplicated labels
  1254. * Thu Mar 31 2005 Steve Dickson <SteveD@RedHat.com> 2.12p-5
  1255. - Fixed nfs mount to rollback correctly.
  1256. * Fri Mar 25 2005 Karel Zak <kzak@redhat.com> 2.12p-4
  1257. - added /var/log/lastlog to util-linux (#151635)
  1258. - disabled 'newgrp' in util-linux (enabled in shadow-utils) (#149997, #151613)
  1259. - improved mtab lock (#143118)
  1260. - fixed ipcs typo (#151156)
  1261. - implemented mount workaround for duplicated labels (#116300)
  1262. * Wed Mar 16 2005 Elliot Lee <sopwith@redhat.com> 2.12p-3
  1263. - rebuilt
  1264. * Fri Feb 25 2005 Steve Dickson <SteveD@RedHat.com> 2.12p-2
  1265. - Changed nfsmount to only use reserve ports when necessary
  1266. (bz# 141773)
  1267. * Thu Dec 23 2004 Elliot Lee <sopwith@redhat.com> 2.12p-1
  1268. - Update to util-linux-2.12p. This changes swap header format
  1269. from - you may need to rerun mkswap if you did a clean install of
  1270. FC3.
  1271. * Fri Dec 10 2004 Elliot Lee <sopwith@redhat.com> 2.12j-1
  1272. - Update to util-linux-2.12j
  1273. * Tue Dec 7 2004 Steve Dickson <SteveD@RedHat.com> 2.12a-20
  1274. - Corrected a buffer overflow problem with nfs mounts.
  1275. (bz# 141733)
  1276. * Wed Dec 01 2004 Elliot Lee <sopwith@redhat.com> 2.12a-19
  1277. - Patches for various bugs.
  1278. * Mon Nov 29 2004 Steve Dickson <SteveD@RedHat.com> 2.12a-18
  1279. - Made NFS mounts adhere to the IP protocol if specified on
  1280. command line as well as made NFS umounts adhere to the
  1281. current IP protocol. Fix #140016
  1282. * Thu Oct 14 2004 Elliot Lee <sopwith@redhat.com> 2.12a-16
  1283. - Add include_raw macro, build with it off for Fedora
  1284. * Wed Oct 13 2004 Stephen C. Tweedie <sct@redhat.com> - 2.12a-15
  1285. - Add raw patch to allow binding of devices not yet in /dev
  1286. * Wed Oct 13 2004 John (J5) Palmieri <johnp@redhat.com> 2.12a-14
  1287. - Add David Zeuthen's patch to enable the pamconsole flag #133941
  1288. * Wed Oct 13 2004 Stephen C. Tweedie <sct@redhat.com> 2.12a-13
  1289. - Restore raw utils (bugzilla #130016)
  1290. * Mon Oct 11 2004 Phil Knirsch <pknirsch@redhat.com> 2.12a-12
  1291. - Add the missing remote entry in pam.d
  1292. * Wed Oct 6 2004 Steve Dickson <SteveD@RedHat.com>
  1293. - Rechecked in some missing NFS mounting code.
  1294. * Wed Sep 29 2004 Elliot Lee <sopwith@redhat.com> 2.12a-10
  1295. - Make swaplabel support work with swapon -a -e
  1296. * Tue Sep 28 2004 Steve Dickson <SteveD@RedHat.com>
  1297. - Updated the NFS and NFS4 code to the latest CITI patch set
  1298. (in which they incorporate a number of our local patches).
  1299. * Wed Sep 15 2004 Nalin Dahybhai <nalin@redhat.com> 2.12a-8
  1300. - Fix #132196 - turn on SELinux support at build-time.
  1301. * Wed Sep 15 2004 Phil Knirsch <pknirsch@redhat.com> 2.12a-7
  1302. - Fix #91174 with pamstart.patch
  1303. * Tue Aug 31 2004 Elliot Lee <sopwith@redhat.com> 2.12a-6
  1304. - Fix #16415, #70616 with rdevman.patch
  1305. - Fix #102566 with loginman.patch
  1306. - Fix #104321 with rescuept.patch (just use plain lseek - we're in _FILE_OFFSET_BITS=64 land now)
  1307. - Fix #130016 - remove raw.
  1308. - Re-add agetty (replacing it with mgetty is too much pain, and mgetty is much larger)
  1309. * Thu Aug 26 2004 Steve Dickson <SteveD@RedHat.com>
  1310. - Made the NFS security checks more explicit to avoid confusion
  1311. (an upstream fix)
  1312. - Also removed a compilation warning
  1313. * Wed Aug 11 2004 Alasdair Kergon <agk@redhat.com>
  1314. - Remove unused mount libdevmapper inclusion.
  1315. * Wed Aug 11 2004 Alasdair Kergon <agk@redhat.com>
  1316. - Add device-mapper mount-by-label support
  1317. - Fix segfault in mount-by-label when a device without a label is present.
  1318. * Wed Aug 11 2004 Steve Dickson <SteveD@RedHat.com>
  1319. - Updated nfs man page to show that intr are on by
  1320. default for nfs4
  1321. * Thu Aug 05 2004 Jindrich Novy <jnovy@redhat.com>
  1322. - modified warning causing heart attack for >16 partitions, #107824
  1323. * Fri Jul 09 2004 Elliot Lee <sopwith@redhat.com> 2.12a-3
  1324. - Fix #126623, #126572
  1325. - Patch cleanup
  1326. - Remove agetty (use mgetty, agetty is broken)
  1327. * Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
  1328. - rebuilt
  1329. * Thu Jun 03 2004 Elliot Lee <sopwith@redhat.com> 2.12a-1
  1330. - Update to 2.12a
  1331. - Fix #122448
  1332. * Thu May 13 2004 Dan Walsh <dwalsh@RedHat.com> 2.12-19
  1333. - Change pam_selinux to run last
  1334. * Tue May 04 2004 Elliot Lee <sopwith@redhat.com> 2.12-18
  1335. - Fix #122448 (autofs issues)
  1336. * Fri Apr 23 2004 Elliot Lee <sopwith@redhat.com> 2.12-17
  1337. - Fix #119157 by editing the patch
  1338. - Add patch145 to fix #119986
  1339. * Fri Apr 16 2004 Elliot Lee <sopwith@redhat.com> 2.12-16
  1340. - Fix #118803
  1341. * Tue Mar 23 2004 Jeremy Katz <katzj@redhat.com> 2.12-15
  1342. - mkcramfs: use PAGE_SIZE for default blocksize (#118681)
  1343. * Sat Mar 20 2004 <SteveD@RedHat.com>
  1344. - Updated the nfs-mount.patch to correctly
  1345. handle the mounthost option and to ignore
  1346. servers that do not set auth flavors
  1347. * Tue Mar 16 2004 Dan Walsh <dwalsh@RedHat.com> 2.12-13
  1348. - Fix selinux ordering or pam for login
  1349. * Tue Mar 16 2004 <SteveD@RedHat.com>
  1350. - Make RPC error messages displayed with -v argument
  1351. - Added two checks to the nfs4 path what will print warnings
  1352. when rpc.idmapd and rpc.gssd are not running
  1353. - Ping NFS v4 servers before diving into kernel
  1354. - Make v4 mount interruptible which also make the intr option on by default
  1355. * Sat Mar 13 2004 <SteveD@RedHat.com>
  1356. - Reworked how the rpc.idmapd and rpc.gssd checks were
  1357. done due to review comments from upstream.
  1358. - Added rpc_strerror() so the '-v' flag will show RPC errors.
  1359. * Sat Mar 13 2004 <SteveD@RedHat.com>
  1360. - Added two checks to the nfs4 path what will print warnings
  1361. when rpc.idmapd and rpc.gssd are not running.
  1362. * Thu Mar 11 2004 <SteveD@RedHat.com>
  1363. - Reworked and updated the nfsv4 patches.
  1364. * Wed Mar 10 2004 Dan Walsh <dwalsh@RedHat.com>
  1365. - Bump version
  1366. * Wed Mar 10 2004 Steve Dickson <SteveD@RedHat.com>
  1367. - Tried to make nfs error message a bit more meaninful
  1368. - Cleaned up some warnings
  1369. * Sun Mar 7 2004 Steve Dickson <SteveD@RedHat.com>
  1370. - Added pesudo flavors for nfsv4 mounts.
  1371. - Added BuildRequires: libselinux-devel and Requires: libselinux
  1372. when WITH_SELINUX is set.
  1373. * Fri Feb 27 2004 Dan Walsh <dwalsh@redhat.com> 2.12-5
  1374. - check for 2.6.3 kernel in mount options
  1375. * Mon Feb 23 2004 Elliot Lee <sopwith@redhat.com> 2.12-4
  1376. - Remove /bin/kill for #116100
  1377. * Fri Feb 20 2004 Dan Walsh <dwalsh@redhat.com> 2.12-3
  1378. - rebuilt
  1379. * Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
  1380. - rebuilt
  1381. * Thu Feb 12 2004 Elliot Lee <sopwith@redhat.com> 2.12-1
  1382. - Final 2.12 has been out for ages - might as well use it.
  1383. * Wed Jan 28 2004 Steve Dickson <SteveD@RedHat.com> 2.12pre-4
  1384. - Added mount patches that have NFS version 4 support
  1385. * Mon Jan 26 2004 Elliot Lee <sopwith@redhat.com> 2.12pre-3
  1386. - Provides: mount losetup
  1387. * Mon Jan 26 2004 Dan Walsh <dwalsh@redhat.com> 2.12pre-2
  1388. - Add multiple to /etc/pam.d/login for SELinux
  1389. * Thu Jan 15 2004 Elliot Lee <sopwith@redhat.com> 2.12pre-1
  1390. - 2.12pre-1
  1391. - Merge mount/losetup packages into the main package (#112324)
  1392. - Lose separate
  1393. * Mon Nov 3 2003 Dan Walsh <dwalsh@redhat.com> 2.11y-35.sel
  1394. - remove selinux code from login and use pam_selinux
  1395. * Thu Oct 30 2003 Dan Walsh <dwalsh@redhat.com> 2.11y-34.sel
  1396. - turn on selinux
  1397. * Fri Oct 24 2003 Elliot Lee <sopwith@redhat.com> 2.11y-34
  1398. - Add BuildRequires: texinfo (from a bug# I don't remember)
  1399. - Fix #90588 with mountman patch142.
  1400. * Mon Oct 6 2003 Dan Walsh <dwalsh@redhat.com> 2.11y-33
  1401. - turn off selinux
  1402. * Thu Sep 25 2003 Dan Walsh <dwalsh@redhat.com> 2.11y-32.sel
  1403. - turn on selinux
  1404. - remove context selection
  1405. * Fri Sep 19 2003 Elliot Lee <sopwith@redhat.com> 2.11y-31
  1406. - Add patch140 (alldevs) to fix #101772. Printing the total size of
  1407. all devices was deemed a lower priority than having all devices
  1408. (e.g. /dev/ida/c0d9) displayed.
  1409. * Fri Sep 12 2003 Dan Walsh <dwalsh@redhat.com> 2.11y-31
  1410. - turn off selinux
  1411. * Fri Sep 12 2003 Dan Walsh <dwalsh@redhat.com> 2.11y-30.sel
  1412. - turn on selinux
  1413. * Fri Sep 5 2003 Elliot Lee <sopwith@redhat.com> 2.11y-28
  1414. - Fix #103004, #103954
  1415. * Fri Sep 5 2003 Dan Walsh <dwalsh@redhat.com> 2.11y-27
  1416. - turn off selinux
  1417. * Thu Sep 4 2003 Dan Walsh <dwalsh@redhat.com> 2.11y-26.sel
  1418. - build with selinux
  1419. * Mon Aug 11 2003 Elliot Lee <sopwith@redhat.com> 2.11y-25
  1420. - Use urandom instead for mkcramfs
  1421. * Tue Jul 29 2003 Dan Walsh <dwalsh@redhat.com> 2.11y-24
  1422. - add SELINUX 2.5 support
  1423. * Wed Jul 23 2003 Elliot Lee <sopwith@redhat.com> 2.11y-22
  1424. - #100433 patch
  1425. * Sat Jun 14 2003 Elliot Lee <sopwith@redhat.com> 2.11y-20
  1426. - #97381 patch
  1427. * Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
  1428. - rebuilt
  1429. * Mon Apr 21 2003 Elliot Lee <sopwith@redhat.com> 2.11y-17
  1430. - Change patch128 to improve ipcs -l
  1431. * Fri Apr 11 2003 Elliot Lee <sopwith@redhat.com> 2.11y-16
  1432. - Fix #85407
  1433. * Fri Apr 11 2003 Elliot Lee <sopwith@redhat.com> 2.11y-15
  1434. - Change patch128 to util-linux-2.11f-ipcs-84243-86285.patch to get all
  1435. ipcs fixes
  1436. * Thu Apr 10 2003 Matt Wilson <msw@redhat.com> 2.11y-14
  1437. - fix last login date display on AMD64 (#88574)
  1438. * Mon Apr 7 2003 Jeremy Katz <katzj@redhat.com> 2.11y-13
  1439. - include sfdisk on ppc
  1440. * Fri Mar 28 2003 Jeremy Katz <katzj@redhat.com> 2.11y-12
  1441. - add patch from msw to change mkcramfs blocksize with a command line option
  1442. * Tue Mar 25 2003 Phil Knirsch <pknirsch@redhat.com> 2.11y-11
  1443. - Fix segfault on s390x due to wrong usage of BLKGETSIZE.
  1444. * Thu Mar 13 2003 Elliot Lee <sopwith@redhat.com> 2.11y-10
  1445. - Really apply the ipcs patch. Doh.
  1446. * Mon Feb 24 2003 Elliot Lee <sopwith@redhat.com>
  1447. - rebuilt
  1448. * Wed Feb 19 2003 Elliot Lee <sopwith@redhat.com> 2.11y-8
  1449. - ipcs-84243.patch to fix #84243
  1450. * Thu Feb 13 2003 Yukihiro Nakai <ynakai@redhat.com> 2.11y-7
  1451. - Update moremisc patch to fix swprintf()'s minimum field (bug #83361).
  1452. * Mon Feb 03 2003 Elliot Lee <sopwith@redhat.com> 2.11y-6
  1453. - Fix mcookie segfault on many 64-bit architectures (bug #83345).
  1454. * Mon Feb 03 2003 Tim Waugh <twaugh@redhat.com> 2.11y-5
  1455. - Fix underlined multibyte characters (bug #83376).
  1456. * Sun Feb 02 2003 Florian La Roche <Florian.LaRoche@redhat.de>
  1457. - rebuild to have again a s390 rpm
  1458. - disable some more apps for mainframe
  1459. * Wed Jan 29 2003 Elliot Lee <sopwith@redhat.com> 2.11y-4
  1460. - util-linux-2.11y-umask-82552.patch
  1461. * Wed Jan 22 2003 Tim Powers <timp@redhat.com>
  1462. - rebuilt
  1463. * Mon Jan 13 2003 Elliot Lee <sopwith@redhat.com> 2.11y-2
  1464. - Fix #81069, #75421
  1465. * Mon Jan 13 2003 Elliot Lee <sopwith@redhat.com> 2.11y-1
  1466. - Update to 2.11y
  1467. - Fix #80953
  1468. - Update patch0, patch107, patch117, patch120 for 2.11y
  1469. - Remove patch60, patch61, patch207, patch211, patch212, patch119, patch121
  1470. - Remove patch122, patch200
  1471. * Wed Oct 30 2002 Elliot Lee <sopwith@redhat.com> 2.11w-2
  1472. - Remove some crack/unnecessary patches while submitting stuff upstream.
  1473. - Build with -D_FILE_OFFSET_BITS=64
  1474. * Tue Oct 29 2002 Elliot Lee <sopwith@redhat.com> 2.11w-1
  1475. - Update to 2.11w, resolve patch conflicts
  1476. * Tue Oct 08 2002 Phil Knirsch <pknirsch@redhat.com> 2.11r-10hammer.3
  1477. - Extended util-linux-2.11b-s390x patch to work again.
  1478. * Thu Oct 03 2002 Elliot Lee <sopwith@redhat.com> 2.11r-10hammer.2
  1479. - Add patch122 for hwclock on x86_64
  1480. * Thu Sep 12 2002 Than Ngo <than@redhat.com> 2.11r-10hammer.1
  1481. - Fixed pam config files
  1482. * Wed Sep 11 2002 Bernhard Rosenkraenzer <bero@redhat.com> 2.11r-10hammer
  1483. - Port to hammer
  1484. * Fri Aug 30 2002 Elliot Lee <sopwith@redhat.com> 2.11r-10
  1485. - Patch120 (hwclock) to fix #72140
  1486. - Include isosize util
  1487. * Wed Aug 7 2002 Elliot Lee <sopwith@redhat.com> 2.11r-9
  1488. - Patch120 (skipraid2) to fix #70353, because the original patch was
  1489. totally useless.
  1490. * Fri Aug 2 2002 Elliot Lee <sopwith@redhat.com> 2.11r-8
  1491. - Patch119 (fdisk-add-primary) from #67898
  1492. * Wed Jul 24 2002 Elliot Lee <sopwith@redhat.com> 2.11r-7
  1493. - Really add the gptsize patch, instead of what I think the patch says.
  1494. (+1)
  1495. * Tue Jul 23 2002 Elliot Lee <sopwith@redhat.com> 2.11r-6
  1496. - Add the sp[n].size part of the patch from #69603
  1497. * Mon Jul 22 2002 Florian La Roche <Florian.LaRoche@redhat.de>
  1498. - adjust mainframe patches
  1499. * Tue Jul 2 2002 Bill Nottingham <notting@redhat.com> 2.11r-4
  1500. - only require usermode if we're shipping kbdrate here
  1501. * Fri Jun 28 2002 Trond Eivind Glomsrod <teg@redhat.com> 2.11r-3
  1502. - Port the large swap patch to new util-linux... the off_t changes
  1503. now in main aren't sufficient
  1504. * Thu Jun 27 2002 Elliot Lee <sopwith@redhat.com> 2.11r-2
  1505. - Remove swapondetect (patch301) until it avoids possible false positives.
  1506. * Thu Jun 27 2002 Elliot Lee <sopwith@redhat.com> 2.11r-1
  1507. - Update to 2.11r, wheeee
  1508. - Remove unused patches
  1509. * Thu Jun 27 2002 Elliot Lee <sopwith@redhat.com> 2.11n-19
  1510. - Make a note here that this package was the source of the single change
  1511. contained in util-linux-2.11f-18 (in 7.2/Alpha), and also contains the
  1512. rawman patch from util-linux-2.11f-17.1 (in 2.1AS).
  1513. - Package has no runtime deps on slang, so remove the BuildRequires:
  1514. slang-devel.
  1515. * Fri Jun 21 2002 Tim Powers <timp@redhat.com>
  1516. - automated rebuild
  1517. * Thu Jun 20 2002 Elliot Lee <sopwith@redhat.com> 2.11n-17
  1518. - Fix teg's swapondetect patch to not print out the usage message when
  1519. 'swapon -a -e' is run. (#66690) (edit existing patch)
  1520. - Apply hjl's utmp handling patch (#66950) (patch116)
  1521. - Fix fdisk man page notes on IDE disk partition limit (#64013) (patch117)
  1522. - Fix mount.8 man page notes on vfat shortname option (#65628) (patch117)
  1523. - Fix possible cal overflow with widechars (#67090) (patch117)
  1524. * Tue Jun 11 2002 Trond Eivind Glomsrod <teg@redhat.com> 2.11n-16
  1525. - support large swap partitions
  1526. - add '-d' option to autodetect available swap partitions
  1527. * Thu May 23 2002 Tim Powers <timp@redhat.com>
  1528. - automated rebuild
  1529. * Wed May 15 2002 Elliot Lee <sopwith@redhat.com> 2.11n-14
  1530. - Remove kbdrate (again).
  1531. * Mon Apr 29 2002 Florian La Roche <Florian.LaRoche@redhat.de>
  1532. - adjust mainframe patches to apply to current rpm
  1533. - do not include fdisk until it is fixed to work on mainframe
  1534. * Mon Apr 01 2002 Elliot Lee <sopwith@redhat.com> 2.11n-12
  1535. - Don't strip binaries - rpm does it for us.
  1536. * Sun Mar 31 2002 Elliot Lee <sopwith@redhat.com> 2.11n-11
  1537. - Apply patch115 from ejb@ql.org for bug #61868
  1538. * Wed Mar 27 2002 Elliot Lee <sopwith@redhat.com> 2.11n-10
  1539. - Finish fixing #60675 (ipcrm man page), updated the patch.
  1540. - Fix #61203 (patch114 - dumboctal.patch).
  1541. * Tue Mar 12 2002 Elliot Lee <sopwith@redhat.com> 2.11n-9
  1542. - Update ctty3 patch to ignore SIGHUP while dropping controlling terminal
  1543. * Fri Mar 08 2002 Elliot Lee <sopwith@redhat.com> 2.11n-8
  1544. - Update ctty3 patch to drop controlling terminal before forking.
  1545. * Fri Mar 08 2002 Elliot Lee <sopwith@redhat.com> 2.11n-7
  1546. Fix various bugs:
  1547. - Add patch110 (skipraid) to properly skip devices that are part of a RAID array.
  1548. - Add patch111 (mkfsman) to update the mkfs man page's "SEE ALSO" section.
  1549. - remove README.cfdisk
  1550. - Include partx
  1551. - Fix 54741 and related bugs for good(hah!) with patch113 (ctty3)
  1552. * Wed Mar 06 2002 Elliot Lee <sopwith@redhat.com> 2.11n-6
  1553. - Put kbdrate in, add usermode dep.
  1554. * Tue Feb 26 2002 Elliot Lee <sopwith@redhat.com> 2.11n-5
  1555. - Fix #60363 (tweak raw.8 man page, make rawdevices.8 symlink).
  1556. * Mon Jan 28 2002 Bill Nottingham <notting@redhat.com> 2.11n-4
  1557. - remove kbdrate (fixes kbd conflict)
  1558. * Fri Dec 28 2001 Elliot Lee <sopwith@redhat.com> 2.11n-3
  1559. - Add util-linux-2.11n-ownerumount.patch (#56593)
  1560. - Add patch102 (util-linux-2.11n-colrm.patch) to fix #51887
  1561. - Fix #53452 nits.
  1562. - Fix #56953 (remove tunelp on s390)
  1563. - Fix #56459, and in addition switch to using sed instead of perl.
  1564. - Fix #58471
  1565. - Fix #57300
  1566. - Fix #37436
  1567. - Fix #32132
  1568. * Wed Dec 26 2001 Elliot Lee <sopwith@redhat.com> 2.11n-1
  1569. - Update to 2.11n
  1570. - Merge mount/losetup back in.
  1571. * Tue Dec 04 2001 Elliot Lee <sopwith@redhat.com> 2.11f-17
  1572. - Add patch38 (util-linux-2.11f-ctty2.patch) to ignore SIGINT/SIGTERM/SIGQUIT in the parent, so that ^\ won't break things.
  1573. * Fri Nov 09 2001 Elliot Lee <sopwith@redhat.com> 2.11f-16
  1574. - Merge patches 36, 75, 76, and 77 into patch #37, to attempt resolve all the remaining issues with #54741.
  1575. * Wed Oct 24 2001 Florian La Roche <Florian.LaRoche@redhat.de>
  1576. - add nologin man-page for s390/s390x
  1577. * Wed Oct 24 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.11f-14
  1578. - Don't build kbdrate on s390/s390x
  1579. - Don't make the pivot_root.8 man page executable(!)
  1580. * Tue Oct 23 2001 Elliot Lee <sopwith@redhat.com> 2.11f-13
  1581. - Patch/idea #76 from HJL, fixes bug #54741 (race condition in login
  1582. acquisition of controlling terminal).
  1583. * Thu Oct 11 2001 Bill Nottingham <notting@redhat.com>
  1584. - fix permissions problem with vipw & shadow files, again (doh!)
  1585. * Tue Oct 09 2001 Erik Troan <ewt@redhat.com>
  1586. - added patch from Olaf Kirch to fix possible pwent structure overwriting
  1587. * Fri Sep 28 2001 Elliot Lee <sopwith@redhat.com> 2.11f-10
  1588. - fdisk patch from arjan
  1589. * Sun Aug 26 2001 Elliot Lee <sopwith@redhat.com> 2.11f-9
  1590. - Don't include cfdisk, since it appears to be an even bigger pile of junk than fdisk? :)
  1591. * Wed Aug 1 2001 Tim Powers <timp@redhat.com>
  1592. - don't require usermode
  1593. * Mon Jul 30 2001 Elliot Lee <sopwith@redhat.com> 2.11f-7
  1594. - Incorporate kbdrate back in.
  1595. * Mon Jul 30 2001 Bill Nottingham <notting@redhat.com>
  1596. - revert the patch that calls setsid() in login that we had reverted
  1597. locally but got integrated upstream (#46223)
  1598. * Tue Jul 24 2001 Florian La Roche <Florian.LaRoche@redhat.de>
  1599. - correct s390x patch
  1600. * Mon Jul 23 2001 Elliot Lee <sopwith@redhat.com>
  1601. - Add my megapatch (various bugs)
  1602. - Include pivot_root (#44828)
  1603. * Thu Jul 12 2001 Bill Nottingham <notting@redhat.com>
  1604. - make shadow files 0400, not 0600
  1605. * Wed Jul 11 2001 Bill Nottingham <notting@redhat.com>
  1606. - fix permissions problem with vipw & shadow files
  1607. * Mon Jun 18 2001 Florian La Roche <Florian.LaRoche@redhat.de>
  1608. - update to 2.11f, remove any merged patches
  1609. - add s390x patches for somewhat larger swap
  1610. * Thu Jun 14 2001 Erik Troan <ewt@redhat.com>
  1611. - added --verbose patch to mkcramfs; it's much quieter by default now
  1612. * Tue May 22 2001 Erik Troan <ewt@redhat.com>
  1613. - removed warning about starting partitions on cylinder 0 -- swap version2
  1614. makes it unnecessary
  1615. * Wed May 9 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.11b-2
  1616. - Fix up s390x support
  1617. * Mon May 7 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.11b-1
  1618. - Fix up login for real (a console session should be the controlling tty)
  1619. by reverting to 2.10s code (#36839, #36840, #39237)
  1620. - Add man page for agetty (#39287)
  1621. - 2.11b, while at it
  1622. * Fri Apr 27 2001 Preston Brown <pbrown@redhat.com> 2.11a-4
  1623. - /sbin/nologin from OpenBSD added.
  1624. * Fri Apr 20 2001 Bernhard Rosenkraenzer <bero@redhat.com> 2.11a-3
  1625. - Fix up login - exiting immediately even if the password is correct
  1626. is not exactly a nice feature.
  1627. - Make definite plans to kill people who update login without checking
  1628. if the new version works ;)
  1629. * Tue Apr 17 2001 Erik Troan <ewt@redhat.com>
  1630. - upgraded to 2.11a (kbdrate moved to kbd, among other things)
  1631. - turned off ALLOW_VCS_USE
  1632. - modified mkcramfs to not use a large number of file descriptors
  1633. - include mkfs.bfs
  1634. * Sun Apr 8 2001 Matt Wilson <msw@redhat.com>
  1635. - changed Requires: kernel >= 2.2.12-7 to Conflicts: kernel < 2.2.12-7
  1636. (fixes a initscripts -> util-linux -> kernel -> initscripts prereq loop)
  1637. * Tue Mar 20 2001 Matt Wilson <msw@redhat.com>
  1638. - patched mkcramfs to use the PAGE_SIZE from asm/page.h instead of hard
  1639. coding 4096 (fixes mkcramfs on alpha...)
  1640. * Mon Mar 19 2001 Matt Wilson <msw@redhat.com>
  1641. - added mkcramfs (from linux/scripts/mkcramfs)
  1642. * Mon Feb 26 2001 Tim Powers <timp@redhat.com>
  1643. - fixed bug #29131, where ipc.info didn't have an info dir entry,
  1644. added the dir entry to ipc.texi (Patch58)
  1645. * Fri Feb 23 2001 Preston Brown <pbrown@redhat.com>
  1646. - use lang finder script
  1647. - install info files
  1648. * Thu Feb 08 2001 Erik Troan <ewt@redhat.com>
  1649. - reverted login patch; seems to cause problems
  1650. - added agetty
  1651. * Wed Feb 07 2001 Erik Troan <ewt@redhat.com>
  1652. - updated kill man page
  1653. - added patch to fix vipw race
  1654. - updated vipw to edit /etc/shadow and /etc/gshadow, if appropriate
  1655. - added patch to disassociate login from tty, session, and pgrp
  1656. * Tue Feb 06 2001 Erik Troan <ewt@redhat.com>
  1657. - fixed problem w/ empty extended partitions
  1658. - added patch to fix the date in the more man page
  1659. - set OPT to pass optimization flags to make rather then RPM_OPT_FLAG
  1660. - fixed fdisk -l /Proc/partitions parsing
  1661. - updated to 2.10s
  1662. * Tue Jan 23 2001 Preston Brown <pbrown@redhat.com>
  1663. - danish translations added
  1664. * Mon Jan 15 2001 Nalin Dahyabhai <nalin@redhat.com>
  1665. - fix segfault in login in btmp patch (#24025)
  1666. * Mon Dec 11 2000 Oliver Paukstadt <oliver.paukstadt@millenux.com>
  1667. - ported to s390
  1668. * Wed Nov 01 2000 Florian La Roche <Florian.LaRoche@redhat.de>
  1669. - update to 2.10p
  1670. - update patch37 to newer fdisk version
  1671. * Mon Oct 9 2000 Jeff Johnson <jbj@redhat.com>
  1672. - update to 2.10o
  1673. - fdformat: fixed to work with kernel 2.4.0test6 (Marek Wojtowicz)
  1674. - login: not installed suid
  1675. - getopt: by default install aux files in /usr/share/misc
  1676. - update to 2.10n:
  1677. - added blockdev.8
  1678. - change to elvtune (andrea)
  1679. - fixed overrun in agetty (vii@penguinpowered.com)
  1680. - shutdown: prefer umounting by mount point (rgooch)
  1681. - fdisk: added plan9
  1682. - fdisk: remove empty links in chain of extended partitions
  1683. - hwclock: handle both /dev/rtc and /dev/efirtc (Bill Nottingham)
  1684. - script: added -f (flush) option (Ivan Schreter)
  1685. - script: added -q (quiet) option (Per Andreas Buer)
  1686. - getopt: updated to version 1.1.0 (Frodo Looijaard)
  1687. - Czech messages (Jiri Pavlovsky)
  1688. - login.1 man page had not /var/spool/mail path (#16998).
  1689. - sln.8 man page (but not executable) included (#10601).
  1690. - teach fdisk 0xde(Dell), 0xee(EFI GPT), 0xef(EFI FAT) partitions (#17610).
  1691. * Wed Aug 30 2000 Matt Wilson <msw@redhat.com>
  1692. - rebuild to cope with glibc locale binary incompatibility, again
  1693. * Mon Aug 14 2000 Jeff Johnson <jbj@redhat.com>
  1694. - setfdprm should open with O_WRONLY, not 3.
  1695. * Fri Aug 11 2000 Jeff Johnson <jbj@redhat.com>
  1696. - fdformat should open with O_WRONLY, not 3.
  1697. * Fri Jul 21 2000 Nalin Dahyabhai <nalin@redhat.com>
  1698. - make 'look' look in /usr/share/dict
  1699. * Fri Jul 21 2000 Bill Nottingham <notting@redhat.com>
  1700. - put /usr/local/sbin:/usr/local/bin in root's path
  1701. * Wed Jul 19 2000 Jakub Jelinek <jakub@redhat.com>
  1702. - rebuild to cope with glibc locale binary incompatibility
  1703. * Thu Jul 13 2000 Prospector <bugzilla@redhat.com>
  1704. - automatic rebuild
  1705. * Mon Jul 10 2000 Bill Nottingham <notting@redhat.com>
  1706. - enable hwclock to use /dev/efirtc on ia64 (gettext is fun. :( )
  1707. * Mon Jul 3 2000 Bill Nottingham <notting@redhat.com>
  1708. - move cfdisk to /usr/sbin, it depends on /usr stuff
  1709. - add rescuept
  1710. * Fri Jun 23 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1711. - point more at the correct path to vi (for "v"), Bug #10882
  1712. * Sun Jun 4 2000 Jeff Johnson <jbj@redhat.com>
  1713. - FHS packaging changes.
  1714. * Thu Jun 1 2000 Nalin Dahyabhai <nalin@redhat.com>
  1715. - modify PAM setup to use system-auth
  1716. * Mon May 1 2000 Bill Nottingham <notting@redhat.com>
  1717. - eek, where did login go? (specfile tweaks)
  1718. * Mon Apr 17 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1719. - 2.10k
  1720. - fix compilation with current glibc
  1721. * Tue Mar 21 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  1722. - 2.10h
  1723. * Tue Mar 7 2000 Jeff Johnson <jbj@redhat.com>
  1724. - rebuild for sparc baud rates > 38400.
  1725. * Sat Mar 4 2000 Matt Wilson <msw@redhat.com>
  1726. - use snprintf - not sprintf - when doing
  1727. sprintf ("%%s\n", _("Some string")) to avoid overflows and
  1728. segfaults.
  1729. * Mon Feb 21 2000 Jeff Johnson <jbj@redhat.com>
  1730. - raw control file was /dev/raw, now /dev/rawctl.
  1731. - raw access files were /dev/raw*, now /dev/raw/raw*.
  1732. * Thu Feb 17 2000 Erik Troan <ewt@redhat.com>
  1733. - -v argument to mkswap wasn't working
  1734. * Thu Feb 10 2000 Jakub Jelinek <jakub@redhat.com>
  1735. - Recognize 0xfd on Sun disklabels as RAID
  1736. * Tue Feb 8 2000 Bill Nottingham <notting@redhat.com>
  1737. - more lives in /bin, and was linked against /usr/lib/libnurses. Bad.
  1738. * Thu Feb 03 2000 Jakub Jelinek <jakub@redhat.com>
  1739. - update to 2.10f
  1740. - fix issues in the new realpath code, avoid leaking memory
  1741. * Tue Feb 01 2000 Cristian Gafton <gafton@redhat.com>
  1742. - rebuild to fix dependencies
  1743. - add NFSv3 patches
  1744. * Fri Jan 28 2000 Bill Nottingham <notting@redhat.com>
  1745. - don't require csh
  1746. * Mon Jan 24 2000 Nalin Dahyabhai <nalin@redhat.com>
  1747. - update to 2.10e
  1748. - add rename
  1749. * Thu Jan 20 2000 Jeff Johnson <jbj@redhat.com>
  1750. - strip newlines in logger input.
  1751. * Mon Jan 10 2000 Jeff Johnson <jbj@redhat.com>
  1752. - rebuild with correct ncurses libs.
  1753. * Tue Dec 7 1999 Matt Wilson <msw@redhat.com>
  1754. - updated to util-linux 2.10c
  1755. - deprecated IMAP login mail notification patch17
  1756. - deprecated raw patch22
  1757. - depricated readprofile patch24
  1758. * Tue Dec 7 1999 Bill Nottingham <notting@redhat.com>
  1759. - add patch for readprofile
  1760. * Thu Nov 18 1999 Michael K. Johnson <johnsonm@redhat.com>
  1761. - tunelp should come from util-linux
  1762. * Tue Nov 9 1999 Jakub Jelinek <jakub@redhat.com>
  1763. - kbdrate cannot use /dev/port on sparc.
  1764. * Wed Nov 3 1999 Jakub Jelinek <jakub@redhat.com>
  1765. - fix kbdrate on sparc.
  1766. * Wed Oct 27 1999 Bill Nottingham <notting@redhat.com>
  1767. - ship hwclock on alpha.
  1768. * Tue Oct 5 1999 Bill Nottingham <notting@redhat.com>
  1769. - don't ship symlinks to rdev if we don't ship rdev.
  1770. * Tue Sep 07 1999 Cristian Gafton <gafton@redhat.com>
  1771. - add rawIO support from sct
  1772. * Mon Aug 30 1999 Preston Brown <pbrown@redhat.com>
  1773. - don't display "new mail" message when the only piece of mail is from IMAP
  1774. * Fri Aug 27 1999 Michael K. Johnson <johnsonm@redhat.com>
  1775. - kbdrate is now a console program
  1776. * Thu Aug 26 1999 Jeff Johnson <jbj@redhat.com>
  1777. - hostid is now in sh-utils. On sparc, install hostid as sunhostid (#4581).
  1778. - update to 2.9w:
  1779. - Updated mount.8 (Yann Droneaud)
  1780. - Improved makefiles
  1781. - Fixed flaw in fdisk
  1782. * Tue Aug 10 1999 Jeff Johnson <jbj@redhat.com>
  1783. - tsort is now in textutils.
  1784. * Wed Aug 4 1999 Bill Nottingham <notting@redhat.com>
  1785. - turn off setuid bit on login. Again. :(
  1786. * Tue Aug 3 1999 Peter Jones, <pjones@redhat.com>
  1787. - hostid script for sparc (#3803).
  1788. * Tue Aug 03 1999 Christian 'Dr. Disk' Hechelmann <drdisk@tc-gruppe.de>
  1789. - added locale message catalogs to %%file
  1790. - added patch for non-root build
  1791. - vigr.8 and /usr/lib/getopt man-page was missing from file list
  1792. - /etc/fdprm really is a config file
  1793. * Fri Jul 23 1999 Jeff Johnson <jbj@redhat.com>
  1794. - update to 2.9v:
  1795. - cfdisk no longer believes the kernel's HDGETGEO
  1796. (and may be able to partition a 2 TB disk)
  1797. * Fri Jul 16 1999 Jeff Johnson <jbj@redhat.com>
  1798. - update to 2.9u:
  1799. - Czech more.help and messages (Jiri Pavlovsky)
  1800. - Japanese messages (Daisuke Yamashita)
  1801. - fdisk fix (Klaus G. Wagner)
  1802. - mount fix (Hirokazu Takahashi)
  1803. - agetty: enable hardware flow control (Thorsten Kranzkowski)
  1804. - minor cfdisk improvements
  1805. - fdisk no longer accepts a default device
  1806. - Makefile fix
  1807. * Tue Jul 6 1999 Jeff Johnson <jbj@redhat.com>
  1808. - update to 2.9t:
  1809. - national language support for hwclock
  1810. - Japanese messages (both by Daisuke Yamashita)
  1811. - German messages and some misc i18n fixes (Elrond)
  1812. - Czech messages (Jiri Pavlovsky)
  1813. - wall fixed for /dev/pts/xx ttys
  1814. - make last and wall use getutent() (Sascha Schumann)
  1815. [Maybe this is bad: last reading all of wtmp may be too slow.
  1816. Revert in case people complain.]
  1817. - documented UUID= and LABEL= in fstab.5
  1818. - added some partition types
  1819. - swapon: warn only if verbose
  1820. * Fri Jun 25 1999 Jeff Johnson <jbj@redhat.com>
  1821. - update to 2.9s.
  1822. * Sat May 29 1999 Jeff Johnson <jbj@redhat.com>
  1823. - fix mkswap sets incorrect bits on sparc64 (#3140).
  1824. * Thu Apr 15 1999 Jeff Johnson <jbj@redhat.com>
  1825. - on sparc64 random ioctls on clock interface cause kernel messages.
  1826. * Thu Apr 15 1999 Jeff Johnson <jbj@redhat.com>
  1827. - improved raid patch (H.J. Lu).
  1828. * Wed Apr 14 1999 Michael K. Johnson <johnsonm@redhat.com>
  1829. - added patch for smartraid controllers
  1830. * Sat Apr 10 1999 Cristian Gafton <gafton@redhat.com>
  1831. - fix logging problems caused by setproctitle and PAM interaction
  1832. (#2045)
  1833. * Wed Mar 31 1999 Jeff Johnson <jbj@redhat.com>
  1834. - include docs and examples for sfdisk (#1164)
  1835. * Mon Mar 29 1999 Matt Wilson <msw@redhat.com>
  1836. - rtc is not working properly on alpha, we can't use hwclock yet.
  1837. * Fri Mar 26 1999 Cristian Gafton <gafton@redhat.com>
  1838. - add patch to make mkswap more 64 bit friendly... Patch from
  1839. eranian@hpl.hp.com (ahem!)
  1840. * Thu Mar 25 1999 Jeff Johnson <jbj@redhat.com>
  1841. - include sfdisk (#1164)
  1842. - fix write (#1784)
  1843. - use positive logic in spec file (%%ifarch rather than %ifnarch).
  1844. - (re)-use 1st matching utmp slot if search by mypid not found.
  1845. - update to 2.9o
  1846. - lastb wants bad logins in wtmp clone /var/run/btmp (#884)
  1847. * Thu Mar 25 1999 Jakub Jelinek <jj@ultra.linux.cz>
  1848. - if hwclock is to be compiled on sparc,
  1849. it must actually work. Also, it should obsolete
  1850. clock, otherwise it clashes.
  1851. - limit the swap size in mkswap for 2.2.1+ kernels
  1852. by the actual maximum size kernel can handle.
  1853. - fix kbdrate on sparc, patch by J. S. Connell
  1854. <ankh@canuck.gen.nz>
  1855. * Wed Mar 24 1999 Matt Wilson <msw@redhat.com>
  1856. - added pam_console back into pam.d/login
  1857. * Tue Mar 23 1999 Matt Wilson <msw@redhat.com>
  1858. - updated to 2.9i
  1859. - added hwclock for sparcs and alpha
  1860. * Mon Mar 22 1999 Erik Troan <ewt@redhat.com>
  1861. - added vigr to file list
  1862. * Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
  1863. - auto rebuild in the new build environment (release 12)
  1864. * Thu Mar 18 1999 Cristian Gafton <gafton@redhat.com>
  1865. - remove most of the ifnarch arm stuff
  1866. * Mon Mar 15 1999 Michael Johnson <johnsonm@redhat.com>
  1867. - added pam_console.so to /etc/pam.d/login
  1868. * Thu Feb 4 1999 Michael K. Johnson <johnsonm@redhat.com>
  1869. - .perms patch to login to make it retain root in parent process
  1870. for pam_close_session to work correctly
  1871. * Tue Jan 12 1999 Jeff Johnson <jbj@redhat.com>
  1872. - strip fdisk in buildroot correctly (#718)
  1873. * Mon Jan 11 1999 Cristian Gafton <gafton@redhat.com>
  1874. - have fdisk compiled on sparc and arm
  1875. * Mon Jan 11 1999 Erik Troan <ewt@redhat.com>
  1876. - added beos partition type to fdisk
  1877. * Wed Dec 30 1998 Cristian Gafton <gafton@redhat.com>
  1878. - incorporate fdisk on all arches
  1879. * Sat Dec 5 1998 Jeff Johnson <jbj@redhat.com>
  1880. - restore PAM functionality at end of login (Bug #201)
  1881. * Thu Dec 03 1998 Cristian Gafton <gafton@redhat.com>
  1882. - patch top build on the arm without PAM and related utilities, for now.
  1883. - build hwclock only on intel
  1884. * Wed Nov 18 1998 Cristian Gafton <gafton@redhat.com>
  1885. - upgraded to version 2.9
  1886. * Thu Oct 29 1998 Bill Nottingham <notting@redhat.com>
  1887. - build for Raw Hide (slang-1.2.2)
  1888. - patch kbdrate wackiness so it builds with egcs
  1889. * Tue Oct 13 1998 Erik Troan <ewt@redhat.com>
  1890. - patched more to use termcap
  1891. * Mon Oct 12 1998 Erik Troan <ewt@redhat.com>
  1892. - added warning about alpha/bsd label starting cylinder
  1893. * Mon Sep 21 1998 Erik Troan <ewt@redhat.com>
  1894. - use sigsetjmp/siglongjmp in more rather then sig'less versions
  1895. * Fri Sep 11 1998 Jeff Johnson <jbj@redhat.com>
  1896. - explicit attrs for setuid/setgid programs
  1897. * Thu Aug 27 1998 Cristian Gafton <gafton@redhat.com>
  1898. - sln is now included in glibc
  1899. * Sun Aug 23 1998 Jeff Johnson <jbj@redhat.com>
  1900. - add cbm1581 floppy definitions (problem #787)
  1901. * Mon Jun 29 1998 Jeff Johnson <jbj@redhat.com>
  1902. - remove /etc/nologin at end of shutdown/halt.
  1903. * Fri Jun 19 1998 Jeff Johnson <jbj@redhat.com>
  1904. - add mount/losetup.
  1905. * Thu Jun 18 1998 Jeff Johnson <jbj@redhat.com>
  1906. - update to 2.8 with 2.8b clean up. hostid now defunct?
  1907. * Mon Jun 01 1998 David S. Miller <davem@dm.cobaltmicro.com>
  1908. - "more" now works properly on sparc
  1909. * Sat May 02 1998 Jeff Johnson <jbj@redhat.com>
  1910. - Fix "fdisk -l" fault on mounted cdrom. (prob #513)
  1911. * Fri Apr 24 1998 Prospector System <bugs@redhat.com>
  1912. - translations modified for de, fr, tr
  1913. * Sat Apr 11 1998 Cristian Gafton <gafton@redhat.com>
  1914. - manhattan rebuild
  1915. * Mon Dec 29 1997 Erik Troan <ewt@redhat.com>
  1916. - more didn't suspend properly on glibc
  1917. - use proper tc*() calls rather then ioctl's
  1918. * Sun Dec 21 1997 Cristian Gafton <gafton@redhat.com>
  1919. - fixed a security problem in chfn and chsh accepting too
  1920. long gecos fields
  1921. * Fri Dec 19 1997 Mike Wangsmo <wanger@redhat.com>
  1922. - removed "." from default path
  1923. * Tue Dec 02 1997 Cristian Gafton <gafton@redhat.com>
  1924. - added (again) the vipw patch
  1925. * Wed Oct 22 1997 Michael Fulbright <msf@redhat.com>
  1926. - minor cleanups for glibc 2.1
  1927. * Fri Oct 17 1997 Michael Fulbright <msf@redhat.com>
  1928. - added vfat32 filesystem type to list recognized by fdisk
  1929. * Fri Oct 10 1997 Erik Troan <ewt@redhat.com>
  1930. - don't build clock on the alpha
  1931. - don't install chkdupexe
  1932. * Thu Oct 02 1997 Michael K. Johnson <johnsonm@redhat.com>
  1933. - Update to new pam standard.
  1934. - BuildRoot.
  1935. * Thu Sep 25 1997 Cristian Gafton <gafton@redhat.com>
  1936. - added rootok and setproctitle patches
  1937. - updated pam config files for chfn and chsh
  1938. * Tue Sep 02 1997 Erik Troan <ewt@redhat.com>
  1939. - updated MCONFIG to automatically determine the architecture
  1940. - added glibc header hacks to fdisk code
  1941. - rdev is only available on the intel
  1942. * Fri Jul 18 1997 Erik Troan <ewt@redhat.com>
  1943. - update to util-linux 2.7, fixed login problems
  1944. * Wed Jun 25 1997 Erik Troan <ewt@redhat.com>
  1945. - Merged Red Hat changes into main util-linux source, updated package to
  1946. development util-linux (nearly 2.7).
  1947. * Tue Apr 22 1997 Michael K. Johnson <johnsonm@redhat.com>
  1948. - LOG_AUTH --> LOG_AUTHPRIV in login and shutdown
  1949. * Mon Mar 03 1997 Michael K. Johnson <johnsonm@redhat.com>
  1950. - Moved to new pam and from pam.conf to pam.d
  1951. * Tue Feb 25 1997 Michael K. Johnson <johnsonm@redhat.com>
  1952. - pam.patch differentiated between different kinds of bad logins.
  1953. In particular, "user does not exist" and "bad password" were treated
  1954. differently. This was a minor security hole.