Re: distro-feed-configs_1.0-r0_om-gta02.ipk

2008-08-08 Thread Olivier Berger
arne anka [EMAIL PROTECTED] writes:

 why does distro-feed-configs_1.0-r0_om-gta02.ipk attempt to overwrite all  
 feeds' url with
 http://my-distribution.org/remote-feed/
 ?
 this will ultimately kill any further update until replaced with  
 meaningful url!


Hi.

This time the problem seems that there's a new set of files in
distro-feed-configs_1.0-r0.01_om-gta02.ipk which try and change the
feeds config :

Downloading 
http://buildhost.openmoko.org/daily-feed/om-gta02/distro-feed-configs_1.0-r0.01_om-gta02.ipk
Multiple packages (distro-feed-configs and distro-feed-configs) providing same 
name marked HOLD or PREFER.  Using latest.
Multiple packages (distro-feed-configs and distro-feed-configs) providing same 
name marked HOLD or PREFER.  Using latest.
Installing distro-feed-configs (1.0-r0.01) to root...
Configuration file '/etc/opkg/all-feed.conf'
== File on system created by you or by a script.
== File also in package provided by package maintainer.
   What would you like to do about it ?  Your options are:
Y or I  : install the package maintainer's version
N or O  : keep your currently-installed version
  D : show the differences between the versions (if diff is 
installed)
 The default action is to keep your current version.
*** all-feed.conf (Y/I/N/O/D) [default=N] ?d
--- /etc/opkg/all-feed.conf-opkg.backup Sat Aug  2 01:05:27 2008
+++ /etc/opkg/all-feed.conf Thu Aug  7 02:11:33 2008
@@ -1 +1 @@
-src/gz daily-all http://buildhost.openmoko.org/daily-feed/all
+src/gz om-dev-all http://buildhost.openmoko.org/daily-feed/all

The only result I can see, if installing the new ones is that now
there's two sets of feeds saved in /var/lib/opkg/ :
the old ones :
daily-alldaily-armv4t daily-neo1973daily-om-gta02   
and the new ones :
om-dev-all   om-dev-armv4tom-dev-om-gta02

Is this related to 2008.08 image release ?

Any comments ?

Best regards,
-- 
Olivier BERGER 
(OpenPGP: 1024D/B4C5F37F)
http://www.olivierberger.com/weblog/

___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


Re: USB Networking troubles

2008-08-08 Thread michael cole
Hi Andrew,

First thanks to all for replying.

These changes worked.

The essence of the change is rather simple -- move the Freerunner to a
different network from the LAN's netwrok
1)  (in my case from 192.168.1.202 to 192.168.2.202)
2) allow the desktop machine to talk to 192.168.2.202
3) do the masquerading to the 192.168.2.* network.

So on my Freerunner /etc/network/interfaces includes:

# Ethernet/RNDIS gadget (g_ether)
# ... or on host side, usbnet and random hwaddr
auto usb0
iface usb0 inet static
address 192.168.2.202
netmask 255.255.255.0
network 192.168.2.0
gateway 192.168.2.200
# orig:
#   up echo nameserver 192.168.0.200 /etc/resolv.conf
# using home (nimiq.net)
up echo nameserver 207.235.125.4 /etc/resolv.conf

on the desktop  /etc/network/interfaces includes:
allow-hotplug usb0
iface usb0 inet static
address 192.168.2.200
netmask 255.255.255.192
post-up iptables -A POSTROUTING -t nat -j MASQUERADE -s 192.168.2.192/26
post-up echo 1  /proc/sys/net/ipv4/ip_forward
post-up iptables -P FORWARD ACCEPT
pre-down iptables -D POSTROUTING -t nat -j MASQUERADE -s
192.168.2.192/26

The page at Openmoko on USB Networking should be updated to make clear
the selection of the network for the desktop-freerunner connection
should be different than the rest of the LAN.

Thanks again to everyone.

Michael

Is this a typo on the page @ Openmoko

On Thu, Aug 7, 2008 at 6:39 PM, Andrew C. Dingman
[EMAIL PROTECTED] wrote:
 This is posted with the hope someone can look at the current state of
 my Freerunner connection to the desktop and just see something that is
 not right. I am sure the answer is simple and am reluctant to ask the
 community for non-FR help but perhaps others are struggling with
 similar network issues in getting their FR hooked up to the Internet.

 My basic setup:
 router - 192.168.1.1
 desktop - 192.168.1.200
 freerunner - 192.168.1.202

 You mean it looks something like this:

 192.168.1.1 192.168.1.200  192.168.1.202
 routerswitch---desktop--freerunner
 /
/
   other_stuff
   192.168.1.x

 and everything on the left has a netmask of 255.255.255.0?

 If that's so forget about the FreeRunner talking to anything but the
 desktop. In fact, be suprised and grateful if it's doing that much. The
 routing table you gave is horrible and it will stop working if you
 re-start the non-usb network interface on your machine. You need
 different subnets on the two desktop NICs to have any hope. The only
 possible way around this fact is to use ethernet bridging instead of
 routing on the desktop, and that's such an ugly hack that I refuse to
 work up directions for configuring it. I've never seen it done on a
 network that worked right.

 Your desktop needs to act as a ROUTER for the FreeRunner. A router by
 definition is connected to two or more *different* networks. From the
 perspective of the stuff on the left, the 192.168.1.192/26 subnet the
 FreeRunner is on is not a different network - it's a few addresses on
 the same network. (This is what netmasks are about. Basically, they tell
 the computer how big the neighborhood is.) Which means they aren't
 sending packets for the FreeRunner through the desktop, they're just
 ARPing and expecting the FreeRunner to respond, but since it's on a
 different network, it can't hear the ARPs. Packets from the FreeRunner
 probably do reach their destinations, but the reply packets don't come
 back, which means you don't get a ping response and can't establish any
 kind of connection.

 The easiest way to fix this is probably to use your half-working setup
 to SSH into the FreeRunner and reconfigure it to use, say,
 192.168.2.202, then do the same with the desktop side of the USB
 ethernet connection. Then kill the iptables rules in your nat table
 POSTROUTING chain. You can either:

 1) Leave them gone and put a static route to 192.168.2.192/26 in your
 router, specifying your desktop's 192.168.1.x address as the gateway

 OR (exclusive, do not do both of these things)

 2) specify on the desktop an iptables rule to NAT all packets coming
 from the USB network - something like 'iptables -t nat -A POSTROUTING -s
 192.168.2.192/26 -j MASQUERADE'.

 Whichever you choose, you'll need the FORWARD chain in the filter table
 in its current permissive state. You'll also want to double-check that
 sysctl net.ipv4.ip_forward=1. The simplest way to check this is
 'cat /proc/sys/net/ipv4/ip_forward'.

 Hope that helps.



 ___
 support mailing list
 support@lists.openmoko.org
 https://lists.openmoko.org/mailman/listinfo/support




