Your message dated Thu, 25 Feb 2010 15:34:59 +0000
with message-id <[email protected]>
and subject line Bug#566707: fixed in eeepc-acpi-scripts 1.1.10
has caused the Debian Bug report #566707,
regarding eeepc-acpi-scripts: SHE-ENGINE (eeepc 1000he) - It is impossibile to 
manage it with bt turned off at startup
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
566707: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=566707
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
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"



--- End Message ---
--- Begin Message ---
Source: eeepc-acpi-scripts
Source-Version: 1.1.10

We believe that the bug you reported is fixed in the latest version of
eeepc-acpi-scripts, which is due to be installed in the Debian FTP archive:

eeepc-acpi-scripts_1.1.10.dsc
  to main/e/eeepc-acpi-scripts/eeepc-acpi-scripts_1.1.10.dsc
eeepc-acpi-scripts_1.1.10.tar.gz
  to main/e/eeepc-acpi-scripts/eeepc-acpi-scripts_1.1.10.tar.gz
eeepc-acpi-scripts_1.1.10_all.deb
  to main/e/eeepc-acpi-scripts/eeepc-acpi-scripts_1.1.10_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Darren Salt <[email protected]> (supplier of updated 
eeepc-acpi-scripts package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.8
Date: Thu, 25 Feb 2010 15:11:25 +0000
Source: eeepc-acpi-scripts
Binary: eeepc-acpi-scripts
Architecture: source all
Version: 1.1.10
Distribution: unstable
Urgency: low
Maintainer: Debian Eee PC Team <[email protected]>
Changed-By: Darren Salt <[email protected]>
Description: 
 eeepc-acpi-scripts - Scripts to support suspend and hotkeys on the Asus Eee PC 
laptop
Closes: 566707
Changes: 
 eeepc-acpi-scripts (1.1.10) unstable; urgency=low
 .
   * Fn-Space and the S.H.E. button are the same, and only generate a hotkey
     event. Ensure that this isn't ignored. (Closes: #566707)
   * Bump standards version to 3.8.4; no changes needed.
Checksums-Sha1: 
 d6ebbb18b7034980d44fc60fb0b7760ed9ef6aa3 1147 eeepc-acpi-scripts_1.1.10.dsc
 70b48467a1df3dbca27edc52452da8c14f361dc2 24576 eeepc-acpi-scripts_1.1.10.tar.gz
 790d080ae3614f83a88816b62e3e81ff12588fd6 26812 
eeepc-acpi-scripts_1.1.10_all.deb
Checksums-Sha256: 
 f752c1082631011d6ecfed47743f443419c3af58731c4f4c8e3536b4e68bcdc7 1147 
eeepc-acpi-scripts_1.1.10.dsc
 14c1e640b0ee733453a2008127d38d85960e549aca4c31f2e069b7abe5a48e99 24576 
eeepc-acpi-scripts_1.1.10.tar.gz
 69dc86251862bb185c656678efd238fdef7a45f525f7642c2730d987d7893266 26812 
eeepc-acpi-scripts_1.1.10_all.deb
Files: 
 a11d9b1b34e8aadb906e4a04ff6aa2d1 1147 utils extra eeepc-acpi-scripts_1.1.10.dsc
 210fec5fa90c713e534726a73c3b73a8 24576 utils extra 
eeepc-acpi-scripts_1.1.10.tar.gz
 abe4c11fc760d693e112dffd02b88545 26812 utils extra 
eeepc-acpi-scripts_1.1.10_all.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.10 (GNU/Linux)

iD8DBQFLhpQtsBKtjPGfWZ8RAn2AAKCF0TkrGmf4GmUMLR82GtuO/aToYgCgwcY8
hx0ltN5JXalHVRcg06kmnX0=
=sMAS
-----END PGP SIGNATURE-----



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

Reply via email to