mirror of
https://git.yoctoproject.org/poky
synced 2026-09-17 12:49:36 +02:00
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@530 311d38ba-8fff-0310-9ca6-ca027cbcb966
21 lines
507 B
Bash
21 lines
507 B
Bash
#!/bin/sh
|
|
|
|
sleep 2
|
|
if [ -x /usr/bin/bl ]; then
|
|
bl toggle
|
|
fi
|
|
MODEL=`cat /proc/cpuinfo | grep ^Hardware | sed "s/.* //"`
|
|
test -e /etc/scap.conf && USER=`cat /etc/scap.conf`
|
|
RES=`fbset 2>/dev/null | awk "/geometry/ { print \$2 "x" \$3 }"`
|
|
(echo "POST /scap/capture.cgi?$MODEL+$USER+$RES HTTP/1.1"
|
|
echo -n Content-length:
|
|
cat /dev/fb0 | wc -c
|
|
echo "Content-Type: image/gif"
|
|
echo "Host: www.handhelds.org"
|
|
echo ""
|
|
cat /dev/fb0) | nc www.handhelds.org 80
|
|
if [ -x /usr/bin/bl ]; then
|
|
bl toggle
|
|
fi
|
|
|