-- 
Michael Cole
[EMAIL PROTECTED]

___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


Re: Porting Ruby 1.9 to Openmoko

2008-08-08 Thread Cesar Eduardo Barros
sparky mat escreveu:
 I tried compiling Ruby 1.9.0-3 
 (ftp://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.0-3.tar.gz) with the 
 following commands:
 
 ./configure 
 --prefix=/usr/local/openmoko/arm/arm-angstrom-linux-gnueabi/usr 
 --host=arm-angstrom-linux-gnueabi
 make
 
 When I examine the executables created (using 'file executable name') 
 it shows its a x86 binary. Also, I checked the build logs and I see that 
 though it tries to take the libraries from the path specified in 
 --prefix, it skips them and continues (to the x86 ones in /usr/lib/ i 
 guess).
 
 So in conclusion, the 'CC', 'LD' , etc. are all pointing to the ones in 
 '/usr/bin' . How do I change this? Do I manually change them in the 
 Makefile? Do I pass CC='path to ARM gcc' LD='path to ARM ld'  to 
 ./configure? If so, don't I need to pass other commands too? Which all 
 and isn't there a better way?

You should at least change the PATH to include where the cross-compiler 
is (if you are using MokoMakefile/OE/bitbake, check one of the 
build/tmp/work/*/*/temp/run.* files for a good value for PATH). If that 
isn't enough for configure to autodetect the cross-compiler, you might 
have to pass CC=, LD=, and so on to configure (but I'd try without them 
first, hoping configure is smart enough to try to call $(HOST)-gcc first 
before trying gcc).

-- 
Cesar Eduardo Barros
[EMAIL PROTECTED]
[EMAIL PROTECTED]

___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


Re: Om2008.8 release today?

2008-08-08 Thread sparky mat

 Well. It's become available a few minutes ago. I am still waiting for
 official announcement.

 http://wiki.openmoko.org/wiki/Om_2008.8
 http://downloads.openmoko.org/releases/Om2008.8/

 Kind regards,


Yipee!!!
___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


Re: Om2008.8 release today?

2008-08-08 Thread andylockran
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

sparky mat wrote:
 Well. It's become available a few minutes ago. I am still waiting for
 official announcement.
 
 http://wiki.openmoko.org/wiki/Om_2008.8
 http://downloads.openmoko.org/releases/Om2008.8/
 
 Kind regards,
 
 
 Yipee!!!
 

Should be getting my neo1973 back this week after it spent 6 months
travelling around a few LUGS and the Ubuntu-uk community.

(slight exaggeration, but you get my drift).

Once I get a microSD card, can I run om2008.08 on my 1973?

Regards,

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

iD8DBQFInCn7auMjEM4rxIQRAuxkAJ4wlH9aXix5zvtPS0t3MbDTNy5nHwCgqEQT
SD5GlqutwAvMHE3MGacVrlc=
=xzUR
-END PGP SIGNATURE-

___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


Re: Om2008.8 release today?

2008-08-08 Thread thomasg
Ah, dammit, wrong device. That one was running the qtopia-x11 release from
yesterday.
Om2008.8 comes with Xglamo by default. My apologies.

On Fri, Aug 8, 2008 at 1:49 PM, thomasg [EMAIL PROTECTED] wrote:

 To all that tested the release and are disappointed by the graphical
 performance: You should really install kdrive-xglamo, to get the accelerated
 Xserver. It's no fun without it.
 In case someone of Openmoko reads this: I think you really should ship the
 GTA02 images with kdrive-xglamo by default, Xfbdev is really slow and
 doesn't make a good impression (especially 3rd party press tends to use the
 plain release images without knowing anything about it).


 On Fri, Aug 8, 2008 at 1:11 PM, andylockran [EMAIL PROTECTED] wrote:

 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1

 sparky mat wrote:
  Well. It's become available a few minutes ago. I am still waiting
 for
  official announcement.
 
  http://wiki.openmoko.org/wiki/Om_2008.8
  http://downloads.openmoko.org/releases/Om2008.8/
 
  Kind regards,
 
 
  Yipee!!!
 

 Should be getting my neo1973 back this week after it spent 6 months
 travelling around a few LUGS and the Ubuntu-uk community.

 (slight exaggeration, but you get my drift).

 Once I get a microSD card, can I run om2008.08 on my 1973?

 Regards,

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

 iD8DBQFInCn7auMjEM4rxIQRAuxkAJ4wlH9aXix5zvtPS0t3MbDTNy5nHwCgqEQT
 SD5GlqutwAvMHE3MGacVrlc=
 =xzUR
 -END PGP SIGNATURE-

 ___
 support mailing list
 support@lists.openmoko.org
 https://lists.openmoko.org/mailman/listinfo/support



___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


Re: Om2008.8 - Issues

2008-08-08 Thread sparky mat


 2) Installer - Doesn't connect. USB networking is setup correctly. opkg and
 wget work fine.


My bad. Assumption that opkg and wget work were based on yesterday's daily
build. They weren't. Found out that /etc/resolv.conf is empty. Why so? I'd
assume that nameserver 192.168.0.200 should be defaulted in.
___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


Re: USB Networking troubles

2008-08-08 Thread Andrew C. Dingman
On Fri, 2008-08-08 at 06:32 -0400, michael cole wrote:
 First thanks to all for replying.
 
 These changes worked.

