Package: eeepc-acpi-scripts
Version: 1.1.7
Severity: normal

As in subject, when I start the PC with Bluetooth turned off, it seems 
impossible manage she-engine.

I attach:
- /etc/default/eeepc-acpi-scripts
- /etc/acpi/actions/hotkey.sh

Hi and thanks in advance,
Domenico


-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-trunk-686 (SMP w/2 CPU cores)
Locale: LANG=it_IT.UTF-8, LC_CTYPE=it_IT.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages eeepc-acpi-scripts depends on:
ii  acpi-support-base             0.132-1    scripts for handling base ACPI eve
ii  acpid                         1:2.0.1-1  Advanced Configuration and Power I
ii  pm-utils                      1.2.6.1-3  utilities and scripts for power ma
ii  rfkill                        0.3-1      tool for enabling and disabling wi

Versions of packages eeepc-acpi-scripts recommends:
ii  alsa-utils                    1.0.21-1   ALSA utilities

Versions of packages eeepc-acpi-scripts suggests:
pn  aosd-cat               <none>            (no description available)
pn  gnome-osd              <none>            (no description available)
ii  gsfonts-x11            0.21              Make Ghostscript fonts available t
ii  ttf-dejavu             2.30-2            Metapackage to pull in ttf-dejavu-
ii  ttf-freefont           20090104-5        Freefont Serif, Sans and Mono True
ii  ttf-liberation         1.05.2.20091019-4 Fonts with the same metrics as Tim
ii  ttf-mscorefonts-instal 3.0               Installer for Microsoft TrueType c

-- no debconf information

*** /etc/default/eeepc-acpi-scripts
# For a description of the available settings, see
# /usr/share/doc/eeepc-acpi-scripts/examples/eeepc-acpi-scripts.default.gz

ENABLE_OSD='no'
OSD_FONT='DejaVuSans 36'
ENABLE_OSD_BRIGHTNESS='no'
SOUND_LABEL=
SOUND_SWITCH=
SOUND_SWITCH_EXCLUSIVE=
SOUND_PREFER_MASTER=yes
SOUND_VOLUME_STEP=1.5
DETAILED_SOUND_INFO=no
VGA_ON='--auto'
LVDS_OFF='--off'
SUSPEND_METHOD=pm-suspend
SUSPEND_OPTIONS=--quirk-s3-bios
LOCK_SCREEN_ON_SUSPEND='yes'
LID_CLOSE_ACTION=
BLUETOOTH_FALLBACK_TO_HCITOOL='yes'
SOFTBTN1_ACTION='handle_blank_screen'
SOFTBTN2_ACTION='NONE'
SOFTBTN3_ACTION='handle_camera_toggle'
SOFTBTN4_ACTION='handle_bluetooth_toggle'
SOFTBTNSHE_ACTION='handle_shengine'
FnF_TOUCHPAD='handle_touchpad_toggle'
FnF_RESCHANGE='NONE'
FnF_BACKLIGHTOFF='handle_blank_screen'
FnF_VGATOGGLE='handle_vga_toggle'
FnF_TASKMGR='NONE'
FnF_MUTE='handle_mute_toggle'
FnF_VOLUMEDOWN='handle_volume_down'
FnF_VOLUMEUP='handle_volume_up'
PWR_CLOCK_AC=
PWR_CLOCK_BATTERY=
#DEFAULT_SHENGINE_CONFIG=manual
#SHENGINE_FORCE_ENABLE=0

*** /etc/acpi/actions/hotkey.sh
#!/bin/sh

# do nothing if package is removed
PKG=eeepc-acpi-scripts
FUNC_LIB=/usr/share/$PKG/functions.sh
DEFAULT=/etc/default/$PKG
[ -e "$FUNC_LIB" ] || exit 0

case $(runlevel) in
    *0|*6)
        exit 0
        ;;
esac

BACKLIGHT=/sys/class/backlight/eeepc/brightness
if [ -e "$DEFAULT" ]; then . "$DEFAULT"; fi
.. $FUNC_LIB

