pm-utils-vl.spec 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528
  1. %global quirkdbver 20100619
  2. Summary: Power management utilities and scripts
  3. Summary(ja): 電源管理ユーティリティおよびスクリプト
  4. Name: pm-utils
  5. License: GPLv2
  6. Version: 1.4.1
  7. Release: 3%{?_dist_release}
  8. Group: System Environment/Base
  9. URL: http://pm-utils.freedesktop.org
  10. Source0: http://pm-utils.freedesktop.org/releases/pm-utils-%{version}.tar.gz
  11. Source1: http://pm-utils.freedesktop.org/releases/pm-quirks-%{quirkdbver}.tar.gz
  12. Source23: pm-utils-bugreport-info.sh
  13. Source100: 00tuxonice
  14. Source101: tuxonice.sysconfig
  15. Source110: suspend_modules
  16. # Use append instead of write for init_logfile (#660329)
  17. Patch0: pm-utils-1.4.1-init-logfile-append.patch
  18. # Disable SATA link power management by default, as it still causes
  19. # disk errors and corruptions on many hardware.
  20. Patch14: 14-disable-sata-alpm.patch
  21. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  22. BuildRequires: xmlto
  23. # for chvt
  24. Requires: kbd
  25. #Requires: radeontool
  26. # for hd apm settings
  27. Requires: hdparm
  28. %ifarch %{ix86} x86_64
  29. Requires: vbetool
  30. %endif
  31. Conflicts: apmd < 3.2.2
  32. %description
  33. The pm-utils package contains utilities and scripts useful for tasks related
  34. to power management.
  35. %package devel
  36. Summary: Files for development using %{name}
  37. Summary(ja): Files for development using %{name}
  38. Group: Development/Libraries
  39. Requires: %{name} = %{version}-%{release}
  40. # for /usr/share/pkgconfig
  41. Requires: pkgconfig
  42. %description devel
  43. This package contains the pkg-config files for development
  44. when building programs that use %{name}.
  45. %prep
  46. %setup -q
  47. tar -xzf %{SOURCE1}
  48. %patch0 -p1
  49. %patch14 -p1
  50. %build
  51. %configure
  52. make
  53. %install
  54. rm -rf %{buildroot}
  55. make install DESTDIR=$RPM_BUILD_ROOT
  56. install -D -m 0600 /dev/null $RPM_BUILD_ROOT%{_localstatedir}/log/pm-suspend.log
  57. mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/run/pm-utils/{locks,pm-suspend,pm-powersave}
  58. touch $RPM_BUILD_ROOT%{_localstatedir}/run/pm-utils/locks/{pm-suspend.lock,pm-powersave.lock}
  59. mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/run/pm-utils/{pm-suspend,pm-powersave}/storage
  60. install -D -m 0755 %{SOURCE23} $RPM_BUILD_ROOT%{_sbindir}/pm-utils-bugreport-info.sh
  61. # Install tuxonice staff
  62. install -D -m 0755 %{SOURCE100} %{buildroot}%{_libdir}/pm-utils/sleep.d/00tuxonice
  63. install -D -m 0644 %{SOURCE101} %{buildroot}%{_sysconfdir}/sysconfig/tuxonice
  64. # Install suspend_modules
  65. install -D -m 0644 %{SOURCE110} %{buildroot}%{_sysconfdir}/pm/config.d/suspend_modules
  66. # Install quirks
  67. cp -r video-quirks $RPM_BUILD_ROOT%{_libdir}/pm-utils
  68. # These break more than they helps, so drop them for now
  69. rm $RPM_BUILD_ROOT%{_libdir}/pm-utils/power.d/*
  70. # VINE: documents handled directly with %%doc directive in the %%files section
  71. rm -rf %{buildroot}%{_datadir}/doc/pm-utils
  72. %preun
  73. # Clean storage to prevent left-behind files. These files are dynamically
  74. # created in runtime (also with dynamic names), thus it is hard to track
  75. # them individually.
  76. rm -rf %{_localstatedir}/run/pm-utils/{pm-suspend,pm-powersave}/storage/*
  77. %clean
  78. rm -rf %{buildroot}
  79. %files
  80. %defattr(-,root,root,-)
  81. %doc AUTHORS COPYING ChangeLog NEWS README* TODO pm/HOWTO*
  82. %config(noreplace) %{_sysconfdir}/sysconfig/tuxonice
  83. %dir %{_sysconfdir}/pm/
  84. %dir %{_sysconfdir}/pm/config.d
  85. %dir %{_sysconfdir}/pm/power.d
  86. %dir %{_sysconfdir}/pm/sleep.d
  87. %config(noreplace) %{_sysconfdir}/pm/config.d/suspend_modules
  88. %dir %{_libdir}/pm-utils/
  89. %{_libdir}/pm-utils/bin/
  90. %{_libdir}/pm-utils/defaults
  91. %{_libdir}/pm-utils/functions
  92. %{_libdir}/pm-utils/pm-functions
  93. %{_libdir}/pm-utils/module.d/*
  94. %{_libdir}/pm-utils/sleep.d/*
  95. %{_bindir}/on_ac_power
  96. %{_bindir}/pm-is-supported
  97. %{_sbindir}/pm-utils-bugreport-info.sh
  98. %{_sbindir}/pm-hibernate
  99. %{_sbindir}/pm-powersave
  100. %{_sbindir}/pm-suspend
  101. %{_sbindir}/pm-suspend-hybrid
  102. %{_mandir}/man1/*.1.gz
  103. %{_mandir}/man8/*.8.gz
  104. %{_localstatedir}/run/pm-utils/
  105. %{_libdir}/pm-utils/video-quirks
  106. # no logrotate needed, because only one run of pm-utils is stored
  107. # in the logfile
  108. %ghost %verify(not md5 size mtime) %{_localstatedir}/log/pm-suspend.log
  109. %files devel
  110. %defattr(-,root,root,-)
  111. %{_libdir}/pkgconfig/pm-utils.pc
  112. %changelog
  113. * Wed Jul 16 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.4.1-3
  114. - rebuild with VineSeed environment
  115. * Mon Apr 11 2011 Daiuske SUZUKI <daisuke@linux.or.jp> 1.4.1-2
  116. - add patch14 from ubuntu
  117. Disable SATA link power management by default, as it still
  118. causes disk errors and corruptions on many hardware.
  119. - add /etc/pm/config.d/suspend_modules
  120. - add SUSPEND_MODULES="xhci-hcd" to unload module on suspend.
  121. * Wed Mar 09 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 1.4.1-1
  122. - new upstream release
  123. * Sat Oct 02 2010 Shu KONNO <owa@bg.wakwak.com> 1.2.6.1-2
  124. - rebuilt with rpm-4.8.1 for pkg-config
  125. * Sun Jan 03 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.6.1-1
  126. - new upstream release
  127. * Sat May 9 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 1.2.5-2
  128. - don't own /usr/share/doc/pm-utils: use %%doc directive to handle documents
  129. - use %%{buildroot} instead of $RPM_BUILD_ROOT
  130. * Sat Apr 25 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.5-1
  131. - new upstream release
  132. * Sat Apr 11 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.4-5
  133. - add 00tuxonice to setup image_size_limit and enable_escape
  134. - add /etc/sysconfig/tuxonice
  135. * Fri Apr 03 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.4-4
  136. - remove 00tuxonice
  137. * Thu Mar 26 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.4-1
  138. - new upstream release
  139. * Wed Oct 15 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.2.1-3
  140. - add 00tuxonice to set tuxonice-userui on hibernate
  141. * Mon Oct 13 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.2.1-2
  142. - add Requires: vbetool
  143. * Sun Oct 12 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.2.2.1-1
  144. - initial build for Vine Linux
  145. * Thu Sep 11 2008 Richard Hughes <rhughes@redhat.com> - 1.2.0-1
  146. - Update to 1.2.0
  147. - The core hook-running machinery will now abort running hooks of one fails,
  148. and the front-end scripts will return a failure error code if hook-running
  149. was aborted.
  150. * Sun Jun 22 2008 Richard Hughes <rhughes@redhat.com> - 1.1.2.3-1
  151. - Update to 1.1.2.3
  152. * Fri Jun 20 2008 Till Maas <opensource@till.name> - 1.1.2.2-2
  153. - %%pre and %%post scriptlets should not be needed anymore, old
  154. config files should be already moved in every supported release
  155. and the selinux context for the logfile should be restored by
  156. rpm
  157. - remove pcitulils BR, it was needed for vbetool, which is in a
  158. separate package now
  159. - substitute %%{__rm} macros for uniform macro usage
  160. * Thu May 29 2008 Richard Hughes <rhughes@redhat.com> - 1.1.2.2-1
  161. - Update to 1.1.2.2
  162. * Wed May 28 2008 Richard Hughes <rhughes@redhat.com> - 1.1.2.1-2
  163. - Change BR from docbook-utils to xmlto
  164. * Wed May 28 2008 Richard Hughes <rhughes@redhat.com> - 1.1.2.1-1
  165. - Update to 1.1.2.1
  166. * Mon May 12 2008 Richard Hughes <rhughes@redhat.com> - 1.1.1-2
  167. - Add missing BR for docbook-utils
  168. * Mon May 12 2008 Richard Hughes <rhughes@redhat.com> - 1.1.1-1
  169. - Update to 1.1.1, and drop patches that no longer apply.
  170. * Wed Apr 30 2008 Richard Hughes <rhughes@redhat.com> - 1.1.0-9
  171. - Remove the usermode dep on the advice of Till Maas.
  172. * Wed Apr 30 2008 Richard Hughes <rhughes@redhat.com> - 1.1.0-8
  173. - Rip out all the consolehelper and PAM stuff - users are not meant to be
  174. running these tools directly and it's a massive change from upstream.
  175. * Fri Apr 18 2008 Peter Jones <pjones@redhat.com> - 1.1.0-7
  176. - Default to "shutdown" for hibernate unless it's unavailable.
  177. * Tue Apr 15 2008 Jesse Keating <jkeating@redhat.com> - 1.1.0-6
  178. - Don't error on post restorecon call (which can fail if selinux is disabled)
  179. * Mon Apr 14 2008 Till Maas <opensource till name> - 1.1.0-5
  180. - remove double %%dir %%{_libdir}/pm-utils
  181. - update pm-utils-99hd-apm-restore to work with current pm-utils release
  182. Red Hat Bugzilla: #442294
  183. - move config file for hd apm restore away from config.d, which is only used
  184. for pm-utils internal config anymore
  185. - own /var/run/pm-utils/ and create storage/locks subdirs (may be
  186. needed for selinux)
  187. - make sure an empty logfile is created after install (touch -a ...)
  188. - sort %%files
  189. - make Source0: an URL
  190. - remove Conflicts: bluez utils, all supported Fedora releases ship
  191. already a newer version
  192. - remove unused BR: hal-devel, dbus-devel, pkgconfig, docbook-utils
  193. * Tue Apr 8 2008 Richard Hughes <rhughes@redhat.com> - 1.1.0-4
  194. - Fix build on 64 bit machines - harder.
  195. * Tue Apr 8 2008 Richard Hughes <rhughes@redhat.com> - 1.1.0-3
  196. - Fix build on 64 bit machines.
  197. * Tue Apr 8 2008 Richard Hughes <rhughes@redhat.com> - 1.1.0-2
  198. - Actually do the build.
  199. * Mon Apr 7 2008 Matthias Clasen <mclasen@redhat.com> - 1.1.0-1
  200. - Update to 1.1.0
  201. - Add devel subpackage for the pc file
  202. * Thu Apr 03 2008 Adam Jackson <ajax@redhat.com> 0.99.4-16
  203. - x86_64 is not a macro, don't %%ifarch on it.
  204. * Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.99.4-15
  205. - Autorebuild for GCC 4.3
  206. * Fri Jan 11 2008 Till Maas <opensource till name> - 0.99.4-14
  207. - add pm-utils-bugreport-info.sh script to collect information for bugreports
  208. - require Hal (RH #428452)
  209. * Wed Jan 09 2008 Till Maas <opensource till name> - 0.99.4-13
  210. - update README to describe the current beheaviour of pm-utils
  211. * Tue Jan 08 2008 Till Maas <opensource till name> - 0.99.4-12
  212. - remove ExclusiveArch, because it contains all supported archs
  213. (in case an arch schould be excluded, please use ExcludeArch)
  214. - improve readability of usermode setup
  215. - remove pm-restart pm-shutdown from usermode setup, because
  216. there are no such binaries
  217. - list more files in %%files explicit to make it obvious when
  218. there are changes in the distributed package
  219. - add .conf suffix to oldconfig files
  220. * Tue Jan 08 2008 Till Maas <opensource till name> - 0.99.4-11
  221. - make it possible to specify the hibernate mode (RH #375701)
  222. * Wed Jan 02 2008 Till Maas <opensource till name> - 0.99.4-10
  223. - enhance hd-apm-restore and add a config file
  224. - fix source-definition for hd-apm-restore
  225. - add hook suffix for hook script
  226. * Wed Jan 02 2008 Till Maas <opensource till name> - 0.99.4-9
  227. - restore hd apm level (RH #382061)
  228. - Add hdparm requires for new hook
  229. * Mon Dec 31 2007 Till Maas <opensource till name> - 0.99.4-8
  230. - Add documentation to %%doc
  231. * Sun Dec 30 2007 Till Maas <opensource till name> - 0.99.4-7
  232. - fix some bugs (RH #302401)
  233. * Tue Nov 27 2007 Dennis Gilmore <dennis@ausil.us> - 0.99.4-6
  234. - add sparc archs to ExclusiveArch list
  235. * Wed Oct 10 2007 Till Maas <opensource till name> - 0.99.4-5
  236. - Require vbetool only for x86 archs (RH #325741)
  237. - add missing BR for docbook-utils
  238. * Thu Sep 20 2007 Till Maas <opensource till name> - 0.99.4-4
  239. - fix manpage cut and paste mistake (RH #286201)
  240. * Thu Sep 20 2007 Till Maas <opensource till name> - 0.99.4-3
  241. - remove unused patch (vidhooks)
  242. - add patch to keep logfile (RH #237840 (f7), #238068 (devel)),
  243. to keep selinux context
  244. - simplify spec
  245. - restore selinux context of logfile in %%post
  246. - use rpmmacros more often
  247. * Tue Sep 11 2007 Till Maas <opensource till name> - 0.99.4-2
  248. - Require vbetool not on ppc and ppc64
  249. * Mon Sep 10 2007 Peter Jones <pjones@redhat.com> - 0.99.4-1
  250. - Merge new upstream
  251. - remove pm/power.d/laptop-tools
  252. - add --quirk-reset-brightness (needed for the Fujitsu Lifebook S7110)
  253. * Sat Sep 08 2007 Till Maas <opensource till name> - 0.99.3-12
  254. - Adjust %%files to own /etc/pm/ and /usr/lib/pm-utils/ (#233906)
  255. - remove (C|CXX|F)FLAGS definitions, they are already in %%configure
  256. - remove Core in Summary tag
  257. - add URL for pm-utils
  258. - add %%{?arm} to ExclusiveArch (#245463)
  259. - remove vbetool and require it (it is a separate package now)
  260. - remove radeontool and require it (it is a separate package now)
  261. - Update License Tag
  262. - cleanup buildrequires
  263. - clear %%setup
  264. * Mon Aug 27 2007 Adam Jackson <ajax@redhat.com> 0.99.3-11
  265. - Install (not just build) vbetool and radeontool on x86_64 too
  266. - Explicitly list files under %%_sbindir, so they don't drop away again
  267. - Light spec cleanups
  268. * Thu Aug 16 2007 Phil Knirsch <pknirsch@redhat.com> - 0.99.3-10
  269. - License verification and update
  270. * Wed Jul 18 2007 Phil Knirsch <pknirsch@redhat.com> - 0.99.3-9
  271. - Fixed description to be distribution independant (#247366)
  272. * Thu Jun 07 2007 Peter Jones <pjones@redhat.com> - 0.99.3-8
  273. - Bump release and rebuild for newer buildsystem code
  274. * Tue Jun 05 2007 Phil Knirsch <pknirsch@redhat.com> - 0.99.3-7
  275. - Bump release and rebuild
  276. * Tue May 29 2007 Phil Knirsch <pknirsch@redhat.com> - 0.99.3-6
  277. - Fixed missing builds for vbetool and radeontool for some archs (#241469)
  278. - Fixed typo in functions where wrong variable was used (#241633)
  279. * Wed May 16 2007 Peter Jones <pjones@redhat.com> - 0.99.3-5
  280. - ... and create the directory the logfile goes in.
  281. * Wed May 16 2007 Peter Jones <pjones@redhat.com> - 0.99.3-4
  282. - Bump release to appease Koji.
  283. * Wed May 16 2007 Peter Jones <pjones@redhat.com> - 0.99.3-3
  284. - Create logfile in %%post and %%gost it.
  285. * Wed Apr 25 2007 Peter Jones <pjones@redhat.com> - 0.99.3-2
  286. - Get rid of bogus redirect on "vbetool post"
  287. - add zlib linkage for vbetool and radeontool
  288. * Mon Mar 26 2007 Peter Jones <pjones@redhat.com> - 0.99.3-1
  289. - update to 0.99.3
  290. - configure manually in the spec to avoid %%_lib as lib64
  291. * Tue Mar 13 2007 Peter Jones <pjones@redhat.com> - 0.99.2-1
  292. - update to 0.99.2
  293. * Fri Feb 2 2007 Peter Jones <pjones@redhat.com> - 0.99.1-1
  294. - Fix setsysfont hook to actually hit tty0, not the pty of the current task.
  295. * Tue Jan 30 2007 Jeremy Katz <katzj@redhat.com> - 0.19.1-6
  296. - build so that hooks run properly on resume; fix syntax error in
  297. functions-intel (pjones)
  298. * Fri Jan 26 2007 Phil Knirsch <pknirsch@redhat.com> - 0.19.1-5
  299. - Fixed problem with changes in 10NetworkManager hook (#224556)
  300. * Wed Jan 24 2007 Phil Knirsch <pknirsch@redhat.com> - 0.19.1-4
  301. - Start/stop correct services in 10NetworkManager hook (#215253)
  302. - Fixed check for /sys/power/disk and /sys/power/state (#214407)
  303. - Added proper error messages in case /sys/power/disk or /sys/power/state are
  304. missing (#215386)
  305. - Removed service calls and module load/unload for bluetooth hook (#213387)
  306. - Added hook file to restore the sysfont after resume (#215391)
  307. - Added the possibility to disable hibernate and suspend completely via the
  308. config file (#216459)
  309. - Symlinked the config file to /etc/sysconfig/power-management (#216459)
  310. - Fixed pm-powersave permission check bug (#222819)
  311. - Small specfile cleanups
  312. * Sun Oct 1 2006 Peter Jones <pjones@redhat.com> - 0.19.1-3
  313. - Disable bluetooth suspend/reusme hook by default; the kernel modules seem
  314. to support this correctly these days.
  315. * Thu Sep 28 2006 Peter Jones <pjones@redhat.com> - 0.19.1-2
  316. - Ignore emacs backup files in config directories (#185979)
  317. * Tue Aug 8 2006 Peter Jones <pjones@redhat.com> - 0.19.1-1
  318. - Hopefully fix Centrino ThinkPad suspend+resume
  319. - Hopefully fix Intel Mac Mini/MacBook suspend+resume
  320. * Mon Jul 31 2006 Jeremy Katz <katzj@redhat.com> - 0.19-3
  321. - doing the vbestate save/restore on intel video with the modesetting
  322. intel xorg driver is broken. so don't do it.
  323. * Tue Jul 18 2006 John (J5) Palmieri <johnp@redhat.com> - 0.19-2
  324. - requier a newer version of D-Bus and rebuild
  325. * Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 0.19-1.1
  326. - rebuild
  327. * Tue Jun 13 2006 Peter Jones <pjones@redhat.com> - 0.19-1
  328. - update from CVS
  329. - move pam and consolehelper stuff here.
  330. - move video hooks here since HAL isn't ready
  331. * Tue Apr 25 2006 Peter Jones <pjones@redhat.com> - 0.18-1
  332. - Make it work cross-distro
  333. * Mon Apr 17 2006 Peter Jones <pjones@redhat.com> - 0.17-1
  334. - add more helper functions
  335. - rework things that were forking an extra subshell
  336. - fix the suspend lock
  337. - work around bluetooth/usb suspend wackiness
  338. * Fri Mar 17 2006 Peter Jones <pjones@redhat.com> - 0.16-1
  339. - rework the difference between hibernate and suspend; get rid of PM_MODE
  340. - add 00clear script
  341. - move default_resume_kernel from "functions" to 01grub's hibernate section
  342. * Sat Mar 11 2006 Peter Jones <pjones@redhat.com> - 0.15-1
  343. - fix hibernate check in a way that doesn't break "sleep".
  344. * Fri Mar 10 2006 Peter Jones <pjones@redhat.com> - 0.14-1
  345. - fix hibernate check in /etc/pm/hooks/20video
  346. * Fri Mar 03 2006 Phil Knirsch <pknirsch@redhat.com> - 0.13-1
  347. - Revert last changes for ATI graphics chips as they seem to cause more
  348. problems than they solved.
  349. * Wed Mar 01 2006 Phil Knirsch <pknirsch@redhat.com> - 0.12-1
  350. - Use vbetool post instead of vbetool dpms on for ATI cards.
  351. * Tue Feb 28 2006 Jeremy Katz <katzj@redhat.com>
  352. - allow building on all x86 arches (#183175)
  353. * Tue Feb 28 2006 Jeremy Katz <katzj@redhat.com> - 0.11-1
  354. - fix display on resume with nvidia graphics
  355. - add infrastructure to tell what pm-util is running; don't resume
  356. video on return from hibernate as the BIOS has already re-initialized it
  357. * Fri Feb 24 2006 Phil Knirsch <pknirsch@redhat.com> - 0.10-1
  358. - Added missing pciutils-devel BuildRequires (#182566)
  359. - Fixed missing vbestata save/restore calls for video suspend/resume (#182167,
  360. #169494)
  361. - Renamed hook scripts to allow local pre and post inserts (#179421)
  362. - Added support for blinking led lights on Thinkpad Laptops during suspend
  363. (#179420)
  364. - Added pm-powersave script for powersaving via HAL (#169054)
  365. - Added symlinks for pm-shutdown and pm-restart (#165953)
  366. * Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 0.09-1.2
  367. - bump again for double-long bug on ppc(64)
  368. * Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 0.09-1.1
  369. - rebuilt for new gcc4.1 snapshot and glibc changes
  370. * Tue Jan 24 2006 Jeremy Katz <katzj@redhat.com> - 0.09-1
  371. - Remove button module on suspend
  372. - Set default kernel in grub to current one when hibernating
  373. so that resume works
  374. * Thu Dec 22 2005 Peter Jones <pjones@redhat.com> - 0.08-1
  375. - Fix scripts for new pciutils
  376. * Fri Dec 9 2005 Dave Jones <davej@redhat.com>
  377. - Update to latest vbetool (0.5-1)
  378. Now also built on x86-64 too.
  379. * Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
  380. - rebuilt
  381. * Thu Dec 01 2005 John (J5) Palmieri <johnp@redhat.com> - 0.07-3
  382. - rebuild for the new dbus
  383. * Wed Nov 30 2005 Peter Jones <pjones@redhat.com> - 0.07-2
  384. - restart ntpd in the background
  385. - switch terminals early so we don't wake the screen back up
  386. * Fri Nov 18 2005 Bill Nottingham <notting@redhat.com> - 0.06-3
  387. - nix that, wait for the kernel to settle down
  388. * Wed Nov 16 2005 Bill Nottingham <notting@redhat.com> - 0.06-2
  389. - fix LRMI usage in vbetool
  390. * Thu Nov 10 2005 Peter Jones <pjones@redhat.com> - 0.06-1
  391. - kill acpi_video_cmd calls in functions-ati
  392. - fix lcd_on in functions-ati
  393. * Fri Sep 30 2005 Bill Nottingham <notting@redhat.com> - 0.05-1
  394. - check for presence of various tools/files before using them (#169560, #196562)
  395. * Fri Aug 12 2005 Jeremy Katz <katzj@redhat.com> - 0.04-1
  396. - add pm-hibernate
  397. * Tue Jul 05 2005 Bill Nottingham <notting@redhat.com> - 0.03-1
  398. - fix path to video functions in video hook
  399. * Mon Jul 04 2005 Bill Nottingham <notting@redhat.com> - 0.02-1
  400. - add a pm-suspend (#155613)
  401. * Wed Apr 13 2005 Bill Nottingham <notting@redhat.com> - 0.01-1
  402. - initial version - package up vbetool, radeontool, new on_ac_power