Glad it helped. I hope the IP routing mini-lecture made clear *why* :)

 So on my Freerunner /etc/network/interfaces includes:
 
 # Ethernet/RNDIS gadget (g_ether)
 # ... or on host side, usbnet and random hwaddr
 auto usb0
 iface usb0 inet static
   address 192.168.2.202
   netmask 255.255.255.0
   network 192.168.2.0
   gateway 192.168.2.200
 # orig:
 # up echo nameserver 192.168.0.200 /etc/resolv.conf
 # using home (nimiq.net)
   up echo nameserver 207.235.125.4 /etc/resolv.conf
 
 on the desktop  /etc/network/interfaces includes:
 allow-hotplug usb0
 iface usb0 inet static
 address 192.168.2.200
 netmask 255.255.255.192
 post-up iptables -A POSTROUTING -t nat -j MASQUERADE -s 
 192.168.2.192/26
 post-up echo 1  /proc/sys/net/ipv4/ip_forward
 post-up iptables -P FORWARD ACCEPT
 pre-down iptables -D POSTROUTING -t nat -j MASQUERADE -s
 192.168.2.192/26

Almost right, and in fact this configuration won't break in practice
because you can't plug additional devices into your USB network.
However, the FreeRunner and the desktop really *should* agree about the
netmask. You have the FreeRunner thinking its local network includes 256
addresses (192.168.2.0-255), and the desktop thinking that the network
it and the FreeRunner live in includes only 64 (192.168.2.192-255). If
you choose to fix this on the desktop by using the 255.255.255.0
netmask, you'll also want to fix the masquerade rule to specify
192.168.2.192/24, as the /n part indicates a netmask with binary 1 in
the n most significant bits. (255.255.255.0 == binary IP 
  . 255.255.255.192 == binary  
 1100)

If you want to play with this stuff a bit more, you might be interested
in a tool called 'gip' that you can install on your desktop with
'apt-get install gip'. It lets you enter IPs and netmasks in any of the
normal forms and shows you the resulting network sizes and binary,
hexadecimal, and decimal representations of the results.
-- 


___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


Re: Om2008.8 - Issues

2008-08-08 Thread rakshat hooja
On Fri, Aug 8, 2008 at 6:00 PM, sparky mat [EMAIL PROTECTED] wrote:

  I found the following issues while trying out the Om2008.8 release.


 3) Messaging - The qwerty keypad has no backspace/delete key. Also, I can't
 see any way to access the numeric/special keys. Am I missing something here?


Try sliding finger towards left for del. flick keyboard upwards for numeric
keypad.




 6) Battery level indicator - Is there one? I just see a lightning icon on
 the status bar and its there even if the cable is not plugged in.


Paining error i think, reboot and see if it is still there.

Rakshat



-- 
--
Please use Firefox as your web browser. Its protects you from spyware and is
also a very feature rich browser.
www.firefox.com
___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


Re: Om2008.8 - Issues

2008-08-08 Thread William Kenworthy
On the top bar I have a small clock and some that looks like two small
blobs, one on top of the other - what are they trying to tell me?

BillK

On Fri, 2008-08-08 at 18:04 +0530, sparky mat wrote:
 
 2) Installer - Doesn't connect. USB networking is setup
 correctly. opkg and wget work fine.
 
 
 My bad. Assumption that opkg and wget work were based on yesterday's
 daily build. They weren't. Found out that /etc/resolv.conf is empty.
 Why so? I'd assume that nameserver 192.168.0.200 should be defaulted
 in.
 
 ___
 support mailing list
 support@lists.openmoko.org
 https://lists.openmoko.org/mailman/listinfo/support
-- 
William Kenworthy [EMAIL PROTECTED]
Home in Perth!

___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


Re: Om2008.8 - Issues

2008-08-08 Thread sparky mat
7) Keyboard - Predictive keyboard is nice. But there should be an option to
turn it off. And where are my 'ctrl','alt' and 'shift' :-D .. Terminal is
useless without these.
___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


Om 2008.8 doesn't ask for my pin so no gsm available but 2007 and FSO 2 do?

2008-08-08 Thread Rorschach
I just found out about the support-ml so I repost my issue here:

I flashed the new kernel and image but if I boot now I'm not getting asked for 
a pin. There's no gsm in 2008.8 for me but with 2007 Image or the FSO 2 GSM is 
working just fine. Wheren can I look for the problem?

There are no logs in /var/log and also dmesg| grep -i gsm shows absolutly 
nothing. Also find . -name gsmd from the root-dir doesn't find anything ?? I 
flashed these images:
http://downloads.openmoko.org/releases/Om2008.8/Om2008.8.rootfs.jffs2
http://downloads.openmoko.org/releases/Om2008.8/Om2008.8.uImage.bin
and flashing worked fine without any errors.


What is going wrong?


signature.asc
Description: PGP signature
___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


Re: 2008.8 - issue

2008-08-08 Thread sparky mat
+2 for killing the current keyboard

On 8/8/08, Peter Abplanalp [EMAIL PROTECTED] wrote:
 On Fri, Aug 8, 2008 at 7:33 AM, William Kenworthy [EMAIL PROTECTED]wrote:

 On Fri, 2008-08-08 at 21:21 +0800, William Kenworthy wrote:
  How do you type something like apm into the terminal application? - oh
  how I *HATE* predictive text :(
 
  Is there a way to kill it?


 +1 for killing the current keyboard.

 i suggest the keyboard from FSO.  i like the full qwerty option on that one
 as well as the interface for changing keyboards.


 --
 Peter Abplanalp


___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


2008.8 : Can receive calls but cannot call

2008-08-08 Thread Julien Cassignol
Hi everyone,

I thought I give a try and install 2008.8. I had a certain number of problems :

1) Pin isn't asked for each time (4-5 reboots), even if I launch an
application which needs PIN (dialer).
2) Dialer says No network on each call, whereas I succesfully entered my PIN.
3) I can receive calls, and just after that, I can't call !

Sounds quite mystical to me. Any ideas ?

-- 
Julien Cassignol

___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


Re: 2008.8 : Can receive calls but cannot call

2008-08-08 Thread Daniel Aeberli
+1

entered pin, can receive calls but not dial out!

Julien Cassignol a écrit :
 Hi everyone,

 I thought I give a try and install 2008.8. I had a certain number of problems 
 :

 1) Pin isn't asked for each time (4-5 reboots), even if I launch an
 application which needs PIN (dialer).
 2) Dialer says No network on each call, whereas I succesfully entered my 
 PIN.
 3) I can receive calls, and just after that, I can't call !

 Sounds quite mystical to me. Any ideas ?

   


___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