.. /etc/acpi/lib/notify.sh
code=$3
value=$(test "x$1" = x- && cat "$BACKLIGHT" || echo "0x$3")

# In case keys are doubly-reported as hotkey and something else.
# It's random (and irrelevant) which is seen first.
acpi=
acpiwrite=
ACPITEST=/lib/init/rw/eeepc-acpi-scripts.acpi-ignore
case "$code" in
    # Soft buttons 3 & 4 are special.
    # They're always reported as hotkeys (901, at least).
    # This will probably break when button events are added for these keys.
    0000001[cd])
        ;;
    *)
        if test -f "$ACPITEST"; then
            read acpi <"$ACPITEST"
        else
            acpiwrite=$(test "x$1" = x- && echo hotkey || echo -)
        fi
        test "$1" = "$acpi" && exit 0
        ;;
esac

seen_hotkey() { test "$acpi" = button; }

handle_mute_toggle() {
    /etc/acpi/actions/volume.sh toggle
}

handle_volume_up() {
    /etc/acpi/actions/volume.sh up
}

handle_volume_down() {
    /etc/acpi/actions/volume.sh down
}

show_wireless() {
    if /etc/acpi/actions/wireless.sh detect; then
        status=Off
    else
        status=On
    fi
    notify wireless "Wireless $status"
}

handle_blank_screen() {
    if [ -S /tmp/.X11-unix/X0 ]; then
        detect_x_display

        if [ -n "$XAUTHORITY" ]; then
            xset dpms force off
        fi
    fi
}

show_bluetooth() {
    if bluetooth_is_on; then
        notify bluetooth 'Bluetooth On'
    else
        notify bluetooth 'Bluetooth Off'
    fi
}

handle_bluetooth_toggle() {
    . /etc/acpi/lib/bluetooth.sh
    if [ -e "$BT_CTL" ] || [ "$BLUETOOTH_FALLBACK_TO_HCITOOL" = "yes" ]; then
        toggle_bluetooth
        show_bluetooth
    else
        notify error 'Bluetooth unavailable'
    fi
}

show_camera() {
    if camera_is_on; then
        notify camera 'Camera Enabled'
    else
        notify camera 'Camera Disabled'
    fi
}

handle_camera_toggle() {
    . /etc/acpi/lib/camera.sh
    if [ -e "$CAM_CTL" ]; then
        toggle_camera
        show_camera
    else
        notify error 'Camera unavailable'
    fi
}

show_brightness() {
    # final digit of ACPI code is brightness level in hex
    level=$(($value & 0xF))
    # convert hex digit to percent
    percent=$(((100 * $level + 8) / 15))
    notify brightness "Brightness $percent%" fast
}

handle_shengine() {
    . /etc/acpi/lib/shengine.sh
    handle_shengine "$@"
}

handle_touchpad_toggle() {
    . /etc/acpi/lib/touchpad.sh
    toggle_touchpad
    case "$?" in
        0)
            notify touchpad 'Touchpad on'
            ;;
        1)
            notify touchpad 'Touchpad off'
            ;;
    esac
}

handle_vga_toggle() {
    /etc/acpi/actions/vga-toggle.sh
}

handle_gsm_toggle() {
    /etc/acpi/actions/gsm.sh toggle
    if /etc/acpi/actions/gsm.sh detect; then
        notify gsm "GSM off"
    else
        notify gsm "GSM on"
    fi
}

# Handle events which we're handling differently on different modelsz
case $(cat /sys/class/dmi/id/product_name) in
    [79]*|1000H)
        case $code in
            ZOOM)
                code=0000001b # soft button 2
                ;;
        esac
        ;;
    *)
        case $code in
            ZOOM)
                code=00000038 # Fn-F4
                ;;
        esac
        ;;
esac

