mirror of
https://git.yoctoproject.org/poky
synced 2026-05-01 15:32:12 +02:00
10 lines
200 B
Bash
10 lines
200 B
Bash
#!/bin/sh
|
|
|
|
if ( cat /proc/cpuinfo|grep -i hardware|grep -i SHARP ) && \
|
|
[ ".$@" = ".-s" -o ".$@" = ".--suspend" ]; then
|
|
killall -USR1 apmd || /usr/bin/apm.orig -s
|
|
else
|
|
/usr/bin/apm.orig "$@"
|
|
fi
|
|
|