Re: 2008.8 : Can receive calls but cannot call

2008-08-08 Thread Thomas B.
On Fri, Aug 08, 2008 at 04:34:15PM +0200, Julien Cassignol wrote:
 Hi everyone,
 
 I thought I give a try and install 2008.8. I had a certain number of problems 
 :
 
 1) Pin isn't asked for each time (4-5 reboots), even if I launch an
 application which needs PIN (dialer).
 2) Dialer says No network on each call, whereas I succesfully entered my 
 PIN.
 3) I can receive calls, and just after that, I can't call !

I haven't had any of those problems yet, but when I just tried to call
my own landline to check whether I can call from my Freerunner, the
following weird thing happened:

I entered my number in my Freerunner's dialer, clicked Call, and my
landline phone started ringing. Then I clicked End call on the
Freerunner to cancel, but my landline phone kept ringing! It just
wouldn't stop ringing, until I went to the phone and picked up, heard
nothing, and ended the call there.

Can anyone confirm this?

Regards,
Thomas

PS: Otherwise, OM2008.8 looks great! Good work!


___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


Re: Is this the SIM card Hardware problem?

2008-08-08 Thread Tim Dobson
Tim Dobson wrote:
 [EMAIL PROTECTED]:~# libgsmd-tool -v -m atcmd
 libgsm-tool - (C) 2006-2007 by Harald Welte and OpenMoko, Inc.
 This program is Free Software and has ABSOLUTELY NO WARRANTY
 
 cme error: 100
 cme error: 313
 cme error: 313
 cme error: 313
 cme error: 313
 cme error: 313
 cme error: 313
 cme error: 313
 cme error: 313
 cme error: 313
 cme error: 313
 cme error: 313

Does anyone know what cme error: 313 and cme error: 100 refer to?

Tim

-- 
www.tdobson.net

If each of us have one object, and we exchange them, then each of us
still has one object.
If each of us have one idea, and we exchange them, then each of us now
has two ideas.   -  George Bernard Shaw

___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


Non-descript subject lines (was 2008.8 - issue)

2008-08-08 Thread Dylan Semler
On Fri, Aug 8, 2008 at 8:21 AM, William Kenworthy [EMAIL PROTECTED]wrote:

 How do you type something like apm into the terminal application? - oh
 how I *HATE* predictive text :(

 Is there a way to kill it?


By the way, 2008.2 - Issue is a /horrible/ subject name.  Try to be
descriptive so that

a) people can find these conversations later when searching the archives
b) people can decide which emails to read

Can you imagine If everyone sent emails with subjects like that?

-- 
Dylan

Type faster. Use Dvorak:
http://dvzine.org
___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


Re: 2008.8 : Can receive calls but cannot call

2008-08-08 Thread Rune Gangstø
I had something similar with the standard image. I made a call to
landline, hang up on the freerunner and the landline phone kept
ringing. I couldn't get it to stop ringing even if I ended the call at
the landline phone. I had to pick up the call.
I haven't got the same with the 2008.8

2008/8/8 Thomas B. [EMAIL PROTECTED]:
 On Fri, Aug 08, 2008 at 04:34:15PM +0200, Julien Cassignol wrote:
 Hi everyone,

 I thought I give a try and install 2008.8. I had a certain number of 
 problems :

 1) Pin isn't asked for each time (4-5 reboots), even if I launch an
 application which needs PIN (dialer).
 2) Dialer says No network on each call, whereas I succesfully entered my 
 PIN.
 3) I can receive calls, and just after that, I can't call !

 I haven't had any of those problems yet, but when I just tried to call
 my own landline to check whether I can call from my Freerunner, the
 following weird thing happened:

 I entered my number in my Freerunner's dialer, clicked Call, and my
 landline phone started ringing. Then I clicked End call on the
 Freerunner to cancel, but my landline phone kept ringing! It just
 wouldn't stop ringing, until I went to the phone and picked up, heard
 nothing, and ended the call there.

 Can anyone confirm this?

 Regards,
 Thomas

 PS: Otherwise, OM2008.8 looks great! Good work!


 ___
 support mailing list
 support@lists.openmoko.org
 https://lists.openmoko.org/mailman/listinfo/support


___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


Re: Om 2008.8 doesn't ask for my pin so no gsm available but 2007 and FSO 2 do?

2008-08-08 Thread leo.studer

I encountered the same kind of issues with GSM, no logs and lack of gsmd, I
would be happy to know how to contribute to debugging this, shall we write a
bug report or something ?


Rorschach wrote:
 
 really noone any idea?? Is there a way I can manually force the
 questioning for the pin? How is the applications (binary) name which asks
 for the pin?
 

-- 
View this message in context: 
http://n2.nabble.com/Om-2008.8-doesn%27t-ask-for-my-pin-so-no-gsm-available-but-2007-and-FSO-2-do--tp680561p681040.html
Sent from the Openmoko Support mailing list archive at Nabble.com.


___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


Re: Om 2008.8 doesn't ask for my pin so no gsm available but 2007 and FSO 2 do?

2008-08-08 Thread Rorschach
On Fri, 8 Aug 2008 09:30:05 -0700 (PDT)
leo.studer [EMAIL PROTECTED] wrote:

 
 I encountered the same kind of issues with GSM, no logs and lack of gsmd, I
 would be happy to know how to contribute to debugging this, shall we write a
 bug report or something ?

I already opened one: https://docs.openmoko.org/trac/ticket/1765

It would be nice if you could confirm it there so the developers know that it 
happens to more people. If you have more information than me also post them to 
the bugreport.

thanks Rorschach


signature.asc
Description: PGP signature
___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


Re: Non-descript subject lines

2008-08-08 Thread Esben Stien
Dylan Semler [EMAIL PROTECTED] writes:

 I didn't see sparky's original thread 

Well, the original thread was still at fault. The OP should have
posted a new mail for each issue.

-- 
Esben Stien is [EMAIL PROTECTED] s  a 
 http://www. s tn m
  irc://irc.  b  -  i  .   e/%23contact
   sip:b0ef@   e e 
   jid:b0ef@n n

___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


FSO compile error

2008-08-08 Thread Matt Margush
Hi,

I'm getting this error trying to compile FSO with Mokomakefile, and am
wondering if anyone has seen it?

Thanks,

Matt

