User:Bytestore

From Openmoko

(Difference between revisions)
Jump to: navigation, search
(install)
 
(6 intermediate revisions by one user not shown)
Line 1: Line 1:
 +
== setting builder ==
 +
for OM2008.12 or for testing and unstable builds
 +
maybe this work in FSO and SHR
 +
 +
 +
== download ==
 +
 +
from here http://openmoko.spb.ru/repository/settingbuilder_bytestore.tar.gz <br>
 +
mirror http://dl.linuxphone.ru/openmoko/repository/settingbuilder/settingbuilder_bytestore.tar.gz <br>
 +
see this http://openmoko.spb.ru/viewtopic.php?f=9&t=18&p=43#p43 <br>
 +
and this http://www.linuxphone.ru/forum/viewtopic.php?f=24&t=309&p=2718#p2718
 +
 +
 +
== install ==
 +
 +
wget http://openmoko.spb.ru/repository/settingbuilder_bytestore.tar.gz <br>
 +
tar zxvf ./settingbuilder_bytestore.tar.gz <br>
 +
cd ./install <br>
 +
sh ./installall.sh <br>
 +
 
== build 2008.12 11012009 ==
 
== build 2008.12 11012009 ==
  
Line 44: Line 64:
  
 
== Avoid suspend when usb plug ==
 
== Avoid suspend when usb plug ==
 +
try use this script [http://openmoko.spb.ru/download/file.php?id=14]
 
   
 
   
 
insert in /etc/udev/rules.d/udev.rules
 
insert in /etc/udev/rules.d/udev.rules

Latest revision as of 15:39, 19 February 2009

Contents

[edit] setting builder

for OM2008.12 or for testing and unstable builds maybe this work in FSO and SHR


[edit] download

from here http://openmoko.spb.ru/repository/settingbuilder_bytestore.tar.gz
mirror http://dl.linuxphone.ru/openmoko/repository/settingbuilder/settingbuilder_bytestore.tar.gz
see this http://openmoko.spb.ru/viewtopic.php?f=9&t=18&p=43#p43
and this http://www.linuxphone.ru/forum/viewtopic.php?f=24&t=309&p=2718#p2718


[edit] install

wget http://openmoko.spb.ru/repository/settingbuilder_bytestore.tar.gz
tar zxvf ./settingbuilder_bytestore.tar.gz
cd ./install
sh ./installall.sh

[edit] build 2008.12 11012009

update in mokoservices script button for change theme, profile GTK /usr/share/themes/Moko/gtk-2.0/ , change locale (ru\en) /etc/profile.d/locale.sh button info about eth0 button change gprs setiings (apn,dialnumber,login,pass) gprs connection is persistent if gprs switch on buttin wifi, (use /etc/wpa_supplicant/wpa_supplicant)

for example all icons edited for ru locale (change locale button in mokoservices)


sortdesk (http://www.opkg.org/package_95.html)

mofi (not stable)

gpe-scap File browser Text editor FBReader GPE Sketchbook LED Clock Navit (speech-dispatcher not installed)


openmoko-mediaplayer (not mp3)

mokoko (not mp3, config file is /home/root/.mokoko.conf)

daemon jdd (sense headphone jack plug for stereo sound http://forum.telefoninux.org/index.php/ ... ml#msg9047)

Pidgin Internet Messenger

accelerometer based screen rotation (icon enable\disable autorun this daemon)

TangoGPS (use simlink /home/root/~Maps on /media/card/Maps, google map working)

dillo (config file ~/.dillo/dillorc)

download image [1]

screenshots [2]


[edit] Avoid suspend when usb plug

try use this script [3]

insert in /etc/udev/rules.d/udev.rules subsystem=="power_supply", RUN+="/etc/udev/scripts/usb.sh"

create file /etc/udev/scripts/usb.sh

#!/bin/sh
# when USB is plugged/unplugged in device mode, udev triggers this script
# on power change
# udevd does clearenv(). Export shell PATH to children.

export PATH
if [[ $(cat /sys/devices/platform/s3c2410-ohci/usb_mode) = "device" ]]
then
    if [[ $(cat /sys/devices/platform/s3c2440-i2c/i2c-adapter/i2c-0/0-0073/chgmode) = "play-only" ]]
    then
        echo usb disconnect >> /var/log/messages
        dbus-send --system --dest=org.openmoko.Power / org.openmoko.Power.Core.RemoveRequestedResourceState string:cpu string:usb

    else
        echo usb connect >> /var/log/messages
        dbus-send --system --dest=org.openmoko.Power / org.openmoko.Power.Core.RequestResourceState string:cpu string:usb string:on
        sleep 3
    fi
fi
Personal tools

build 2008.12 11012009

update in mokoservices script button for change theme, profile GTK /usr/share/themes/Moko/gtk-2.0/ , change locale (ru\en) /etc/profile.d/locale.sh button info about eth0 button change gprs setiings (apn,dialnumber,login,pass) gprs connection is persistent if gprs switch on buttin wifi, (use /etc/wpa_supplicant/wpa_supplicant)

for example all icons edited for ru locale (change locale button in mokoservices)


sortdesk (http://www.opkg.org/package_95.html)

mofi (not stable)

gpe-scap File browser Text editor FBReader GPE Sketchbook LED Clock Navit (speech-dispatcher not installed)


openmoko-mediaplayer (not mp3)

mokoko (not mp3, config file is /home/root/.mokoko.conf)

daemon jdd (sense headphone jack plug for stereo sound http://forum.telefoninux.org/index.php/ ... ml#msg9047)

Pidgin Internet Messenger

accelerometer based screen rotation (icon enable\disable autorun this daemon)

TangoGPS (use simlink /home/root/~Maps on /media/card/Maps, google map working)

dillo (config file ~/.dillo/dillorc)

download image [1]

screenshots [2]


Avoid suspend when usb plug

insert in /etc/udev/rules.d/udev.rules subsystem=="power_supply", RUN+="/etc/udev/scripts/usb.sh"

create file /etc/udev/scripts/usb.sh

#!/bin/sh
# when USB is plugged/unplugged in device mode, udev triggers this script
# on power change
# udevd does clearenv(). Export shell PATH to children.

export PATH
if [[ $(cat /sys/devices/platform/s3c2410-ohci/usb_mode) = "device" ]]
then
    if [[ $(cat /sys/devices/platform/s3c2440-i2c/i2c-adapter/i2c-0/0-0073/chgmode) = "play-only" ]]
    then
        echo usb disconnect >> /var/log/messages
        dbus-send --system --dest=org.openmoko.Power / org.openmoko.Power.Core.RemoveRequestedResourceState string:cpu string:usb

    else
        echo usb connect >> /var/log/messages
        dbus-send --system --dest=org.openmoko.Power / org.openmoko.Power.Core.RequestResourceState string:cpu string:usb string:on
        sleep 3
    fi
fi