ALT Linux hardware support
 help / color / mirror / Atom feed
From: "Denis G. Samsonenko" <d.g.samsonenko@gmail.com>
To: hardware@lists.altlinux.org
Subject: Re: [Hardware] EeePC 1000H, acpi, powersaved, etc
Date: Wed, 19 Nov 2008 10:24:10 +0600
Message-ID: <957265820811182024o55c7b5e6heb5164a771fb73d0@mail.gmail.com> (raw)
In-Reply-To: <4921E16B.9010006@rambler.ru>

Привет!

18 ноября 2008 г. 3:26 Kharitonov A. Dmitry написал:
> В гите появились исправления

Попробовал новую версию.

Теперь нормально отрабатывает нажатие на верхние 4 кнопки: окошки
показывает, по-русски.

При нажатии на Fn+F2 переключает, картинок не кажет. Вообще картинки
показываются только для переключения яркости.

Монитор так и не гаснет по Fn+F7. Так же не переключает режимы по
Fn+F8 (внешний монитор подключил).

Если же вручную запускать скрипт /etc/acpi/eeepc_900-video.sh, то
переключение происходит, но только до 1024x768, хотя монитор позволяет
1280x1024.

$ xrandr -q
Screen 0: minimum 320 x 200, current 1024 x 600, maximum 1280 x 1280
VGA connected (normal left inverted right x axis y axis)
   1280x1024      60.0 +   75.0     59.9
   1152x864       75.0
   1024x768       74.9     75.1     60.0
   832x624        74.6
   800x600        75.0     74.9     60.3
   640x480        75.0     74.8     60.0
   720x400        70.1
LVDS connected 1024x600+0+0 (normal left inverted right x axis y axis)
220mm x 129mm
   1024x600       60.0*+   65.0
   800x600        60.3
   640x480        59.9


$ sudo -H sh -xv /etc/acpi/eeepc_900-video.sh
#!/bin/sh
#eeepc_900-video.sh
# set -e
# exec > /dev/null 2> /dev/null

# DISPLAY=
who | grep -q ':0' && [ 7 == "$(fgconsole)" ] && export DISPLAY=':0'
+ who
+ grep -q :0
fgconsole
++ fgconsole
+ '[' 7 == 7 ']'
+ export DISPLAY=:0
+ DISPLAY=:0

