diff options
| author | Richard Purdie <richard@openedhand.com> | 2006-02-10 12:06:32 +0000 |
|---|---|---|
| committer | Richard Purdie <richard@openedhand.com> | 2006-02-10 12:06:32 +0000 |
| commit | 42dfbb2a0223ba5d091f053ad5401ecce6446e41 (patch) | |
| tree | 2636ad1c536f88f79517299d441be6584a58d892 /openembedded/packages/apmd/apmd-3.2.2 | |
| parent | dd1b4430b5d74ee7f3827ed6eed56a2bd5f99d42 (diff) | |
| download | poky-42dfbb2a0223ba5d091f053ad5401ecce6446e41.tar.gz | |
Sync more files with OE
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@271 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'openembedded/packages/apmd/apmd-3.2.2')
| -rw-r--r-- | openembedded/packages/apmd/apmd-3.2.2/zaurus24.patch | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/openembedded/packages/apmd/apmd-3.2.2/zaurus24.patch b/openembedded/packages/apmd/apmd-3.2.2/zaurus24.patch new file mode 100644 index 0000000000..5df016ab77 --- /dev/null +++ b/openembedded/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: | ||
