From 49540898f9f6457636a85a452a9cb1d7bc253c66 Mon Sep 17 00:00:00 2001 From: Matthias Hentges Date: Tue, 5 Jun 2007 03:30:28 +0000 Subject: zaurusd: Fix a typo (?) in zaurus-mixer-callback, causing the speaker on spitz to always be turned off. This commit fixes output via speaker and headphones. Please review change on models != spitz as the problem could just as well have been caused by a driver bug. --- packages/zaurusd/files/zaurusd-mixer-callback.patch | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 packages/zaurusd/files/zaurusd-mixer-callback.patch (limited to 'packages/zaurusd/files') diff --git a/packages/zaurusd/files/zaurusd-mixer-callback.patch b/packages/zaurusd/files/zaurusd-mixer-callback.patch new file mode 100644 index 0000000000..7c9455d042 --- /dev/null +++ b/packages/zaurusd/files/zaurusd-mixer-callback.patch @@ -0,0 +1,11 @@ +--- zaurusd/scripts/zaurus-mixer-callback.in.orig 2007-06-05 03:15:30.000000000 +0000 ++++ zaurusd/scripts/zaurus-mixer-callback.in 2007-06-05 03:14:53.000000000 +0000 +@@ -16,7 +16,7 @@ + JACK="$1" + SPK="$2" + LEFT="true" +-RLPLAYBACK="false" ++RLPLAYBACK="true" + RLBYPASS="false" + + case $SPK in -- cgit v1.2.3 From 7351f1b47590c38ca8de2a3d4d80aadfb31eb43b Mon Sep 17 00:00:00 2001 From: Matthias Hentges Date: Wed, 6 Jun 2007 00:40:41 +0000 Subject: zaurusd: Add the bl-on/off-via-hinge scripts to zaurusd as the bl packages has been assimilated by gpe-conf --- packages/zaurusd/files/zaurus-hinge.bl-off | 10 ++++++++++ packages/zaurusd/files/zaurus-hinge.bl-on | 10 ++++++++++ 2 files changed, 20 insertions(+) create mode 100644 packages/zaurusd/files/zaurus-hinge.bl-off create mode 100644 packages/zaurusd/files/zaurus-hinge.bl-on (limited to 'packages/zaurusd/files') diff --git a/packages/zaurusd/files/zaurus-hinge.bl-off b/packages/zaurusd/files/zaurus-hinge.bl-off new file mode 100644 index 0000000000..888f90bfc5 --- /dev/null +++ b/packages/zaurusd/files/zaurus-hinge.bl-off @@ -0,0 +1,10 @@ +#! /bin/sh +# +# Copyright Matthias Hentges (c) 2006 +# License: GPL (see http://www.gnu.org/licenses/gpl.txt for a copy of the license) +# +# Filename: zaurus-hinge.bl-off +# Date: 04-Jun-06 + +test -z "${ZD_BINDIR}" && ZD_BINDIR="/usr/bin" +${ZD_BINDIR}/bl off diff --git a/packages/zaurusd/files/zaurus-hinge.bl-on b/packages/zaurusd/files/zaurus-hinge.bl-on new file mode 100644 index 0000000000..6d416ad8c4 --- /dev/null +++ b/packages/zaurusd/files/zaurus-hinge.bl-on @@ -0,0 +1,10 @@ +#! /bin/sh +# +# Copyright Matthias Hentges (c) 2006 +# License: GPL (see http://www.gnu.org/licenses/gpl.txt for a copy of the license) +# +# Filename: zaurus-hinge.bl-on +# Date: 04-Jun-06 + +test -z "${ZD_BINDIR}" && ZD_BINDIR="/usr/bin" +${ZD_BINDIR}/bl on -- cgit v1.2.3