2007-01-15 23:50:50 +01:00
|
|
|
#
|
2007-07-05 00:32:31 +02:00
|
|
|
# spec file for package acpid (Version 1.0.6)
|
2007-01-15 23:50:50 +01:00
|
|
|
#
|
2008-02-28 01:48:08 +01:00
|
|
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
2007-01-15 23:50:50 +01:00
|
|
|
# This file and all modifications and additions to the pristine
|
|
|
|
# package are under the same license as the package itself.
|
|
|
|
#
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
|
|
|
# norootforbuild
|
|
|
|
|
2008-02-28 01:48:08 +01:00
|
|
|
|
2007-01-15 23:50:50 +01:00
|
|
|
Name: acpid
|
2008-02-28 01:48:08 +01:00
|
|
|
Url: http://acpid.sourceforge.net/
|
2007-07-05 00:32:31 +02:00
|
|
|
Version: 1.0.6
|
2008-02-28 01:48:08 +01:00
|
|
|
Release: 46
|
2007-01-15 23:50:50 +01:00
|
|
|
%define acpi_version 0.09
|
2007-07-05 00:32:31 +02:00
|
|
|
License: GPL v2 or later
|
2007-01-15 23:50:50 +01:00
|
|
|
Group: System/Daemons
|
2008-02-28 01:48:08 +01:00
|
|
|
AutoReqProv: on
|
2007-01-15 23:50:50 +01:00
|
|
|
PreReq: %insserv_prereq %fillup_prereq
|
|
|
|
Summary: Executes Actions at ACPI Events
|
|
|
|
Source: %{name}-%{version}.tar.gz
|
|
|
|
Patch: %{name}-%{version}.dif
|
|
|
|
Source1: acpi-%{acpi_version}.tar.bz2
|
|
|
|
Source2: rcacpid
|
|
|
|
Source3: README.SuSE
|
2007-08-09 17:37:20 +02:00
|
|
|
Source4: thinkpad_acpi.modprobe
|
2007-01-15 23:50:50 +01:00
|
|
|
Source5: events.default
|
|
|
|
Patch1: acpi_%{acpi_version}.dif
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
2008-02-28 01:48:08 +01:00
|
|
|
ExclusiveArch: %ix86 x86_64 ia64
|
2007-01-15 23:50:50 +01:00
|
|
|
|
|
|
|
%description
|
|
|
|
ACPID is a completely flexible, totally extensible daemon for
|
|
|
|
delivering ACPI events. It listens to a file (/proc/acpi/event) and,
|
|
|
|
when an event occurs, executes programs to handle the event. The start
|
|
|
|
script loads all needed modules.
|
|
|
|
|
|
|
|
Configure it in /etc/sysconfig/powermanagement.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Authors:
|
|
|
|
--------
|
|
|
|
Andrew Grover <andrew.grover@intel.com>
|
|
|
|
Tim Hockin <thockin@sun.com>
|
|
|
|
Cajus Pollmeier <pollmeier@gonicus.de>
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -b 0 -a 1
|
|
|
|
%patch
|
|
|
|
%patch1
|
|
|
|
pushd acpi-%{acpi_version}
|
|
|
|
popd
|
|
|
|
cp %{S:2} %{S:3} %{S:4} %{S:5} .
|
|
|
|
|
|
|
|
%build
|
|
|
|
make EXTRA_CFLAGS="$RPM_OPT_FLAGS -DUSE_SYSLOG"
|
|
|
|
pushd acpi-%{acpi_version}
|
|
|
|
ln -sf /usr/share/automake*/install-sh install-sh
|
|
|
|
./configure
|
2007-04-24 23:27:02 +02:00
|
|
|
make CFLAGS="$RPM_OPT_FLAGS"
|
2007-01-15 23:50:50 +01:00
|
|
|
popd
|
|
|
|
|
|
|
|
%install
|
|
|
|
make install INSTPREFIX=%{buildroot} SBINDIR=%{buildroot}/sbin
|
|
|
|
install -Dm 744 rcacpid %{buildroot}/etc/init.d/acpid
|
2007-08-09 17:37:20 +02:00
|
|
|
install -Dm 644 thinkpad_acpi.modprobe %{buildroot}/etc/modprobe.d/thinkpad_acpi
|
2007-01-15 23:50:50 +01:00
|
|
|
mkdir -p %{buildroot}/usr/sbin
|
|
|
|
ln -sf ../../etc/init.d/acpid %{buildroot}/usr/sbin/rcacpid
|
|
|
|
install -Dm 644 events.default %{buildroot}/etc/acpi/events/default
|
|
|
|
pushd acpi-%{acpi_version}
|
|
|
|
ln -sf /usr/share/automake*/mkinstalldirs mkinstalldirs
|
|
|
|
make prefix=%{buildroot}/usr install
|
|
|
|
install -Dm 644 acpi.1 %{buildroot}/%{_mandir}/man1/acpi.1
|
|
|
|
popd
|
2007-07-05 00:32:31 +02:00
|
|
|
# for the rpmlint fascists
|
|
|
|
mv samples examples
|
2007-06-05 00:44:31 +02:00
|
|
|
# keep the logfile
|
|
|
|
install -dm 755 %buildroot%_var/log
|
|
|
|
touch %buildroot%_var/log/acpid
|
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf %{buildroot}
|
2007-01-15 23:50:50 +01:00
|
|
|
|
|
|
|
%post
|
|
|
|
%{fillup_and_insserv -Y -f acpid}
|
|
|
|
|
|
|
|
%postun
|
|
|
|
%restart_on_update acpid
|
|
|
|
%{insserv_cleanup}
|
|
|
|
|
|
|
|
%preun
|
|
|
|
%stop_on_removal acpid
|
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
2007-03-29 15:28:12 +02:00
|
|
|
%dir /etc/modprobe.d
|
2007-01-15 23:50:50 +01:00
|
|
|
%dir /etc/acpi
|
|
|
|
%dir /etc/acpi/events
|
|
|
|
/etc/acpi/events/default
|
|
|
|
/etc/init.d/acpid
|
2007-08-09 17:37:20 +02:00
|
|
|
/etc/modprobe.d/thinkpad_acpi
|
2007-01-15 23:50:50 +01:00
|
|
|
/usr/sbin/rcacpid
|
|
|
|
/sbin/acpid
|
|
|
|
/usr/bin/acpi_listen
|
2007-07-05 00:32:31 +02:00
|
|
|
%doc README.SuSE README Changelog examples
|
2007-01-15 23:50:50 +01:00
|
|
|
/usr/share/man/man8/acpid.8.gz
|
|
|
|
/usr/share/man/man8/acpi_listen.8.gz
|
|
|
|
/usr/bin/acpi
|
|
|
|
/usr/share/man/man1/acpi.1.gz
|
2007-06-05 00:44:31 +02:00
|
|
|
%ghost %config(noreplace,missingok) %_var/log/acpid
|
2007-01-15 23:50:50 +01:00
|
|
|
|
2007-03-29 15:28:12 +02:00
|
|
|
%changelog
|
2008-02-28 01:48:08 +01:00
|
|
|
* Tue Feb 26 2008 thoenig@suse.de
|
|
|
|
- Drop hotkey masks for thinkpad_acpi.modprobe
|
|
|
|
* Tue Sep 11 2007 thoenig@suse.de
|
2007-09-11 18:05:29 +02:00
|
|
|
- Fix hotkey mask for thinkpad_acpi.modprobe (#308191)
|
2008-02-28 01:48:08 +01:00
|
|
|
* Wed Aug 08 2007 thoenig@suse.de
|
2007-08-09 17:37:20 +02:00
|
|
|
- remove loading of ACPI modules, they are now being loaded
|
|
|
|
automatically (#216564)
|
|
|
|
- rename ibm_acpi.modprobe to thinkpad_acpi.modprobe as the kernel
|
|
|
|
module was renamed (#297812)
|
2008-02-28 01:48:08 +01:00
|
|
|
* Mon Jul 30 2007 seife@suse.de
|
2007-07-30 20:37:11 +02:00
|
|
|
- fix "--skip-unsupported" warnings on module load (b.n.c #293758)
|
2008-02-28 01:48:08 +01:00
|
|
|
* Tue Jul 03 2007 seife@suse.de
|
2007-07-05 00:32:31 +02:00
|
|
|
- update to version 1.0.6
|
|
|
|
mostly our patches included upstream
|
|
|
|
- adjust init script to the new pcc-acpi module
|
2008-02-28 01:48:08 +01:00
|
|
|
* Tue Jun 19 2007 thoenig@suse.de
|
2007-06-20 01:12:19 +02:00
|
|
|
- Add $local_fs to Required-Start (b.n.c #285472)
|
2008-02-28 01:48:08 +01:00
|
|
|
* Mon Jun 04 2007 lrupp@suse.de
|
2007-06-05 00:44:31 +02:00
|
|
|
- clean builddir after build is finished
|
|
|
|
- own /var/log/acpid (#280469)
|
2008-02-28 01:48:08 +01:00
|
|
|
* Tue Apr 24 2007 trenn@suse.de
|
2007-04-24 23:27:02 +02:00
|
|
|
- compile some more files with rpm_opt flags
|
|
|
|
- remove/fix:
|
|
|
|
+E: acpid unknown-lsb-tag # X-UnitedLinux-Should-Start:
|
|
|
|
+E: acpid unknown-lsb-tag # X-UnitedLinux-Should-Stop:
|
2008-02-28 01:48:08 +01:00
|
|
|
* Tue Apr 10 2007 hmacht@suse.de
|
2007-04-12 17:00:02 +02:00
|
|
|
- add modules dock and bay to probed laptop modules
|
2008-02-28 01:48:08 +01:00
|
|
|
* Thu Mar 29 2007 rguenther@suse.de
|
2007-03-29 15:28:12 +02:00
|
|
|
- add /etc/modprobe.d directory
|
2008-02-28 01:48:08 +01:00
|
|
|
* Fri Nov 17 2006 hmacht@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- remove CPUFreq modules loading, acpid is not available on all
|
|
|
|
architectures. Move handling to proper place --> HAL init script
|
|
|
|
(novell bug 220682)
|
2008-02-28 01:48:08 +01:00
|
|
|
* Mon Nov 13 2006 hmacht@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- do not "fail" if there is no CPUFreq support, print descriptive
|
|
|
|
message instead (novell bug 219757)
|
2008-02-28 01:48:08 +01:00
|
|
|
* Wed Oct 18 2006 seife@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- unload asus_acpi on unsupported machines.
|
|
|
|
- load cpufreq_acpi after speedstep-smi module.
|
|
|
|
- load the cpufreq_conservative governor (bug 163767).
|
|
|
|
- ignore editor backup files for the event configuration.
|
|
|
|
- package the provided action script samples under documentation.
|
|
|
|
- cleanup the specfile %%prep section.
|
2008-02-28 01:48:08 +01:00
|
|
|
* Tue Oct 17 2006 hmacht@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- load CPUFreq modules before acpi modules, otherwise we would
|
|
|
|
exit without acpi support
|
2008-02-28 01:48:08 +01:00
|
|
|
* Tue Sep 12 2006 hmacht@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- load CPUFreq modules in acpid for now because they have to be
|
|
|
|
already loaded when HAL starts
|
2008-02-28 01:48:08 +01:00
|
|
|
* Thu Jun 01 2006 thoenig@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- rcacpid: do not probe unsupported modules if
|
|
|
|
LOAD_UNSUPPORTED_MODULES_AUTOMATICALLY is set to yes
|
|
|
|
(b.n.c #180654)
|
|
|
|
- rcacpid: be verbose about which modules are being probed or
|
|
|
|
loaded.
|
2008-02-28 01:48:08 +01:00
|
|
|
* Tue Feb 21 2006 rw@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- never try laptop modules on ia64 (bug #146291)
|
2008-02-28 01:48:08 +01:00
|
|
|
* Wed Feb 15 2006 thoenig@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- revert hotkey mask for IBM ACPI back to 0xffff (bug #150357)
|
|
|
|
- add documentation hints for IBM ACPI driver
|
2008-02-28 01:48:08 +01:00
|
|
|
* Fri Feb 10 2006 seife@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- do not try the hotkey modules on ia64 (bug #146291)
|
2008-02-28 01:48:08 +01:00
|
|
|
* Mon Feb 06 2006 seife@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- do not load ac and battery modules on ia64 (bug #140249)
|
|
|
|
- untangle the "suse-files.tar" packaging mess
|
|
|
|
- after a kernel update, rescan the laptop modules
|
2008-02-28 01:48:08 +01:00
|
|
|
* Wed Jan 25 2006 mls@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- converted neededforbuild to BuildRequires
|
2008-02-28 01:48:08 +01:00
|
|
|
* Thu Nov 24 2005 seife@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- move daemon from /usr/sbin to /sbin to remove the $remote_fs
|
|
|
|
dependency and start sooner
|
|
|
|
- log via syslog instead of using the own logfile mechanism
|
2008-02-28 01:48:08 +01:00
|
|
|
* Tue Oct 25 2005 thoenig@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- changed hotkey mask for ibm_acpi from 0xffff to 0xffef so that
|
|
|
|
the driver does not block Fn-F5 (switch Bluetooh on/off) on IBM
|
|
|
|
ThinkPads (closes #128088)
|
2008-02-28 01:48:08 +01:00
|
|
|
* Wed Oct 05 2005 dmueller@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- add norootforbuild
|
2008-02-28 01:48:08 +01:00
|
|
|
* Sat Sep 24 2005 seife@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- rework last patch, fix a memleak in addition to the fd leak.
|
2008-02-28 01:48:08 +01:00
|
|
|
* Fri Sep 23 2005 seife@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- fix filedescriptor leak on client disconnect (bug #117884)
|
2008-02-28 01:48:08 +01:00
|
|
|
* Thu Sep 08 2005 thoenig@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- fixed probing of laptop modules (closes #115819)
|
2008-02-28 01:48:08 +01:00
|
|
|
* Wed Sep 07 2005 thoenig@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- changed modprobe.d/ibm_acpi to be even more verbose (more Fn-Fxx
|
|
|
|
will be reported (see #115127 and closes re-opened #113625)
|
2008-02-28 01:48:08 +01:00
|
|
|
* Wed Aug 31 2005 ro@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- removed config-dist.sh (ExclusiveArch is already there)
|
2008-02-28 01:48:08 +01:00
|
|
|
* Tue Aug 30 2005 thoenig@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- added sony_acpi and pcc_acpi to be probed on first run (SUSE
|
|
|
|
feature request r6125)
|
2008-02-28 01:48:08 +01:00
|
|
|
* Mon Aug 29 2005 thoenig@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- fixed probe function of rcacpid
|
2008-02-28 01:48:08 +01:00
|
|
|
* Mon Aug 29 2005 thoenig@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- added install parameter for ibm_acpi to enable verbose output
|
|
|
|
of hotkey (#113625)
|
2008-02-28 01:48:08 +01:00
|
|
|
* Thu Aug 25 2005 thoenig@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- rcacpid now probes laptop modules once and will only
|
|
|
|
load those modules at a later point if modprobe succeeded.
|
2008-02-28 01:48:08 +01:00
|
|
|
* Wed Aug 10 2005 thoenig@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- added three modules to DEFAULT_ACPI_MODULES:
|
|
|
|
* asus_acpi
|
|
|
|
* ibm_acpi
|
|
|
|
* toshiba_acpi
|
|
|
|
- added $SYSCONFDIR/modprobe.d/ibm_acpi for ibm_acpi to load the
|
|
|
|
module with "experimental=1"
|
2008-02-28 01:48:08 +01:00
|
|
|
* Fri Aug 05 2005 seife@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- load ACPI modules in /etc/init.d/acpid.
|
2008-02-28 01:48:08 +01:00
|
|
|
* Fri Aug 05 2005 trenn@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- Activate acpid by default again (use -Y to force, was disabled
|
|
|
|
in old setups, but we need it urgently now)
|
|
|
|
- Deleted suse stuff (acpid_proxy,...), only use acpid to forward
|
|
|
|
acpi events to other apps/services.
|
|
|
|
- updated acpid (1.0.3 -> 1.0.4) acpi (0.07 -> 0.09)
|
|
|
|
- changed config to not process acpi events, just forward them
|
2008-02-28 01:48:08 +01:00
|
|
|
* Mon May 02 2005 mmj@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- Fix warning about chdir return value not being caught
|
2008-02-28 01:48:08 +01:00
|
|
|
* Mon Apr 04 2005 pth@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- Fix signed/unsigned warnings
|
2008-02-28 01:48:08 +01:00
|
|
|
* Thu Nov 25 2004 zoz@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- rcacpid status now reports service acpid as unused if acpid was
|
|
|
|
started from rcpowersaved (Bug 48432)
|
2008-02-28 01:48:08 +01:00
|
|
|
* Thu Nov 11 2004 zoz@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- added /var/lib/acpi with proper permissions to filelist. Further
|
|
|
|
acpid_proxy won't create that dir if missing. (Bug 47729)
|
2008-02-28 01:48:08 +01:00
|
|
|
* Mon Sep 06 2004 seife@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- clean up config file for sysconfig editor
|
2008-02-28 01:48:08 +01:00
|
|
|
* Thu Aug 26 2004 trenn@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- deleted debian stuff
|
2008-02-28 01:48:08 +01:00
|
|
|
* Fri Aug 13 2004 trenn@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- updated to acpid from 1.0.1 to version 1.0.3 and
|
|
|
|
acpi Version from 0.06 to 0.07
|
2008-02-28 01:48:08 +01:00
|
|
|
* Fri May 14 2004 trenn@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- P4 Hyperthreading patch from pth@suse (#39017)
|
2008-02-28 01:48:08 +01:00
|
|
|
* Tue Apr 06 2004 trenn@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- rcacpid stop does not return skipped anymore on none acpi systems
|
|
|
|
this prevented acpid to uninstall on these systems (#38508)
|
2008-02-28 01:48:08 +01:00
|
|
|
* Thu Mar 18 2004 seife@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- updated README.SuSE and default config (#36208)
|
2008-02-28 01:48:08 +01:00
|
|
|
* Wed Mar 03 2004 trenn@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- add %%restart_on_update and %%stop_on_removal in .spec file
|
2008-02-28 01:48:08 +01:00
|
|
|
* Tue Feb 24 2004 trenn@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- deleted ac_on_power, is now in powersave package
|
2008-02-28 01:48:08 +01:00
|
|
|
* Mon Feb 23 2004 trenn@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- deleted -y parameter in inserv, to not start by default
|
|
|
|
powersave gets confused otherwise, only one daemon is allowed
|
|
|
|
to access /proc/acpi/event
|
2008-02-28 01:48:08 +01:00
|
|
|
* Wed Nov 05 2003 olh@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- do not start the build if not required
|
2008-02-28 01:48:08 +01:00
|
|
|
* Mon Sep 22 2003 zoz@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- fixed naming of actions in acpid_proxy (Bug 31357)
|
|
|
|
- fixed metadata and description of actions in sysconfig template
|
|
|
|
(Bug 31357)
|
|
|
|
- fixed startscript to unload modules if requested (Bug 31357)
|
|
|
|
- set default action for lid closure to 'ignore', because 'throttle'
|
|
|
|
breaks some laptops (Bug 31529)
|
2008-02-28 01:48:08 +01:00
|
|
|
* Sun Sep 21 2003 ro@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- fix typo in sysconfig-file
|
2008-02-28 01:48:08 +01:00
|
|
|
* Thu Sep 18 2003 trenn@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- bug 30913 and 31265
|
|
|
|
lid state is now read out correctly (CLOSE->CLOSED)
|
|
|
|
corrected parts for throttling
|
|
|
|
action kde_term fixed (determine kde user)
|
|
|
|
action kde_logout additionally added
|
2008-02-28 01:48:08 +01:00
|
|
|
* Tue Sep 16 2003 trenn@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- bug 30399 -> lid read out of /proc/acpi/lid/... now
|
|
|
|
and changed frequency scaling from deprecated /acpi/processor
|
|
|
|
to cpufreqd
|
2008-02-28 01:48:08 +01:00
|
|
|
* Wed Sep 10 2003 kukuk@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- rcacpid: Fix return codes, fix try-restart, fix probe (don't
|
|
|
|
compare with non existing FOO config file), fix restart (restart
|
|
|
|
should honor modified sysconfig file).
|
2008-02-28 01:48:08 +01:00
|
|
|
* Tue Sep 02 2003 trenn@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- on_ac_adapter: more stable and
|
|
|
|
check for desktop
|
|
|
|
start acpid by default
|
2008-02-28 01:48:08 +01:00
|
|
|
* Thu Aug 28 2003 trenn@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- fixed bug in sysconfig.acpi template
|
2008-02-28 01:48:08 +01:00
|
|
|
* Thu Aug 28 2003 trenn@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- added on_ac_power
|
2008-02-28 01:48:08 +01:00
|
|
|
* Tue Aug 26 2003 trenn@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- added action tags for sysconfig file
|
2008-02-28 01:48:08 +01:00
|
|
|
* Thu Aug 14 2003 ro@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- added exclusivearch line to specfile
|
2008-02-28 01:48:08 +01:00
|
|
|
* Sun Jul 20 2003 zoz@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- Removed ACPI_MODULES_NOT_TO_LOAD from /etc/init.d/acpid and
|
|
|
|
/etc/sysconfig/powermanagement. now we use ACPI_MODULES instead.
|
|
|
|
This works also with 2.5/6 kernels and you may add one of the
|
|
|
|
modules asus_acpi or toshiba_acpi to this variable.
|
2008-02-28 01:48:08 +01:00
|
|
|
* Sat Mar 01 2003 zoz@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- fixed acpid: Did not call acpid_proxy with event information
|
|
|
|
- splitted ACPI_BUTTON_LID into ACPI_BUTTON_LID_OPEN and
|
|
|
|
ACPI_BUTTON_LID_CLOSE
|
|
|
|
- added some actions for button events to acpid_proxy
|
|
|
|
+ kde_term (terminate all KDE sessions)
|
|
|
|
+ wmaker_term (terminate all wmaker sessions)
|
|
|
|
+ standby (switches to S1. This may crash the system. Test it before!)
|
|
|
|
+ suspend (switches to S3 if kernel is 2.5 or newer)
|
|
|
|
+ hibernate (switches to S4 if kernel is 2.5 or newer
|
|
|
|
+ throttle (reduce processor performance, enable maximum processor throttlin
|
|
|
|
put disk into sleep state)
|
|
|
|
+ dethrottle (restore settings like before throttle)
|
|
|
|
- for proper throttling added ACPI_THROTTLED_DISK_TIMEOUT and
|
|
|
|
ACPI_THROTTLED_KUPDATED_INTERVAL
|
|
|
|
- provided some usefull information in README.SuSE
|
2008-02-28 01:48:08 +01:00
|
|
|
* Mon Feb 24 2003 zoz@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- enhanced sysconfig metadata and descriptions
|
|
|
|
- added ACPI_MODULES_NOT_TO_UNLOAD, because there are modules which
|
|
|
|
oops when unloaded
|
|
|
|
- added ACPI_BUTTON_SLEEP
|
|
|
|
- added some more actions for button events
|
2008-02-28 01:48:08 +01:00
|
|
|
* Sat Feb 22 2003 mmj@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- Add sysconfig metadata [#22676]
|
2008-02-28 01:48:08 +01:00
|
|
|
* Sat Feb 08 2003 zoz@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- added 'acpi': a tool providing battery and thermal information
|
|
|
|
(like apm in package apmd)
|
2008-02-28 01:48:08 +01:00
|
|
|
* Tue Sep 17 2002 ro@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- removed bogus self-provides
|
2008-02-28 01:48:08 +01:00
|
|
|
* Fri Sep 06 2002 zoz@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- added comments to sysconfig variables (Bug 18654)
|
|
|
|
- fixed specfile to fillup /etc/sysconfig/powermanagement properly
|
2008-02-28 01:48:08 +01:00
|
|
|
* Tue Aug 13 2002 zoz@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- added PreReq insserv_prereq fillup_prereq
|
2008-02-28 01:48:08 +01:00
|
|
|
* Tue Aug 06 2002 zoz@suse.de
|
2007-01-15 23:50:50 +01:00
|
|
|
- initial package: version 1.0.1
|
|
|
|
- added init script which loads acpi modules as well
|
|
|
|
- provided acpid_proxy (apmd like) which cares about all events
|