case $code in
    # Fn + key:
    # <700/900-series key>/<1000-series key> - function
    # "--" = not available

    # F1/F1 - suspend
    # (not a hotkey, not handled here)

    # F2/F2 - toggle wireless
    0000001[01]|WLAN)
        notify wireless 'Wireless ...'
        if grep -q '^H.*\brfkill\b' /proc/bus/input/devices; then
          :
        else
          /etc/acpi/actions/wireless.sh toggle
        fi
        show_wireless
        if ! /etc/acpi/actions/wireless.sh detect; then
            wakeup_wicd
        fi
        ;;

    # --/F3 - touchpad toggle
    00000037)
        if [ "${FnF_TOUCHPAD}" != 'NONE' ]; then
            ${FnF_TOUCHPAD:-handle_touchpad_toggle}
        fi
        ;;

    # --/F4 - resolution change
    00000038) # ZOOM
        if [ "${FnF_RESCHANGE}" != 'NONE' ]; then
            $FnF_RESCHANGE
        fi
        ;;

    # F3/F5 - decrease brightness
    # F4/F6 - increase brightness
    0000002?|BRTDN|BRTUP)
        # actual brightness change is handled in hardware
        if [ "x$ENABLE_OSD_BRIGHTNESS" != "xno" ]; then
          show_brightness
        fi
        ;;

    # --/F7 - backlight off
    00000016)
        if [ "${FnF_BACKLIGHTOFF}" != 'NONE' ]; then
            ${FnF_BACKLIGHTOFF:-handle_blank_screen}
        fi
        ;;

    # F5/F8 - toggle VGA
    0000003[012]|VMOD)
        if [ "${FnF_VGATOGGLE}" != 'NONE' ]; then
            ${FnF_VGATOGGLE:-handle_vga_toggle}
        fi
        ;;

    # F6/F9 - 'task manager' key
    00000012|PROG1)
        if [ "${FnF_TASKMGR:-NONE}" != 'NONE' ]; then
            $FnF_TASKMGR
        fi
        ;;

    # F7/F10 - mute/unmute speakers
    00000013|MUTE)
        if [ "${FnF_MUTE}" != 'NONE' ]; then
            ${FnF_MUTE:-handle_mute_toggle}
        fi
        ;;

    # F8/F11 - decrease volume
    00000014|VOLDN)
        if [ "${FnF_VOLUMEDOWN}" != 'NONE' ]; then
            ${FnF_VOLUMEDOWN:-handle_volume_down}
        fi
        ;;

    # F9/F12 - increase volume
    00000015|VOLUP)
        if [ "${FnF_VOLUMEUP}" != 'NONE' ]; then
            ${FnF_VOLUMEUP:-handle_volume_up}
        fi
        ;;

    # --/Space - SHE management
    # (ACPI event code not known)
    00000039)
    if [ "${FnF_Space}" != 'NONE' ]; then
        ${FnF_Space:-handle_shengine}
    fi
    ;;

    # Silver keys, left to right

    # Soft button 1
    0000001a|SCRNLCK)
        if [ "${SOFTBTN1_ACTION}" != 'NONE' ]; then
            ${SOFTBTN1_ACTION:-handle_blank_screen}
        fi
        ;;

    # Soft button 2
    0000001b) # ZOOM
        if [ "${SOFTBTN2_ACTION}" != 'NONE' ]; then
            ${SOFTBTN2_ACTION}
        fi
        ;;

    # Soft button 3
    0000001c)
        if [ "${SOFTBTN3_ACTION}" != 'NONE' ]; then
            ${SOFTBTN3_ACTION:-handle_camera_toggle}
        fi
        acpiwrite=
        ;;

    # Soft button 4
    0000001d)
        if [ "${SOFTBTN4_ACTION}" != 'NONE' ]; then
            ${SOFTBTN4_ACTION:-handle_bluetooth_toggle}
        fi
        acpiwrite=
        ;;

    # SHE button
    00000039)
        if [ "${SOFTBTNSHE_ACTION}" != 'NONE' ]; then
            ${SOFTBTNSHE_ACTION:-handle_shengine}
        fi
        acpiwrite=
        ;;

esac

test "$acpiwrite" = '' || echo "$acpiwrite" >"$ACPITEST"



_______________________________________________
Debian-eeepc-devel mailing list
[email protected]
http://lists.alioth.debian.org/mailman/listinfo/debian-eeepc-devel

Reply via email to