1
Security and Networking / 802.11g And Wpa?
« on: April 03, 2009, 06:50:10 pm »
you might want to look here http://projects.linuxtogo.org/projects/marvell8385/
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
snd-soc-corgi
rebooted.Master 85%
Master P MUTE
Sidetone 0%
Mic Boos MUTE
Playback None
Capture MUTE
ADC High MUTE
Input Mu Mic
Jack Fun Headphone
Output M UNMUTED
Output M MUTE
Speaker Off
Store DC MUTE
where #!/bin/sh
# display-brightness.sh
# simple script to set display-brightness for zaurus clamshell
# author: patrick steiner <[EMAIL PROTECTED]>
# modified by: Ian Munsie <[EMAIL PROTECTED]>
# modified by: Paul M "speculatrix" - for Spitz/Zubuntu
# version: 1.02 | 15/12/2008 21:48 GMT
STEP=5
MIN_BRIGHTNESS=2
DRIVER="`ls /sys/class/backlight/|head -n 1`"
BRIGHTNESS_FILE="/sys/class/backlight/$DRIVER/brightness"
BRIGHTNESS=`cat /sys/class/backlight/$DRIVER/actual_brightness`
# needed for 860 (at least)
MAX_BRIGHTNESS=`cat /sys/class/backlight/$DRIVER/max_brightness`
POWER_FILE="/sys/class/backlight/$DRIVER/bl_power"
POWER_ON=0
#POWER_OFF=1
if [ ! -n "$1" ]; then
echo "max / current"
echo "$MAX_BRIGHTNESS / $BRIGHTNESS"
elif [ "$1" = "up" ]; then
test -x /usr/bin/bl && bl on
echo $POWER_ON >> $POWER_FILE
if [ $BRIGHTNESS -lt $MAX_BRIGHTNESS ]; then
let BRIGHTNESS=$BRIGHTNESS+$STEP
if [ $BRIGHTNESS -ge $MAX_BRIGHTNESS ]; then
let BRIGHTNESS=$MAX_BRIGHTNESS
fi
echo $BRIGHTNESS >> $BRIGHTNESS_FILE
fi
elif [ "$1" = "down" ]; then
test -x /usr/bin/bl && bl on
echo $POWER_ON >> $POWER_FILE
if [ $BRIGHTNESS -gt $MIN_BRIGHTNESS ]; then
let BRIGHTNESS=$BRIGHTNESS-$STEP
if [ $BRIGHTNESS -le $MIN_BRIGHTNESS ]; then
let BRIGHTNESS=$MIN_BRIGHTNESS
fi
echo $BRIGHTNESS >> $BRIGHTNESS_FILE
fi
else
echo -e "\nUsage:\n\t `basename $0` [up | down]\n"
fi
issue 1: suspend happens after no user interaction EVEN if the power suppy IS plugged in.doh ! stupid stupid stupid, of course the Z was not going into suspend mode but simple terminal blanking (screensaver) !
Is there any way to set the machine to suspend if the unit is battery only powered ?
issue 2: using the metal power button on the side of the unit to resume from suspend wakes the Z for half a second and then resuspends repeatable ad infinitum.
Using the keyboard "home" power button is the only way to wake the zaurus completely.
Have you checked out this post? Sounds like someone did get this card working.
[div align=\"right\"][a href=\"index.php?act=findpost&pid=133239\"][{POST_SNAPBACK}][/a][/div]