mirror of
https://git.yoctoproject.org/poky
synced 2026-06-09 15:50:16 +00:00
4a91a284b5
eeePC specific ACPI hooks. git-svn-id: https://svn.o-hand.com/repos/poky/trunk@5272 311d38ba-8fff-0310-9ca6-ca027cbcb966
9 lines
236 B
Plaintext
9 lines
236 B
Plaintext
CheckPolicy() {
|
|
if pidof gnome-power-manager kpowersave > /dev/null ||
|
|
(pidof dcopserver > /dev/null && test -x /usr/bin/dcop && /usr/bin/dcop kded kded loadedModules | grep -q klaptopdaemon) ; then
|
|
echo 0;
|
|
else
|
|
echo 1;
|
|
fi
|
|
}
|