var="videomode"
+ var=videomode
modes=(
    "1024x600 off"
    "800x600  off"
    "800x600  800x600"
    "1024x600 1024x600"
    "1024x768 1024x768"
    "off      1024x768"
)
+ modes=("1024x600 off" "800x600  off" "800x600  800x600" "1024x600
1024x600" "1024x768 1024x768" "off      1024x768")
mode=$(${0%${0##*/}}eeepc_900-acpidata.sh "$var")
${0%${0##*/}}eeepc_900-acpidata.sh "$var"
++ /etc/acpi/eeepc_900-acpidata.sh videomode
+ mode=0
STATUS=$(/usr/bin/xrandr -q | /bin/sed
'/VGA/!D;s/^[[:space:]]\+//;s/VGA[[:space:]]//;s/[[:space:]].\+//')
/usr/bin/xrandr -q | /bin/sed
'/VGA/!D;s/^[[:space:]]\+//;s/VGA[[:space:]]//;s/[[:space:]].\+//'
++ /usr/bin/xrandr -q
++ /bin/sed '/VGA/!D;s/^[[:space:]]\+//;s/VGA[[:space:]]//;s/[[:space:]].\+//'
+ STATUS=connected
[ -z "$STATUS" ] && exit 1
+ '[' -z connected ']'
modedone=0
+ modedone=0
while [ "$modedone" == 0 ]; do
    [ -z "$mode" ] && mode=0
    (( mode<0 )) && mode=0
    (( mode>${#modes[@]}-2 )) && mode=-1
    (( mode++ ))
    modev=${modes[mode]}
    [ ${modev##*[[:space:]]} != "off" -a "$STATUS" == "disconnected" ]
&& continue;

    if [ ${modev%%[[:space:]]*} == "off" ]; then
        /usr/bin/xrandr --output LVDS --off
    else
        /usr/bin/xrandr --output LVDS --mode ${modev%%[[:space:]]*} || continue
    fi

    if [ ${modev##*[[:space:]]} == "off" ]; then
        /usr/bin/xrandr --output VGA --off
    else
        /usr/bin/xrandr --output VGA --mode ${modev##*[[:space:]]} || continue
    fi
    modedone=1
done
+ '[' 0 == 0 ']'
+ '[' -z 0 ']'
+ ((  mode<0  ))
+ ((  mode>6-2  ))
+ ((  mode++  ))
+ modev='800x600  off'
+ '[' off '!=' off -a connected == disconnected ']'
+ '[' 800x600 == off ']'
+ /usr/bin/xrandr --output LVDS --mode 800x600
+ '[' off == off ']'
+ /usr/bin/xrandr --output VGA --off
+ modedone=1
+ '[' 1 == 0 ']'
${0%${0##*/}}eeepc_900-acpidata.sh "$var" "$mode"
+ /etc/acpi/eeepc_900-acpidata.sh videomode 1


$ sudo -H sh -xv /etc/acpi/eeepc_900-video.sh
#!/bin/sh
#eeepc_900-video.sh
# set -e
# exec > /dev/null 2> /dev/null

# DISPLAY=
who | grep -q ':0' && [ 7 == "$(fgconsole)" ] && export DISPLAY=':0'
+ who
+ grep -q :0
fgconsole
++ fgconsole
+ '[' 7 == 7 ']'
+ export DISPLAY=:0
+ DISPLAY=:0

var="videomode"
+ var=videomode
modes=(
    "1024x600 off"
    "800x600  off"
    "800x600  800x600"
    "1024x600 1024x600"
    "1024x768 1024x768"
    "off      1024x768"
)
+ modes=("1024x600 off" "800x600  off" "800x600  800x600" "1024x600 1024x600" "
1024x768 1024x768" "off      1024x768")
mode=$(${0%${0##*/}}eeepc_900-acpidata.sh "$var")
${0%${0##*/}}eeepc_900-acpidata.sh "$var"
++ /etc/acpi/eeepc_900-acpidata.sh videomode
+ mode=1
STATUS=$(/usr/bin/xrandr -q | /bin/sed '/VGA/!D;s/^[[:space:]]\+//;s/VGA[[:spac
e:]]//;s/[[:space:]].\+//')
/usr/bin/xrandr -q | /bin/sed '/VGA/!D;s/^[[:space:]]\+//;s/VGA[[:space:]]//;s/
[[:space:]].\+//'
++ /usr/bin/xrandr -q
++ /bin/sed '/VGA/!D;s/^[[:space:]]\+//;s/VGA[[:space:]]//;s/[[:space:]].\+//'
+ STATUS=connected
[ -z "$STATUS" ] && exit 1
+ '[' -z connected ']'
modedone=0
+ modedone=0
while [ "$modedone" == 0 ]; do
    [ -z "$mode" ] && mode=0
    (( mode<0 )) && mode=0
    (( mode>${#modes[@]}-2 )) && mode=-1
    (( mode++ ))
    modev=${modes[mode]}
    [ ${modev##*[[:space:]]} != "off" -a "$STATUS" == "disconnected" ] && conti
nue;

    if [ ${modev%%[[:space:]]*} == "off" ]; then
        /usr/bin/xrandr --output LVDS --off
    else
        /usr/bin/xrandr --output LVDS --mode ${modev%%[[:space:]]*} || continue
    fi

    if [ ${modev##*[[:space:]]} == "off" ]; then
        /usr/bin/xrandr --output VGA --off
    else
        /usr/bin/xrandr --output VGA --mode ${modev##*[[:space:]]} || continue
    fi
    modedone=1
done
+ '[' 0 == 0 ']'
+ '[' -z 1 ']'
+ ((  mode<0  ))
+ ((  mode>6-2  ))
+ ((  mode++  ))
+ modev='800x600  800x600'
+ '[' 800x600 '!=' off -a connected == disconnected ']'
+ '[' 800x600 == off ']'
+ /usr/bin/xrandr --output LVDS --mode 800x600
+ '[' 800x600 == off ']'
+ /usr/bin/xrandr --output VGA --mode 800x600
+ modedone=1
+ '[' 1 == 0 ']'
${0%${0##*/}}eeepc_900-acpidata.sh "$var" "$mode"
+ /etc/acpi/eeepc_900-acpidata.sh videomode 2


$ sudo -H sh -xv /etc/acpi/eeepc_900-video.sh
#!/bin/sh
#eeepc_900-video.sh
# set -e
# exec > /dev/null 2> /dev/null

# DISPLAY=
who | grep -q ':0' && [ 7 == "$(fgconsole)" ] && export DISPLAY=':0'
+ who
+ grep -q :0
fgconsole
++ fgconsole
+ '[' 7 == 7 ']'
+ export DISPLAY=:0
+ DISPLAY=:0

var="videomode"
+ var=videomode
modes=(
    "1024x600 off"
    "800x600  off"
    "800x600  800x600"
    "1024x600 1024x600"
    "1024x768 1024x768"
    "off      1024x768"
)
+ modes=("1024x600 off" "800x600  off" "800x600  800x600" "1024x600 1024x600" "
1024x768 1024x768" "off      1024x768")
mode=$(${0%${0##*/}}eeepc_900-acpidata.sh "$var")
${0%${0##*/}}eeepc_900-acpidata.sh "$var"
++ /etc/acpi/eeepc_900-acpidata.sh videomode
+ mode=2
STATUS=$(/usr/bin/xrandr -q | /bin/sed '/VGA/!D;s/^[[:space:]]\+//;s/VGA[[:spac
e:]]//;s/[[:space:]].\+//')
/usr/bin/xrandr -q | /bin/sed '/VGA/!D;s/^[[:space:]]\+//;s/VGA[[:space:]]//;s/
[[:space:]].\+//'
++ /usr/bin/xrandr -q
++ /bin/sed '/VGA/!D;s/^[[:space:]]\+//;s/VGA[[:space:]]//;s/[[:space:]].\+//'
+ STATUS=connected
[ -z "$STATUS" ] && exit 1
+ '[' -z connected ']'
modedone=0
+ modedone=0
while [ "$modedone" == 0 ]; do
    [ -z "$mode" ] && mode=0
    (( mode<0 )) && mode=0
    (( mode>${#modes[@]}-2 )) && mode=-1
    (( mode++ ))
    modev=${modes[mode]}
    [ ${modev##*[[:space:]]} != "off" -a "$STATUS" == "disconnected" ] && conti
nue;

    if [ ${modev%%[[:space:]]*} == "off" ]; then
        /usr/bin/xrandr --output LVDS --off
    else
        /usr/bin/xrandr --output LVDS --mode ${modev%%[[:space:]]*} || continue
    fi

    if [ ${modev##*[[:space:]]} == "off" ]; then
        /usr/bin/xrandr --output VGA --off
    else
        /usr/bin/xrandr --output VGA --mode ${modev##*[[:space:]]} || continue
    fi
    modedone=1
done
+ '[' 0 == 0 ']'
+ '[' -z 2 ']'
+ ((  mode<0  ))
+ ((  mode>6-2  ))
+ ((  mode++  ))
+ modev='1024x600 1024x600'
+ '[' 1024x600 '!=' off -a connected == disconnected ']'
+ '[' 1024x600 == off ']'
+ /usr/bin/xrandr --output LVDS --mode 1024x600
+ '[' 1024x600 == off ']'
+ /usr/bin/xrandr --output VGA --mode 1024x600
/usr/bin/xrandr: cannot find mode 1024x600
+ continue
+ '[' 0 == 0 ']'
+ '[' -z 3 ']'
+ ((  mode<0  ))
+ ((  mode>6-2  ))
+ ((  mode++  ))
+ modev='1024x768 1024x768'
+ '[' 1024x768 '!=' off -a connected == disconnected '
+ '[' 1024x768 == off ']'
+ /usr/bin/xrandr --output LVDS --mode 1024x768
/usr/bin/xrandr: cannot find mode 1024x768
+ continue
+ '[' 0 == 0 ']'
+ '[' -z 4 ']'
+ ((  mode<0  ))
+ ((  mode>6-2  ))
+ ((  mode++  ))
+ modev='off      1024x768'
+ '[' 1024x768 '!=' off -a connected == disconnected '
+ '[' off == off ']'
+ /usr/bin/xrandr --output LVDS --off
+ '[' 1024x768 == off ']'
+ /usr/bin/xrandr --output VGA --mode 1024x768
+ modedone=1
+ '[' 1 == 0 ']'
${0%${0##*/}}eeepc_900-acpidata.sh "$var" "$mode"
+ /etc/acpi/eeepc_900-acpidata.sh videomode 5


$ sudo -H sh -xv /etc/acpi/eeepc_900-video.sh
#!/bin/sh
#eeepc_900-video.sh
# set -e
# exec > /dev/null 2> /dev/null

# DISPLAY=
who | grep -q ':0' && [ 7 == "$(fgconsole)" ] && export DISPLAY=':0'
+ who
+ grep -q :0
fgconsole
++ fgconsole
+ '[' 7 == 7 ']'
+ export DISPLAY=:0
+ DISPLAY=:0

var="videomode"
+ var=videomode
modes=(
    "1024x600 off"
    "800x600  off"
    "800x600  800x600"
    "1024x600 1024x600"
    "1024x768 1024x768"
    "off      1024x768"
)
+ modes=("1024x600 off" "800x600  off" "800x600  800x600" "1024x600
1024x600" "1024x768 1024x768" "off      1024x768")
mode=$(${0%${0##*/}}eeepc_900-acpidata.sh "$var")
${0%${0##*/}}eeepc_900-acpidata.sh "$var"
++ /etc/acpi/eeepc_900-acpidata.sh videomode
+ mode=5
STATUS=$(/usr/bin/xrandr -q | /bin/sed
'/VGA/!D;s/^[[:space:]]\+//;s/VGA[[:space:]]//;s/[[:space:]].\+//')
/usr/bin/xrandr -q | /bin/sed
'/VGA/!D;s/^[[:space:]]\+//;s/VGA[[:space:]]//;s/[[:space:]].\+//'
++ /usr/bin/xrandr -q
++ /bin/sed '/VGA/!D;s/^[[:space:]]\+//;s/VGA[[:space:]]//;s/[[:space:]].\+//'
+ STATUS=connected
[ -z "$STATUS" ] && exit 1
+ '[' -z connected ']'
modedone=0
+ modedone=0
while [ "$modedone" == 0 ]; do
    [ -z "$mode" ] && mode=0
    (( mode<0 )) && mode=0
    (( mode>${#modes[@]}-2 )) && mode=-1
    (( mode++ ))
    modev=${modes[mode]}
    [ ${modev##*[[:space:]]} != "off" -a "$STATUS" == "disconnected" ]
&& continue;

    if [ ${modev%%[[:space:]]*} == "off" ]; then
        /usr/bin/xrandr --output LVDS --off
    else
        /usr/bin/xrandr --output LVDS --mode ${modev%%[[:space:]]*} || continue
    fi

    if [ ${modev##*[[:space:]]} == "off" ]; then
        /usr/bin/xrandr --output VGA --off
    else
        /usr/bin/xrandr --output VGA --mode ${modev##*[[:space:]]} || continue
    fi
    modedone=1
done
+ '[' 0 == 0 ']'
+ '[' -z 5 ']'
+ ((  mode<0  ))
+ ((  mode>6-2  ))
+ mode=-1
+ ((  mode++  ))
+ modev='1024x600 off'
+ '[' off '!=' off -a connected == disconnected ']'
+ '[' 1024x600 == off ']'
+ /usr/bin/xrandr --output LVDS --mode 1024x600
+ '[' off == off ']'
+ /usr/bin/xrandr --output VGA --off
+ modedone=1
+ '[' 1 == 0 ']'
${0%${0##*/}}eeepc_900-acpidata.sh "$var" "$mode"
+ /etc/acpi/eeepc_900-acpidata.sh videomode 0

-- 
Всего доброго,

Денис.

  reply	other threads:[~2008-11-19  4:24 UTC|newest]

Thread overview: 129+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-11-06  5:52 ` Kharitonov A. Dmitry
2008-11-06  6:10   ` Denis G. Samsonenko
2008-11-06  9:03     ` Kharitonov A. Dmitry
2008-11-06  6:34   ` Denis G. Samsonenko
2008-11-06  6:42     ` Vladimir A. Svyatoshenko
2008-11-06  6:52       ` Denis G. Samsonenko
2008-11-06  7:14         ` Denis G. Samsonenko
2008-11-07  4:49           ` Kharitonov A. Dmitry
2008-11-07 20:47             ` Denis G. Samsonenko
2008-11-07 20:56               ` Михаил Якушин
2008-11-08  7:04               ` Kharitonov A. Dmitry
2008-11-06  7:40         ` Vladimir A. Svyatoshenko
2008-11-06  9:17     ` Kharitonov A. Dmitry
2008-11-06  9:42       ` Denis G. Samsonenko
2008-11-06 10:20         ` Kharitonov A. Dmitry
2008-11-06 11:10           ` Denis G. Samsonenko
2008-11-06 11:41             ` Kharitonov A. Dmitry
2008-11-06 13:11               ` Denis G. Samsonenko
2008-11-06 13:35                 ` Kharitonov A. Dmitry
2008-11-06 13:45                   ` Denis G. Samsonenko
2008-11-06 13:57                     ` Kharitonov A. Dmitry
2008-11-06 14:04                       ` Denis G. Samsonenko
2008-11-06 14:50                         ` Kharitonov A. Dmitry
2008-11-06 13:29               ` Denis G. Samsonenko
2008-11-06 13:49                 ` Kharitonov A. Dmitry
2008-11-06 15:20                 ` Slava Dubrovskiy
2008-11-06 15:25                   ` Kharitonov A. Dmitry
2008-11-09 14:50                     ` Kharitonov A. Dmitry
2008-11-06 17:09       ` Denis G. Samsonenko
2008-11-06 19:17         ` Kharitonov A. Dmitry
2008-11-10  9:23     ` Kharitonov A. Dmitry
2008-11-10 19:30       ` Denis G. Samsonenko
2008-11-10 20:06         ` Kharitonov A. Dmitry
2008-11-11  9:14           ` Denis G. Samsonenko
2008-11-11 10:51             ` Kharitonov A. Dmitry
2008-11-11 13:05               ` Kharitonov A. Dmitry
2008-11-11 19:01                 ` Denis G. Samsonenko
2008-11-11 19:07                 ` Denis G. Samsonenko
2008-11-12  5:43                   ` Kharitonov A. Dmitry
2008-11-12  6:50                     ` Denis G. Samsonenko
2008-11-12 17:58                       ` Kharitonov A. Dmitry
2008-11-13  3:50                         ` Denis G. Samsonenko
2008-11-13  4:54                           ` Kharitonov A. Dmitry
2008-11-13  7:23                             ` Denis G. Samsonenko
2008-11-13 15:39                               ` Kharitonov A. Dmitry
2008-11-14  8:50                                 ` Denis G. Samsonenko
2008-11-14 10:30                                   ` Kharitonov A. Dmitry
2008-11-14 19:52                                     ` Denis G. Samsonenko
2008-11-14 19:54                                       ` Denis G. Samsonenko
2008-11-16  8:10                                         ` Kharitonov A. Dmitry
2008-11-16  7:41                                       ` Kharitonov A. Dmitry
2008-11-16 18:55                                         ` Denis G. Samsonenko
2008-11-16 20:52                                           ` Kharitonov A. Dmitry
2008-11-17  4:36                                             ` Kharitonov A. Dmitry
2008-11-17 12:28                                               ` Denis G. Samsonenko
2008-11-17 13:42                                                 ` Kharitonov A. Dmitry
2008-11-17 18:01                                                   ` Denis G. Samsonenko
2008-11-17 19:10                                                     ` Kharitonov A. Dmitry
2008-11-17 11:59                                             ` Denis G. Samsonenko
2008-11-17 13:25                                               ` Kharitonov A. Dmitry
2008-11-17 14:09                                                 ` Ivan Petrov
2008-11-17 15:56                                                   ` Kharitonov A. Dmitry
2008-11-17 16:01                                                     ` Ivan Petrov
2008-11-17 16:20                                                       ` Kharitonov A. Dmitry
2008-11-17 18:10                                                         ` Denis G. Samsonenko
2008-11-18  5:29                                                           ` Alexey Novikov
2008-11-18  5:50                                                             ` Kharitonov A. Dmitry
2008-11-18 16:59                                                             ` Ivan Petrov
2008-11-19  6:27                                                               ` Alexey Novikov
2008-11-19 11:14                                                                 ` Denis G. Samsonenko
2008-11-19 11:46                                                                   ` Alexey Novikov
2008-11-17 18:08                                                 ` Denis G. Samsonenko
2008-11-17 19:21                                                   ` Kharitonov A. Dmitry
2008-11-17 15:21                                               ` Kharitonov A. Dmitry
2008-11-17 21:26                                                 ` Kharitonov A. Dmitry
2008-11-19  4:24                                                   ` Denis G. Samsonenko [this message]
2008-11-19 13:30                                                     ` Kharitonov A. Dmitry
2008-11-20 11:12                                                       ` Denis G. Samsonenko
2008-11-20 19:52                                                         ` Kharitonov A. Dmitry
2008-11-21  4:17                                                           ` Denis G. Samsonenko
2008-11-24  7:55                                                             ` Kharitonov A. Dmitry
2008-11-24  9:50                                                               ` Denis G. Samsonenko
2008-11-24 14:30                                                                 ` Kharitonov A. Dmitry
2008-11-24  8:11                                                         ` Kharitonov A. Dmitry
2008-11-24  8:14                                                           ` Владимир
2008-11-24  8:23                                                             ` Kharitonov A. Dmitry
2008-11-24  8:26                                                               ` Denis G. Samsonenko
2008-11-24  8:31                                                                 ` Kharitonov A. Dmitry
2008-11-24 16:30                                                                 ` Michael Shigorin
2008-11-24 17:45                                                                   ` Kharitonov A. Dmitry
2008-11-24 18:37                                                                     ` Michael Shigorin
2008-11-24 18:53                                                                       ` Aleksey Avdeev
2008-11-24 19:23                                                                         ` Kharitonov A. Dmitry
2008-11-24 20:10                                                                           ` Aleksey Avdeev
2008-11-25  5:02                                                                             ` Kharitonov A. Dmitry
2008-11-25  6:06                                                                               ` Aleksey Avdeev
2008-11-25  7:55                                                                                 ` Kharitonov A. Dmitry
2008-11-25  8:31                                                                                   ` Aleksey Avdeev
2008-11-25  8:43                                                                                     ` Kharitonov A. Dmitry
2008-11-25  8:58                                                                                       ` Aleksey Avdeev
2008-11-25  9:34                                                                                         ` Kharitonov A. Dmitry
2008-11-25  8:06                                                                               ` Michael Shigorin
2008-11-25  8:48                                                                                 ` Kharitonov A. Dmitry
2008-11-24 19:19                                                                       ` Kharitonov A. Dmitry
2008-11-24 20:13                                                                       ` Vyatcheslav Perevalov
2008-11-24 20:28                                                                         ` Aleksey Avdeev
2008-11-25  5:04                                                                           ` Kharitonov A. Dmitry
2008-11-25  6:09                                                                             ` Aleksey Avdeev
2008-11-25  8:36                                                                               ` Kharitonov A. Dmitry
2008-11-25  9:01                                                                                 ` Aleksey Avdeev
2008-11-12  5:57                   ` Kharitonov A. Dmitry
2008-11-12  7:12                     ` Denis G. Samsonenko
2008-11-12 17:58                       ` Kharitonov A. Dmitry
2008-11-13  3:42                         ` Denis G. Samsonenko
2008-11-13  4:55                           ` Kharitonov A. Dmitry
2008-11-13  6:56                             ` Denis G. Samsonenko
2008-11-06  6:37   ` Denis G. Samsonenko
2008-11-06 10:21     ` Kharitonov A. Dmitry
2008-11-06  7:54   ` Denis G. Samsonenko
2008-11-06 10:02     ` Kharitonov A. Dmitry
2008-11-06 11:06       ` Denis G. Samsonenko
2008-11-06 14:47         ` Kharitonov A. Dmitry
2008-11-06 14:54           ` Denis G. Samsonenko
2008-11-06 14:59             ` Kharitonov A. Dmitry
2008-11-06 16:57               ` Denis G. Samsonenko
2008-11-06 19:00                 ` Kharitonov A. Dmitry
2008-11-06 19:21                   ` Denis G. Samsonenko
2008-11-06 19:45                     ` Kharitonov A. Dmitry
2008-11-08 19:04   ` Denis G. Samsonenko

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=957265820811182024o55c7b5e6heb5164a771fb73d0@mail.gmail.com \
    --to=d.g.samsonenko@gmail.com \
    --cc=hardware@lists.altlinux.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link

ALT Linux hardware support

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/hardware/0 hardware/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 hardware hardware/ http://lore.altlinux.org/hardware \
		hardware@altlinux.ru hardware@lists.altlinux.org hardware@lists.altlinux.ru hardware@lists.altlinux.com hardware@altlinux.org
	public-inbox-index hardware

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.hardware


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git