NOTE: package zhone-.0.0+gitr900105c27bd176fdca4e8f896b2c8221181491de-r7:task
do_compile: started
ERROR: function do_compile failed
ERROR: log data follows
(/home/matt/workspace/fso/build/tmp/work/armv4t-angstrom-linux-gnueabi/zhone-.0.0+gitr900105c27bd176fdca4e8f896b2c8221181491de-r7/temp/log.do_compile.7526)
| /home/matt/workspace/fso/build/tmp/staging/i686-linux/usr/bin/python:
can't open file 'setup.py': [Errno 2] No such file or directory
| FATAL: python setup.py build_ext execution failed.
NOTE: Task failed:
/home/matt/workspace/fso/build/tmp/work/armv4t-angstrom-linux-gnueabi/zhone-0.0.0+gitr900105c27bd176fdca4e8f896b2c8221181491de-r7/temp/log.do_compile.7526
NOTE: package zhone-0.0.0+gitr900105c27bd176fdca4e8f896b2c8221181491de-r7:
task do_compile: failed
ERROR: TaskFailed event exception, aborting
NOTE: package zhone-0.0.0+gitr900105c27bd176fdca4e8f896b2c8221181491de: failed
ERROR: Build of
/home/matt/workspace/fso/openembedded/packages/freesmartphone/zhone_git.bb
do_compile failed
ERROR: Task 868
(/home/matt/workspace/fso/openembedded/packages/freesmartphone/zhone_git.bb,do_compile)
failed
NOTE: Tasks Summary: Attempted 4053 tasks of which 0 didn't need to be
rerun and 1 failed.
ERROR: 
'/home/matt/workspace/fso/openembedded/packages/freesmartphone/zhone_git.bb'
failed
NOTE: build 200808072105: completed
make: *** [fso-image] Error 1

___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


Re: Is anyone working on Ruby 1.9 for GTA01/02 ?

2008-08-08 Thread Jim Morris
sparky mat wrote:
 I was wondering if anyone was working on porting Ruby 1.9(.0-3) for 
 GTA01/02.

Now I have mokomakefile working, I was going to port 1,8,6 although 1.8.5 is 
available as an ipkg 
but is missing essential libraries.

-- 
Jim Morris, http://blog.wolfman.com

___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


Re: 2008.8 - issue

