util-linux-ng-vl.spec 68 KB

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