1
0
mirror of https://git.yoctoproject.org/poky synced 2026-06-09 15:50:16 +00:00
Files
Samuel Ortiz 4a91a284b5 eee-acpi-scripts: Initial commit
eeePC specific ACPI hooks.


git-svn-id: https://svn.o-hand.com/repos/poky/trunk@5272 311d38ba-8fff-0310-9ca6-ca027cbcb966
2008-09-25 14:58:13 +00:00

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
}