2008-08-08 Thread Dale Maggee
William Kenworthy wrote:
 On Fri, 2008-08-08 at 21:21 +0800, William Kenworthy wrote:
   
 How do you type something like apm into the terminal application? - oh
 how I *HATE* predictive text :(

 Is there a way to kill it?

 BillK

 

 Still want to kill it - preferably permanently.  I cant believe anyone
 thought this was a good idea :(

 Also looks like there is no backspace key to even try to fix the mess it
 makes of text.

 I'll have to ignore the terminal until someone fixes it up .

 BillK
   

I'm right there with ya, bill - it's very pretty, but the predictive 
text is *so* annoying! seems pretty unneccessary for a qwerty keyboard 
to me - I thought it was interesting to learn that when i typed in 
'internode', I actually meant 'interview'?!? :O

Also I find the way it automatically adds spaces to be annoying, not 
very good in a terminal.

It's a *big* improvement in terms of finger-pressability over the 
matchbox keyboard on 2007.2, and it's *much* prettier, but the 
predictive text makes it more difficult to use, especially in a terminal.

I'd also really like to see an enter key on the qwerty page, and maybe 
(I know I'm pushing it here) a couple of the most commonly used symbols 
such as hyphen and period on the qwerty page.

-Dale

___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


Re: OM2008.08 - Charging indicator?

2008-08-08 Thread Andy Green
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Somebody in the thread at some point said:
| How can I tell/make sure my Freerunner is actually charging?
| There is what appears to be a lightning bolt in the top right corner,
| but that's there whether it's plugged in or not.
|
| And, since it goes into suspend after a short timeout (30 seconds?),
| does it continue to charge during suspend?

This is my fault, I broke it in the kernel yesterday.  It'll be fixed in
kernel update in the next couple of days.

For charging in suspend, yes, the charger in PMU is autonomous.  If you
change plugged state of USB cable, it will wake, otherwise it will stay
in charging readiness state that it was in before suspend during suspend.

During suspend same as during wake, separate charging state machine in
the PMU determines when charging starts and finishes, so it is pretty
unaffected by suspend action.

- -Andy
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)
Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org

iEYEARECAAYFAkicnqkACgkQOjLpvpq7dMob8QCfYElRuCZBCKSZRdNwYOroUOkf
AusAn0efO538iyxTlEMabhXoXDIhPzQt
=H+U8
-END PGP SIGNATURE-

___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


neo freerunner freezes when gps turned on

2008-08-08 Thread Vimal Joseph
Hi,

I'v posted a problem of frequent freezing of Neo Freerunner.
http://lists.openmoko.org/pipermail/support/2008-August/000926.html

It turned out that the problem is with the gps. As the system freezes
after some time whenever i turnd the gps on. The problem was not there
with the qtopia image may be because the driver for gps is not there
in qtopia (I'm not very sure about this).

I'v just installed the 2008.8 image and the phone freezes whenever i
turned the gps on. With in few seconds the screen freezes and nothing
works till i remove the battery.

Is any one having same symptoms? What can be the problem?


regards,

~vimal
-- 
Free Software, Free Society
സ്വതന്ത്ര സോഫ്​റ്റ്​വെയര്‍, സ്വതന്ത്ര സമൂഹം
http://fsfs.hipatia.net
___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


Re: OM2008.08 - Charging indicator?

2008-08-08 Thread Andy Green
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Somebody in the thread at some point said:
| Sry I misread your post. Knowing if it's charging or not goes with the
command:
|
| cat /sys/devices/platform/bq2700-battery.0/power_supply/bat/status
|
| Also here the bug is responsilbe for no gui-view of this information.

Yep.

- -Andy

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)
Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org

iEUEARECAAYFAkicnssACgkQOjLpvpq7dMo7+wCVHU3IQww5++y5mIMKC53Qq0iJ
8QCghWMg6OmOSpmReihbRsxLtGgEpZg=
=0ffa
-END PGP SIGNATURE-

___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


Re: Om 2008.8 doesn't ask for my pin so no gsm available but 2007 and FSO 2 do?

2008-08-08 Thread Rolf Camps
Op vrijdag 08-08-2008 om 19:15 uur [tijdzone +0200], schreef Rorschach:
 It would be nice if you could confirm it there so the developers know
 that it happens to more people.

Same with me, only asked one time for the pin in more then 12 boots. Al
worked fine with 2007.2?

Rolf


___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


Re: Is anyone working on Ruby 1.9 for GTA01/02 ?

2008-08-08 Thread Jim Morris
sparky mat wrote:
 On Fri, Aug 8, 2008 at 11:24 PM, Jim Morris [EMAIL PROTECTED] 
 mailto:[EMAIL PROTECTED] wrote:
 
 sparky mat wrote:
   I was wondering if anyone was working on porting Ruby 1.9(.0-3) for
   GTA01/02.
 
 Now I have mokomakefile working, I was going to port 1,8,6 although
 1.8.5 is available as an ipkg
 but is missing essential libraries.
 
 
 I just felt that 1.9 would make more sense given that on the mobile, 
 interpreting would be quite a bit slower. If you can help me get 
 started, I will try and port 1.9.0-3.

A good start would be to look at the bb for the current ruby 1.8.5 on OE, it 
should have most of the 
changes needed, at least that is what I was going to do. I can't start until 
the weekend though as 
my real job requires me to spend some time looking at it rather than the FR ;)



-- 
Jim Morris, http://blog.wolfman.com

___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


phone not registering on the network

2008-08-08 Thread xaos x
after installing om2008.8, the gta02 will not register on the network. after 
three reboots, i was finally able to get ssh to respond and, upon logging in, 
could not find gsmd anywhere. is gsmd still used in om2008.8? if not, how do we 
go about registering on the network?

-Tom

___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


Alternate Keyboard(s) on 2008.8

2008-08-08 Thread Dirk Bergstrom
Is is possible to install a different keyboard on 2008.8?  If not, I'd 
like to see that as a feature Real Soon Now.

I find the stock keyboard to be almost totally unusable due to the 
predictive text feature.  Even if the predictive stuff was removed, it 
would still be less usable for me than the matchbox qwerty keyboard, 
which had important keys like ctrl, dash, period and return all on the 
same page.

I will be using the phone with a stylus for most interaction, so I don't 
need a finger-friendly keyboard.  It might be nice to occasionally have 
one, but it's a *very* low priority for me.

I will primarily type in the terminal, the notes app, and the browser: 
unix commands, URLs, and notes like book titles, author names, part 
numbers and the like.  In other words, almost nothing I type will 
benefit from predictive input (in fact it would be a distinct annoyance).

--
Dirk

___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


Re: Is this the SIM card Hardware problem?

2008-08-08 Thread Tim Dobson
Tim Dobson wrote:
 Tim Dobson wrote:
 [EMAIL PROTECTED]:~# libgsmd-tool -v -m atcmd
 libgsm-tool - (C) 2006-2007 by Harald Welte and OpenMoko, Inc.
 This program is Free Software and has ABSOLUTELY NO WARRANTY

 cme error: 100
 cme error: 313
 cme error: 313
 cme error: 313
 cme error: 313
 cme error: 313
 cme error: 313
 cme error: 313
 cme error: 313
 cme error: 313
 cme error: 313
 cme error: 313
 
 Does anyone know what cme error: 313 and cme error: 100 refer to?

:(
http://activexperts.com/activsms/sms/gsmerrorcodes/
implies that

error 313 is sim error and error 100 is unknown error.

doesn't look to good for me and my sim.

Tim

-- 
www.tdobson.net

If each of us have one object, and we exchange them, then each of us
still has one object.
If each of us have one idea, and we exchange them, then each of us now
has two ideas.   -  George Bernard Shaw

___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


Re: Alternate Keyboard(s) on 2008.8

2008-08-08 Thread Dale Maggee
+1

This sums my feelings up exactly

Dirk Bergstrom wrote:
 Is is possible to install a different keyboard on 2008.8?  If not, I'd 
 like to see that as a feature Real Soon Now.

 I find the stock keyboard to be almost totally unusable due to the 
 predictive text feature.  Even if the predictive stuff was removed, it 
 would still be less usable for me than the matchbox qwerty keyboard, 
 which had important keys like ctrl, dash, period and return all on the 
 same page.

 I will be using the phone with a stylus for most interaction, so I don't 
 need a finger-friendly keyboard.  It might be nice to occasionally have 
 one, but it's a *very* low priority for me.

 I will primarily type in the terminal, the notes app, and the browser: 
 unix commands, URLs, and notes like book titles, author names, part 
 numbers and the like.  In other words, almost nothing I type will 
 benefit from predictive input (in fact it would be a distinct annoyance).

 --
 Dirk

 ___
 support mailing list
 support@lists.openmoko.org
 https://lists.openmoko.org/mailman/listinfo/support

   


___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


Re: 2008.8 - how to get wifi connection

2008-08-08 Thread Cliff Brake
On Fri, Aug 8, 2008 at 4:54 PM, digger vermont [EMAIL PROTECTED] wrote:
 Okay I give up.  I can't figure out how to get a wifi connection in
 2008.8

The following instructions got me on a WPA wifi network:

http://wiki.openmoko.org/wiki/Wireless_Networking

Cliff

-- 
===
Cliff Brake
http://bec-systems.com

___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


Re: 2008.08.08 ASU - Can't See Wifi

2008-08-08 Thread Cry Regarder

Problem with ASU release:

The diversity wifi app doesn't find any access points.

Under settings, the status of wifi is set to unknown and there doesn't appear 
to be any options to change it.

Suggestions on getting wifi working for this release?

Thanks!

Cry


___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


Re: 2008.08.08 ASU - How to close application?

2008-08-08 Thread Cry Regarder
How do you exit a running program in ASU?  Is there any way easier then 
clicking the down triangle and choosing REMOVE?  

How is the user supposed to guess that REMOVE = CLOSE VISIBLE APPLICATION?

Thanks,

Cry


___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


Re: Om2008.8 release today?

2008-08-08 Thread Tim Dobson
andylockran wrote:
 Once I get a microSD card, can I run om2008.08 on my 1973?

Hi andy,

There are images:

http://buildhost.openmoko.org/daily/neo1973/200808/20080807/

So I assume so...

I'm not saying i recommend it my any means...

-- 
www.tdobson.net

If each of us have one object, and we exchange them, then each of us
still has one object.
If each of us have one idea, and we exchange them, then each of us now
has two ideas.   -  George Bernard Shaw

___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


2008.08 - Importing contacts?

2008-08-08 Thread Dale Maggee
How do I Import my contacts into 2008.08? will the same python scripts 
work, or is it completely different?

-Dale

___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


Re: Om2008.8 - Issues

2008-08-08 Thread Craig Woodward
Wow.. That has to be the worst interface I've ever used for a keyboard.  What 
happened to the ABC jumble in the corner that let you change from T9 and/or a 
full mini-key board?  I used the other two for almost everything, and never 
liked this version of the keyboard, but there appears to be no way to change 
it's setup now.


 rakshat hooja [EMAIL PROTECTED] wrote: 

=
On Fri, Aug 8, 2008 at 6:00 PM, sparky mat [EMAIL PROTECTED] wrote:

  I found the following issues while trying out the Om2008.8 release.


 3) Messaging - The qwerty keypad has no backspace/delete key. Also, I can't
 see any way to access the numeric/special keys. Am I missing something here?


Try sliding finger towards left for del. flick keyboard upwards for numeric
keypad.




 6) Battery level indicator - Is there one? I just see a lightning icon on
 the status bar and its there even if the cable is not plugged in.


