diff options
Diffstat (limited to 'meta/packages/apmd/apmd-3.2.2')
-rw-r--r-- | meta/packages/apmd/apmd-3.2.2/apmd_proxy | 91 | ||||
-rw-r--r-- | meta/packages/apmd/apmd-3.2.2/apmd_proxy.conf | 16 | ||||
-rw-r--r-- | meta/packages/apmd/apmd-3.2.2/debian.patch | 54 | ||||
-rw-r--r-- | meta/packages/apmd/apmd-3.2.2/default | 8 | ||||
-rwxr-xr-x | meta/packages/apmd/apmd-3.2.2/init | 44 | ||||
-rw-r--r-- | meta/packages/apmd/apmd-3.2.2/workaround.patch | 55 | ||||
-rw-r--r-- | meta/packages/apmd/apmd-3.2.2/zaurus24.patch | 50 |
7 files changed, 318 insertions, 0 deletions
diff --git a/meta/packages/apmd/apmd-3.2.2/apmd_proxy b/meta/packages/apmd/apmd-3.2.2/apmd_proxy new file mode 100644 index 0000000000..c48ee4e5d5 --- /dev/null +++ b/meta/packages/apmd/apmd-3.2.2/apmd_proxy | |||
@@ -0,0 +1,91 @@ | |||
1 | #!/bin/sh | ||
2 | # | ||
3 | # apmd_proxy - program dispatcher for APM daemon | ||
4 | # | ||
5 | # Written by Craig Markwardt (craigm@lheamail.gsfc.nasa.gov) 21 May 1999 | ||
6 | # Modified for Debian by Avery Pennarun | ||
7 | # | ||
8 | # This shell script is called by the APM daemon (apmd) when a power | ||
9 | # management event occurs. Its first and second arguments describe the | ||
10 | # event. For example, apmd will call "apmd_proxy suspend system" just | ||
11 | # before the system is suspended. | ||
12 | # | ||
13 | # Here are the possible arguments: | ||
14 | # | ||
15 | # start - APM daemon has started | ||
16 | # stop - APM daemon is shutting down | ||
17 | # suspend critical - APM system indicates critical suspend (++) | ||
18 | # suspend system - APM system has requested suspend mode | ||
19 | # suspend user - User has requested suspend mode | ||
20 | # standby system - APM system has requested standby mode | ||
21 | # standby user - User has requested standby mode | ||
22 | # resume suspend - System has resumed from suspend mode | ||
23 | # resume standby - System has resumed from standby mode | ||
24 | # resume critical - System has resumed from critical suspend | ||
25 | # change battery - APM system reported low battery | ||
26 | # change power - APM system reported AC/battery change | ||
27 | # change time - APM system reported time change (*) | ||
28 | # change capability - APM system reported config. change (+) | ||
29 | # | ||
30 | # (*) - APM daemon may be configured to not call these sequences | ||
31 | # (+) - Available if APM kernel supports it. | ||
32 | # (++) - "suspend critical" is never passed to apmd from the kernel, | ||
33 | # so we will never see it here. Scripts that process "resume | ||
34 | # critical" events need to take this into account. | ||
35 | # | ||
36 | # It is the proxy script's responsibility to examine the APM status | ||
37 | # (via /proc/apm) or other status and to take appropriate actions. | ||
38 | # For example, the script might unmount network drives before the | ||
39 | # machine is suspended. | ||
40 | # | ||
41 | # In Debian, the usual way of adding functionality to the proxy is to | ||
42 | # add a script to /etc/apm/event.d. This script will be called by | ||
43 | # apmd_proxy (via run-parts) with the same arguments. | ||
44 | # | ||
45 | # If it is important that a certain set of script be run in a certain | ||
46 | # order on suspend and in a different order on resume, then put all | ||
47 | # the scripts in /etc/apm/scripts.d instead of /etc/apm/event.d and | ||
48 | # symlink to these from /etc/apm/suspend.d, /etc/apm/resume.d and | ||
49 | # /etc/apm/other.d using names whose lexicographical order is the same | ||
50 | # as the desired order of execution. | ||
51 | # | ||
52 | # If the kernel's APM driver supports it, apmd_proxy can return a non-zero | ||
53 | # exit status on suspend and standby events, indicating that the suspend | ||
54 | # or standby event should be rejected. | ||
55 | # | ||
56 | # ******************************************************************* | ||
57 | |||
58 | set -e | ||
59 | |||
60 | # The following doesn't yet work, because current kernels (up to at least | ||
61 | # 2.4.20) do not support rejection of APM events. Supporting this would | ||
62 | # require substantial modifications to the APM driver. We will re-enable | ||
63 | # this feature if the driver is ever modified. -- cph@debian.org | ||
64 | # | ||
65 | #SUSPEND_ON_AC=false | ||
66 | #[ -r /etc/apm/apmd_proxy.conf ] && . /etc/apm/apmd_proxy.conf | ||
67 | # | ||
68 | #if [ "${SUSPEND_ON_AC}" = "false" -a "${2}" = "system" ] \ | ||
69 | # && on_ac_power >/dev/null; then | ||
70 | # # Reject system suspends and standbys if we are on AC power | ||
71 | # exit 1 # Reject (NOTE kernel support must be enabled) | ||
72 | #fi | ||
73 | |||
74 | if [ "${1}" = "suspend" -o "${1}" = "standby" ]; then | ||
75 | run-parts -a "${1}" -a "${2}" /etc/apm/event.d | ||
76 | if [ -d /etc/apm/suspend.d ]; then | ||
77 | run-parts -a "${1}" -a "${2}" /etc/apm/suspend.d | ||
78 | fi | ||
79 | elif [ "${1}" = "resume" ]; then | ||
80 | if [ -d /etc/apm/resume.d ]; then | ||
81 | run-parts -a "${1}" -a "${2}" /etc/apm/resume.d | ||
82 | fi | ||
83 | run-parts -a "${1}" -a "${2}" /etc/apm/event.d | ||
84 | else | ||
85 | run-parts -a "${1}" -a "${2}" /etc/apm/event.d | ||
86 | if [ -d /etc/apm/other.d ]; then | ||
87 | run-parts -a "${1}" -a "${2}" /etc/apm/other.d | ||
88 | fi | ||
89 | fi | ||
90 | |||
91 | exit 0 | ||
diff --git a/meta/packages/apmd/apmd-3.2.2/apmd_proxy.conf b/meta/packages/apmd/apmd-3.2.2/apmd_proxy.conf new file mode 100644 index 0000000000..751145c522 --- /dev/null +++ b/meta/packages/apmd/apmd-3.2.2/apmd_proxy.conf | |||
@@ -0,0 +1,16 @@ | |||
1 | # /etc/apm/apmd_proxy.conf: configuration file for apmd. | ||
2 | # | ||
3 | # This file is managed by debconf when installing or reconfiguring the | ||
4 | # package. It is generated by merging the answers gathered by debconf | ||
5 | # into the template file "/usr/share/apmd/apmd_proxy.conf". | ||
6 | |||
7 | # The following doesn't yet work, because current kernels (up to at least | ||
8 | # 2.4.20) do not support rejection of APM events. Supporting this would | ||
9 | # require substantial modifications to the APM driver. We will re-enable | ||
10 | # this feature if the driver is ever modified. -- cph@debian.org | ||
11 | # | ||
12 | # Set the following to "false" if you want to reject system suspend or | ||
13 | # system standby requests when the computer is running on AC power. | ||
14 | # Otherwise set this to "true". Such requests are never rejected when | ||
15 | # the computer is running on battery power. | ||
16 | #SUSPEND_ON_AC=true | ||
diff --git a/meta/packages/apmd/apmd-3.2.2/debian.patch b/meta/packages/apmd/apmd-3.2.2/debian.patch new file mode 100644 index 0000000000..d49e524bbd --- /dev/null +++ b/meta/packages/apmd/apmd-3.2.2/debian.patch | |||
@@ -0,0 +1,54 @@ | |||
1 | --- apmd-3.2.2.orig/apmd.c | ||
2 | +++ apmd-3.2.2/apmd.c | ||
3 | @@ -343,7 +343,7 @@ | ||
4 | /* parent */ | ||
5 | int status, retval; | ||
6 | ssize_t len; | ||
7 | - time_t time_limit; | ||
8 | + time_t countdown; | ||
9 | |||
10 | if (pid < 0) { | ||
11 | /* Couldn't fork */ | ||
12 | @@ -356,8 +356,9 @@ | ||
13 | /* Capture the child's output, if any, but only until it terminates */ | ||
14 | close(fds[1]); | ||
15 | fcntl(fds[0], F_SETFL, O_RDONLY|O_NONBLOCK); | ||
16 | - time_limit = time(0) + proxy_timeout; | ||
17 | + countdown = proxy_timeout; | ||
18 | do { | ||
19 | + countdown -= 1; | ||
20 | while ((len = read(fds[0], line, sizeof(line)-1)) > 0) { | ||
21 | line[len] = 0; | ||
22 | APMD_SYSLOG(LOG_INFO, "+ %s", line); | ||
23 | @@ -372,16 +373,16 @@ | ||
24 | goto proxy_done; | ||
25 | } | ||
26 | |||
27 | - sleep(1); | ||
28 | + while (sleep(1) > 0) ; | ||
29 | } while ( | ||
30 | - (time(0) < time_limit) | ||
31 | + (countdown >= 0) | ||
32 | || (proxy_timeout < 0) | ||
33 | ); | ||
34 | |||
35 | APMD_SYSLOG(LOG_NOTICE, "Proxy has been running more than %d seconds; killing it", proxy_timeout); | ||
36 | |||
37 | kill(pid, SIGTERM); | ||
38 | - time_limit = time(0) + 5; | ||
39 | + countdown = 5; | ||
40 | do { | ||
41 | retval = waitpid(pid, &status, WNOHANG); | ||
42 | if (retval == pid) | ||
43 | @@ -392,9 +393,9 @@ | ||
44 | goto proxy_done; | ||
45 | } | ||
46 | |||
47 | - sleep(1); | ||
48 | + while (sleep(1) > 0) ; | ||
49 | |||
50 | - } while (time(0) < time_limit); | ||
51 | + } while (countdown >= 0); | ||
52 | |||
53 | kill(pid, SIGKILL); | ||
54 | status = __W_EXITCODE(0, SIGKILL); | ||
diff --git a/meta/packages/apmd/apmd-3.2.2/default b/meta/packages/apmd/apmd-3.2.2/default new file mode 100644 index 0000000000..4b7965abf8 --- /dev/null +++ b/meta/packages/apmd/apmd-3.2.2/default | |||
@@ -0,0 +1,8 @@ | |||
1 | # | ||
2 | # Default for /etc/init.d/apmd | ||
3 | # | ||
4 | |||
5 | # As apmd can be called with arguments, we use the following variable | ||
6 | # to store them, e.g., APMD="-w 5 -p 2". | ||
7 | # See the manual page apmd(8) for details. | ||
8 | APMD="--proxy-timeout 30" | ||
diff --git a/meta/packages/apmd/apmd-3.2.2/init b/meta/packages/apmd/apmd-3.2.2/init new file mode 100755 index 0000000000..f1098a752d --- /dev/null +++ b/meta/packages/apmd/apmd-3.2.2/init | |||
@@ -0,0 +1,44 @@ | |||
1 | #!/bin/sh | ||
2 | # | ||
3 | # Start or stop the Advanced Power Management daemon. | ||
4 | # | ||
5 | # Written by Dirk Eddelbuettel <edd@debian.org> | ||
6 | # Greatly modified by Avery Pennarun <apenwarr@debian.org> | ||
7 | # | ||
8 | # I think this script is now free of bashisms. | ||
9 | # Please correct me if I'm wrong! | ||
10 | |||
11 | PATH=/bin:/usr/bin:/sbin:/usr/sbin | ||
12 | |||
13 | [ -f /etc/default/rcS ] && . /etc/default/rcS | ||
14 | [ -f /etc/default/apmd ] && . /etc/default/apmd | ||
15 | |||
16 | case "$1" in | ||
17 | start) | ||
18 | echo -n "Starting advanced power management daemon: " | ||
19 | start-stop-daemon -S -x /usr/sbin/apmd -- \ | ||
20 | -P /etc/apm/apmd_proxy $APMD | ||
21 | if [ $? = 0 ]; then | ||
22 | echo "apmd." | ||
23 | else | ||
24 | echo "(failed.)" | ||
25 | fi | ||
26 | ;; | ||
27 | stop) | ||
28 | echo -n "Stopping advanced power management daemon: " | ||
29 | start-stop-daemon -K \ | ||
30 | -x /usr/sbin/apmd | ||
31 | echo "apmd." | ||
32 | ;; | ||
33 | restart|force-reload) | ||
34 | $0 stop | ||
35 | $0 start | ||
36 | exit | ||
37 | ;; | ||
38 | *) | ||
39 | echo "Usage: /etc/init.d/apmd {start|stop|restart|force-reload}" | ||
40 | exit 1 | ||
41 | ;; | ||
42 | esac | ||
43 | |||
44 | exit 0 | ||
diff --git a/meta/packages/apmd/apmd-3.2.2/workaround.patch b/meta/packages/apmd/apmd-3.2.2/workaround.patch new file mode 100644 index 0000000000..19cf073115 --- /dev/null +++ b/meta/packages/apmd/apmd-3.2.2/workaround.patch | |||
@@ -0,0 +1,55 @@ | |||
1 | |||
2 | # | ||
3 | # Patch managed by http://www.holgerschurig.de/patcher.html | ||
4 | # | ||
5 | |||
6 | --- apmd-3.2.2.orig/apmd.c~workaround.patch | ||
7 | +++ apmd-3.2.2.orig/apmd.c | ||
8 | @@ -158,6 +158,7 @@ | ||
9 | static int quiet_bios_batlow; /* = 0 */ | ||
10 | static int verbosity = DEFAULT_VERBOSITY; | ||
11 | static int warn_level = 10; | ||
12 | +static int sleep_now = 0; /* ntp */ | ||
13 | |||
14 | static uid_t apmd_uid = 0; | ||
15 | static int apmd_fd = -1; | ||
16 | @@ -942,6 +943,12 @@ | ||
17 | exit(0); | ||
18 | } | ||
19 | |||
20 | +/* ntp */ | ||
21 | +static void sig_usr1(int sig) | ||
22 | +{ | ||
23 | + sleep_now = 1; | ||
24 | +} | ||
25 | + | ||
26 | int main(int argc, char **argv) | ||
27 | { | ||
28 | int c; | ||
29 | @@ -1151,6 +1158,8 @@ | ||
30 | openlog("apmd", (verbosity>=LOG_DEBUG)?LOG_PERROR:0 | LOG_PID | LOG_CONS, LOG_DAEMON); | ||
31 | |||
32 | /* Set up signal handler */ | ||
33 | + if (signal(SIGUSR1, SIG_IGN) != SIG_IGN) | ||
34 | + signal(SIGUSR1, sig_usr1); /* ntp */ | ||
35 | if (signal(SIGINT, SIG_IGN) != SIG_IGN) | ||
36 | signal(SIGINT, sig_handler); | ||
37 | if (signal(SIGQUIT, SIG_IGN) != SIG_IGN) | ||
38 | @@ -1230,9 +1239,16 @@ | ||
39 | |||
40 | for (;;) | ||
41 | { | ||
42 | - int num_events = apm_get_events(apmd_fd, check_interval, events, MAX_EVENTS); | ||
43 | + int num_events; | ||
44 | int e, a; | ||
45 | |||
46 | + /* ntp */ | ||
47 | + if (sleep_now) { | ||
48 | + sleep_now = 0; | ||
49 | + handle_event(APM_USER_SUSPEND, &apminfo); | ||
50 | + } | ||
51 | + | ||
52 | + num_events = apm_get_events(apmd_fd, check_interval, events, MAX_EVENTS); | ||
53 | apm_read(&apminfo); | ||
54 | |||
55 | if (num_events == 0) { | ||
diff --git a/meta/packages/apmd/apmd-3.2.2/zaurus24.patch b/meta/packages/apmd/apmd-3.2.2/zaurus24.patch new file mode 100644 index 0000000000..5df016ab77 --- /dev/null +++ b/meta/packages/apmd/apmd-3.2.2/zaurus24.patch | |||
@@ -0,0 +1,50 @@ | |||
1 | Index: apmd-3.2.2.orig/apm.c | ||
2 | =================================================================== | ||
3 | --- apmd-3.2.2.orig.orig/apm.c 2006-01-26 15:15:27.000000000 +0100 | ||
4 | +++ apmd-3.2.2.orig/apm.c 2006-01-26 17:50:14.000000000 +0100 | ||
5 | @@ -24,10 +24,12 @@ | ||
6 | #include <unistd.h> | ||
7 | #include <sys/types.h> | ||
8 | #include <sys/stat.h> | ||
9 | +#include <sys/utsname.h> | ||
10 | #include <fcntl.h> | ||
11 | #include <errno.h> | ||
12 | #include <time.h> | ||
13 | #include <getopt.h> | ||
14 | +#include <signal.h> | ||
15 | #include "apm.h" | ||
16 | |||
17 | static int verbose = 0; | ||
18 | @@ -43,6 +45,9 @@ | ||
19 | int fd; | ||
20 | time_t then, now; | ||
21 | int error; | ||
22 | + FILE* pid_file; | ||
23 | + int apmd_pid; | ||
24 | + struct utsname uname_ver; | ||
25 | |||
26 | fd = open(APM_DEVICE, O_WRONLY); | ||
27 | if (fd < 0) | ||
28 | @@ -54,6 +59,22 @@ | ||
29 | switch (mode) | ||
30 | { | ||
31 | case SUSPEND: | ||
32 | + if(0 == system("grep -i hardware /proc/cpuinfo|grep -i SHARP")) | ||
33 | + { | ||
34 | + uname(&uname_ver); | ||
35 | + | ||
36 | + if(0 == strncmp("2.4", uname_ver.release, 3)) | ||
37 | + { | ||
38 | + pid_file = fopen("/var/run/apmd.pid", "r"); | ||
39 | + if(pid_file) | ||
40 | + { | ||
41 | + fscanf(pid_file, "%d", &apmd_pid); | ||
42 | + fclose(pid_file); | ||
43 | + } | ||
44 | + | ||
45 | + kill(apmd_pid, SIGKILL); | ||
46 | + } | ||
47 | + } | ||
48 | error = apm_suspend(fd); | ||
49 | break; | ||
50 | case STANDBY: | ||