diff options
author | Paul Sokolovsky <pmiscml@gmail.com> | 2007-12-26 01:03:05 +0000 |
---|---|---|
committer | Paul Sokolovsky <pmiscml@gmail.com> | 2007-12-26 01:03:05 +0000 |
commit | 9409604e27ecd5fe20cecb0cf98ff602a5061856 (patch) | |
tree | 25d318e138ce2775f244e30875656fb5e2c13365 /packages/ipaq-sleep/ipaq-sleep_0.9.bb | |
parent | 697b9b92a5931ad9042a282ccc0297c595d46644 (diff) |
ipaq-sleep 0.9: Unbreak, so to say.
* If there's something to unbreak... Do following:
1. Support logging. Software without logging is now software,
but a random wreck.
2. Don't do off-by-one errors.
3. Don't bug on system every 2 seconds. Instead, do a select
on X connection to catch touchscreen events ASAP. This doesn't
work for keys though, there's larger latency. As for other checks,
do them once in 5s.
4. The whole thing must die. Soon.
* Mark configs propery for ipkg.
* Should fix #3540.
Diffstat (limited to 'packages/ipaq-sleep/ipaq-sleep_0.9.bb')
-rw-r--r-- | packages/ipaq-sleep/ipaq-sleep_0.9.bb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/packages/ipaq-sleep/ipaq-sleep_0.9.bb b/packages/ipaq-sleep/ipaq-sleep_0.9.bb index d41cacdf58..c7adbb057c 100644 --- a/packages/ipaq-sleep/ipaq-sleep_0.9.bb +++ b/packages/ipaq-sleep/ipaq-sleep_0.9.bb @@ -8,8 +8,10 @@ RDEPENDS = "apm" SRC_URI_append = " file://init-script-busybox.patch;patch=1" SRC_URI_append = " file://install-fix.patch;patch=1" +SRC_URI_append = " file://unbreak.patch;patch=1" -PR = "r1" +PR = "r2" DESCRIPTION = "Automatic sleep/suspend control daemon" +CONFFILES_${PN} += "${sysconfdir}/ipaq-sleep.conf" |