Paining error i think, reboot and see if it is still there.

Rakshat



-- 
--
Please use Firefox as your web browser. Its protects you from spyware and is
also a very feature rich browser.
www.firefox.com


___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


Re: Compiling C on the phone

2008-08-08 Thread Andrew Chu
Hi Dirk

Sounds like you're missing binutils, or symlinks to the assembler and 
linker:

try:

   opkg install binutils

then:

   ln -s /usr/bin/arm-angstrom-linux-gnueabi-as /usr/bin/as

and continue creating simlinks for all of the executables prefixed with 
arm-angstrom-linux-gnueabi-

Hope that helps,
Andrew

Dirk Bergstrom wrote:
 I installed 2008.8 today, and after playing around with it for an hour 
 or so, I set out to install kedpm, a pygtk password manager.  I 
 installed pygtk and friends, but I ran into trouble trying to get 
 pycrypto installed.  It has a bunch of C extensions that need to be 
 compiled.
 
 After a few hours banging my head on the desk, I have so far installed 
 the following packages:
 
 python-devel
 python-setuptools
 gcc
 cpp
 cpp-symlinks
 gcc-symlinks
 libc6-dev
 
 But I'm stuck at this point:
 
 # gcc hello.c
 gcc: error trying to exec 'as': execvp: No such file or directory
 
 Also, there is no 'ld' to be found on the phone, so I'm sure I'll need 
 that as well.
 
 Is there a package or packages I can install to get everything I need to 
 build python C extentions on the phone?  Is there a way to build them on 
 my linux machine that doesn't require building the entire openmoko 
 distribution first?
 
 Failing that, does anyone have a pycrypto package I can download?
 
 --
 Dirk


___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


Need help using Neo's network connection from a PC using Bluetooth

2008-08-08 Thread Timo Jyrinki
Hi. If anyone happens to have title's setup working, please reply
and/or write on the section that I created for it:

http://wiki.openmoko.org/wiki/Manually_using_Bluetooth#Using_Neo.27s_connection_from_PC

I formatted the page a bit since it seemed all the using network via
Bluetooth seemed to concentrate on using PC's network from Neo, while
the most usual use case with phones is to use phone's network
connection from a laptop when travelling.

-Timo

___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


Re: Alternate Keyboard(s) on 2008.8

2008-08-08 Thread Ole Kliemann
There is only one possible solution. There must be easy customizable
keyboard files so that everybody is able to use the keyboard he likes.
Besides there must be an option to switch between different keyboards.
It's a simple idea: one tool for one job. 

The predictive text with the right dictionary can be very powerful when
writing SMS. You don't really need to aim for the letters, just hit
somewhere close to them. 

Still the Qtopia keyboard like it comes with Om2008.8 now is pretty
flawed lacking punctation signs. You have to switch two layouts further
to find a comma or period. Despite the fact that there is a lot of space
left on the alphabet keyboard.

And certainly for everything except SMS and maybe sometimes writing
notes the layout alone is a disaster; not to mention the predictive
text.

As I understand, there has been a long discussion about why not using
the illume keyboard. I have not completely followed that discussion and
I do not claim to have an understanding for the problems of development
that may be connected to this issue.

But I'd like to stress at this point that I believe the customizability
of input methods - i.e. the possibility of individually communicating
with the device - is a kind of freedom that many people are seeking with
the FR.

Ole


pgpKupNw21yrF.pgp
Description: PGP signature
___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


Re: Alternate Keyboard(s) on 2008.8 - I have the full terminal keyboard

2008-08-08 Thread Matt
I don't really understand why, but sometimes I get the predictive text 
(limited keys) and sometimes I get the full keyboard (choice of three).

I used ASU 200080806, then opkg update..etc.

Ole Kliemann wrote:
 There is only one possible solution. There must be easy customizable
 keyboard files so that everybody is able to use the keyboard he likes.
 Besides there must be an option to switch between different keyboards.
 It's a simple idea: one tool for one job. 

 The predictive text with the right dictionary can be very powerful when
 writing SMS. You don't really need to aim for the letters, just hit
 somewhere close to them. 

 Still the Qtopia keyboard like it comes with Om2008.8 now is pretty
 flawed lacking punctation signs. You have to switch two layouts further
 to find a comma or period. Despite the fact that there is a lot of space
 left on the alphabet keyboard.

 And certainly for everything except SMS and maybe sometimes writing
 notes the layout alone is a disaster; not to mention the predictive
 text.

 As I understand, there has been a long discussion about why not using
 the illume keyboard. I have not completely followed that discussion and
 I do not claim to have an understanding for the problems of development
 that may be connected to this issue.

 But I'd like to stress at this point that I believe the customizability
 of input methods - i.e. the possibility of individually communicating
 with the device - is a kind of freedom that many people are seeking with
 the FR.

 Ole
   
 

 ___
 support mailing list
 support@lists.openmoko.org
 https://lists.openmoko.org/mailman/listinfo/support
   

___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


Re: Om2008.8 release today?

2008-08-08 Thread Peter Rasmussen
I just tried this image set (kernel+rootfs) on a Neo1973 and got a panic 
when attempting to boot into the SD card.
However, when booting into the NAND resident image it boots up all right.

Only u-boot and the kernel image should be the same for the two.

This is actually first time that I have met the situation that I am not 
able to boot he same rootfs image when copied to the SD card, but I am 
when booting into the image on the resident NAND on the Neo1973.

Peter

Tim Dobson wrote:
 andylockran wrote:
   
 Once I get a microSD card, can I run om2008.08 on my 1973?
 

 Hi andy,

 There are images:

 http://buildhost.openmoko.org/daily/neo1973/200808/20080807/

 So I assume so...

 I'm not saying i recommend it my any means...

   

___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


Re: Compiling C on the phone

2008-08-08 Thread Shawn Rutledge
On Fri, Aug 8, 2008 at 5:06 PM, Dirk Bergstrom [EMAIL PROTECTED] wrote:
 I'll write this up in the wiki later today.

I've been doing

opkg install task-openmoko-native-sdk

which has dependencies on all the packages that you will need.

___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


Change root's shell?

2008-08-08 Thread Dirk Bergstrom
Is there any reason it would be a bad idea to change root's shell from 
/bin/sh to /bin/bash?  I miss all the conveniences, and I keep 
forgetting to type 'bash' when I log in.

--
Dirk

___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


2008.8 screen blanks permanently on suspend

2008-08-08 Thread William Kenworthy
I have had the FR go into blank screen a number of times and refuse to
wakeup.  Its not suspended as usb networking still works.  Trying to
restart the xserver hangs.  If I press the power button briefly, nothing
happens.  Same if I hold it for a second or two.  At ~ 10 seconds it
will shutdown - sometimes.

Is this a bug or is there some other way to get the screen back without
a time consuming reboot.

BillK



-- 
William Kenworthy [EMAIL PROTECTED]
Home in Perth!

___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


Re: Change root's shell?

2008-08-08 Thread William Kenworthy
I tried this on 2007.2 - worked fine until I rebooted and whole lot of
things to do with X stopped working.  e.g., you could not enter text
into the terminal app.

BillK

On Fri, 2008-08-08 at 18:28 -0700, Dirk Bergstrom wrote:
 Is there any reason it would be a bad idea to change root's shell from 
 /bin/sh to /bin/bash?  I miss all the conveniences, and I keep 
 forgetting to type 'bash' when I log in.
 
 --
 Dirk
 
 ___
 support mailing list
 support@lists.openmoko.org
 https://lists.openmoko.org/mailman/listinfo/support
-- 
William Kenworthy [EMAIL PROTECTED]
Home in Perth!

___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


Re: Compiling C on the phone

2008-08-08 Thread Michael Shiloh


Dirk Bergstrom wrote:
 Andrew Chu wrote:
   Sounds like you're missing binutils, or symlinks to the assembler and 
 linker:
  opkg install binutils
   then:
  ln -s /usr/bin/arm-angstrom-linux-gnueabi-as /usr/bin/as
 
 Actually, there's a binutils-symlinks package that does all that.  Dunno 
 why it's a separate package...
 
   Hope that helps,
 
 It does indeed.  hello.c built just fine, and so did the pycrypto stuff. 
   I had to install python-compile, but then the install went through as 
 well.
 
 Thanks very much.
 
 I'll write this up in the wiki later today.


Thanks Dirk. This is very cool. The ability to compile on my phone is 
something I want to be able to show off.

M

___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


Re: Compiling C on the phone

2008-08-08 Thread Michael Shiloh


sparky mat wrote:
 
 Thanks Dirk. This is very cool. The ability to compile on my phone is
 something I want to be able to show off.
 
 M
 
 
 I agree! I am compiling Ruby 1.9 on my phone!!

Please wikify!

___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


Re: Todays 2008.08 Bug list [[ sorry - offtopic now ]]

2008-08-08 Thread Yaroslav Halchenko
I am sorry but am I the only one who got 4 copies of the same email?
according to headers it was sent only to -community list, right? thus I
should have gotten just 1 instance of the email of this class, right?
;-)

On Fri, 08 Aug 2008, Craig Woodward wrote:


 Ok, so here are just a few things I've found working with the current image 
 today:

 On the plus side:

 The new SMS message app is MUCH improved from 2007.* and qt. Very nice job on 
 that part!  Almost makes the phone worth using as a phone now...

 Contact Manager has the same problem as the system clock (bottom 2 buttons 
 are not usable, which is a huge issue).

-- 
  .-.
=--   /v\  =
Keep in touch// \\ (yoh@|www.)onerussian.com
Yaroslav Halchenko  /(   )\   ICQ#: 60653192
   Linux User^^-^^[17]



___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


Om 2008.08 Bug reports

2008-08-08 Thread Marek Lindner

Hi,

I'm very happy to see that you are testing our latest image so eagerly. All 
your feedback is _highly_ welcome. But we have to filter the bugs from the 
new ideas, known bugs from news bugs, etc. If you just keep sending mails 
like you do now we easily loose track of your input.

Please check our bug tracker at:
https://docs.openmoko.org/

Many bugs you mention here are already known. Have a look in the bug tracker 
whether they are listed. Eventually a workaround is published there.

If you found a new bug just open a new ticket, describe your problem and how 
to reproduce it. Once the bug is showing up in the tracker our QA team will 
follow up.


Happy Hacking,
Marek

___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support


2008.8 - minimo's failed dependency

2008-08-08 Thread Dylan Semler
Anyone know why we don't have the most updated version of this library in
2008.8?

# opkg install minimo_0.02\+cvs20070626-r0_armv4t.ipk
Installing minimo (1:0.02+cvs20070626-r0) to root...
Collected errors:
 * ERROR: Cannot satisfy the following dependencies for minimo:
 *  libfreetype6 (= 2.3.6) *

# opkg install libfreetype6
Package libfreetype6 (2.3.5-r2) installed in root is up to date.

I assume it was in all the other releases because I didn't have any problems
installing minimo on them:

-- 
Dylan

Type faster. Use Dvorak:
http://dvzine.org
___
support mailing list
support@lists.openmoko.org
https://lists.openmoko.org/mailman/listinfo/support