James Brown | 13 May 2013 19:22
Picon

Troubles with reflashing n900

I reflashed my n900 in the case of crashing it after installing the
latest version of CSSU Thumb, I installed the latest version of the
kernel power (including u-boot) and the latest CSSU testing.
It worked well but after restoring packeges I used earlier my device
does not load - after loading u-boot menu and choicing the kernel for
loading it writes "malformed function" and does not want to load.
I tried to reflash it but when I connect it to my PC instead reflashing
it loads u-boot menu.
What I need to do for restore my device?
allan George | 7 Apr 2013 08:14
Picon

Qemu error

Hi,

I have compiled my project, it uses :---
1> WX-widget base class (i.e uses socket, thread, string related classes..... no GUI stuff)
2> Libwebsocket (http://libwebsockets.org/trac)

When i run executable under sb2( scratchbox ). I get following error

x$ sb2 -eR vscpd
qemu: uncaught target signal 11 (Segmentation fault) - core dumped
Exit reason and status: signal 11 (core dumped)


Please suggest this error is because of what ?

//Allan


<div><p>Hi,<br><br>I have compiled my project, it uses :---<br>1&gt; WX-widget base class (i.e uses socket, thread, string related classes..... no GUI stuff)<br>2&gt; Libwebsocket (<a href="http://libwebsockets.org/trac">http://libwebsockets.org/trac</a>)<br><br>When i run executable under sb2( scratchbox ). I get following error<br><br>x$ sb2 -eR vscpd<br>qemu: uncaught target signal 11 (Segmentation fault) - core dumped<br>Exit reason and status: signal 11 (core dumped)<br><br><br>Please suggest this error is because of what ?<br><br>//Allan<br><br><br></p></div>
Mohsen Pahlevanzadeh | 9 Jan 2013 17:26
Gravatar

viber.com

Dear all,

Did you hear about viber.com ?  
How can i install same thing under N900?

--mohsen

Pavel Řezníček | 26 Dec 2012 07:59
Picon

PDF viewer stopped working

Hello everybody,

I have updated my N900 recently from testing or even devel sources. Then the PDF viewer stopped working.
It says it doesn’t have enough memory to open that file. Just by any file I try to open.
What package should I reinstall or downgrade? Or what else should I do?
Thanks.
--
Pavel Řezníček

vývojář a správce sítě
Farní sbor Českobratrské církve evangelické – Korandův sbor
Anglické nábřeží 13
301 50 Plzeň

Odesláno z mého telefonu Nokia N900 s linuxovým operačním systémem Maemo 5 Fremantle.

<div>
<p>Hello everybody,
<br><br>I have updated my N900 recently from testing or even devel sources. Then the PDF viewer stopped working.
<br>It says it doesn&rsquo;t have enough memory to open that file. Just by any file I try to open.
<br>What package should I reinstall or downgrade? Or what else should I do?
<br>Thanks.
<br>-- 
<br>Pavel &#344;ezn&iacute;&#269;ek
<br>
<br>v&yacute;voj&aacute;&#345; a&nbsp;spr&aacute;vce s&iacute;t&#283;
<br>Farn&iacute; sbor &#268;eskobratrsk&eacute; c&iacute;rkve evangelick&eacute; &ndash; Korand&#367;v sbor
<br>Anglick&eacute; n&aacute;b&#345;e&#382;&iacute; 13
<br>301&nbsp;50 Plze&#328;
<br>
<br>Odesl&aacute;no z&nbsp;m&eacute;ho telefonu Nokia&nbsp;N900 s&nbsp;linuxov&yacute;m opera&#269;n&iacute;m syst&eacute;mem Maemo 5 Fremantle.<br></p>
</div>
aidy lewis | 22 Dec 2012 13:18
Picon

libssl

Hi,

I am trying to use leiningen for Clojure development through a bash
shell installed on my N900.

The error tells me that the libssl is out of date, but libssl doesn't
seem to be in a maemo repo.

Could anyone tell me how I can install libssl?

--

-- 
Aidy
Developer-Artist
Pali Rohár | 1 Dec 2012 13:23
Picon

Maemo5 & WPA2 EAP TTLS+GTC

Hello,

I needed to connect to WiFi WPA2 network which using EAP/TTLS+GTC 
authentification. Maemo5 has for these settings chechboxes in 
Control Panel, but it does not remember password for TTLS+GTC 
authentification. It is really annoing that user must enter 
password every time.

I found which Maemo application is responsible for EAP 
authentification. It is daemon /usr/bin/eapd which is in Nokia 
non-free proprietary package osso-wlan-security. So fixing this 
bug is not possible :-(

But I found string "EAP_GTC_passcode" in that daemon, so it 
should read password from some configuration. I stored wifi GTC 
password to gconf and it worked.

So problem is that Maemo Control Panel Connections GUI does not 
have password field for TTLS+GTC authentification and eapd daemon 
does not store password automatically.

*Here is manual solution how to store password for EAP/TTLS+GTC*

1. Find gconf dir for wifi network:

This shell script will print all wifi networks with gconf dir:

for line in `gconftool --all-dirs /system/osso/connectivity/IAP`; 
do gconftool -g $line/name; echo $line; echo; done

2. Set/Change password for wifi network specified by gconf dir:

replace <dir> with gconf dir from step 1 and <password> for real

gconftool -s '<dir>/EAP_GTC_passcode' -t string '<password>'

-- 
Pali Rohár
pali.rohar <at> gmail.com
Hello,

I needed to connect to WiFi WPA2 network which using EAP/TTLS+GTC 
authentification. Maemo5 has for these settings chechboxes in 
Control Panel, but it does not remember password for TTLS+GTC 
authentification. It is really annoing that user must enter 
password every time.

I found which Maemo application is responsible for EAP 
authentification. It is daemon /usr/bin/eapd which is in Nokia 
non-free proprietary package osso-wlan-security. So fixing this 
bug is not possible :-(

But I found string "EAP_GTC_passcode" in that daemon, so it 
should read password from some configuration. I stored wifi GTC 
password to gconf and it worked.

So problem is that Maemo Control Panel Connections GUI does not 
have password field for TTLS+GTC authentification and eapd daemon 
does not store password automatically.

*Here is manual solution how to store password for EAP/TTLS+GTC*

1. Find gconf dir for wifi network:

This shell script will print all wifi networks with gconf dir:

for line in `gconftool --all-dirs /system/osso/connectivity/IAP`; 
do gconftool -g $line/name; echo $line; echo; done

2. Set/Change password for wifi network specified by gconf dir:

replace <dir> with gconf dir from step 1 and <password> for real

gconftool -s '<dir>/EAP_GTC_passcode' -t string '<password>'

--

-- 
Pali Rohár
pali.rohar <at> gmail.com
Alexander Lunev | 24 Nov 2012 19:08
Picon

double screen

Hello everybody, excuse me for repost from here:
http://maemo.org/community/maemo-users/double_screen/
but maybe someone here not reading forum.

I'm having a problem with my N800, it starts appearing two screens
folding one on another, second screen is about 15 pixels lower than
the first. While there are two visual screens, touchscreen is working
only on one, the first one.

process list of just started system is here:

http://pastebin.com/8tYvVHiK

see pictures here:

http://imgur.com/a/FFUzb#0

Also, note that these two screens appears right after system starts
and remains till system shutdown (see horizontal line on starting and
ending screens). And there are two xterms in process list, as if it's
not just second view of system screen, but indeed two separate
processes which starts two subprocesses.

So, what is this and how do i remove second screen?

I have latest OS for this tablet and i didn't install anything that
could lead to such problem, it starts without a reason.

--

-- 
your sweet isn't ready yet
Pavel Řezníček | 21 Nov 2012 15:14
Picon

Re: USB host mode

Hello Pali, thanks for your tip, that thread looks great!



2012/11/21 Pali Rohár <pali.rohar <at> gmail.com>
On Friday 16 November 2012 09:39:39 Pavel Řezníček wrote:
> Dear Maemo fellows,
>
> I am trying to use my N900 like an USB host.
> i bought an A-A USB connector so I could plug in devices using
> my Nokia USB cable. I installed h-e-n, the USB host mode
> enabler.
> I played around with it but every device connection ended up in
> a kernel driver segfault (reported by dmesg). Any clues what
> am I doing wrong?
> Thanks in advance for your future responses.

Hi, you can try to use usbmode from TMO tread:
http://talk.maemo.org/showthread.php?t=85658

--
Pali Rohár
pali.rohar <at> gmail.com



--
Pavel Řezníček
vývojář a správce počítačových sítí
software developer and computer network administrator
Farní sbor Českobratrské církve evangelické – Korandův sbor
Parrish Congregation of the Protestant Church of Czech Brethern – Koranda Congregation
Anglické nábřeží 13
301 00 Plzeň/Pilsen
Plzeňský kraj/Pilsen District, Czechia, Central Europe

<div>
<p>Hello Pali, thanks for your tip, that thread looks great!<br></p>
<div class="gmail_extra">
<br><br><div class="gmail_quote">2012/11/21 Pali Roh&aacute;r <span dir="ltr">&lt;<a href="mailto:pali.rohar <at> gmail.com" target="_blank">pali.rohar <at> gmail.com</a>&gt;</span><br><blockquote class="gmail_quote">
<div class="im">On Friday 16 November 2012 09:39:39 Pavel &#344;ezn&iacute;&#269;ek wrote:<br>
&gt; Dear Maemo fellows,<br>
&gt;<br>
&gt; I am trying to use my N900 like an USB host.<br>
&gt; i bought an A-A USB connector so I could plug in devices using<br>
&gt; my Nokia USB cable. I installed h-e-n, the USB host mode<br>
&gt; enabler.<br>
&gt; I played around with it but every device connection ended up in<br>
&gt; a kernel driver segfault (reported by dmesg). Any clues what<br>
&gt; am I doing wrong?<br>
&gt; Thanks in advance for your future responses.<br><br>
</div>Hi, you can try to use usbmode from TMO tread:<br><a href="http://talk.maemo.org/showthread.php?t=85658" target="_blank">http://talk.maemo.org/showthread.php?t=85658</a><br><span class="HOEnZb"><br>
--<br>
Pali Roh&aacute;r<br><a href="mailto:pali.rohar <at> gmail.com">pali.rohar <at> gmail.com</a></span>
</blockquote>
</div>
<br><br clear="all"><br>-- <br><div>Pavel &#344;ezn&iacute;&#269;ek</div>
<div>v&yacute;voj&aacute;&#345; a spr&aacute;vce po&#269;&iacute;ta&#269;ov&yacute;ch s&iacute;t&iacute;</div>
<div>
<div>software developer and computer network administrator</div>Farn&iacute; sbor &#268;eskobratrsk&eacute; c&iacute;rkve evangelick&eacute; &ndash; Korand&#367;v sbor</div>
<div>Parrish Congregation of the Protestant Church of Czech Brethern &ndash; Koranda Congregation</div>
<div>Anglick&eacute; n&aacute;b&#345;e&#382;&iacute; 13</div>
<div>301 00 Plze&#328;/Pilsen</div>
<div>Plze&#328;sk&yacute; kraj/Pilsen District, Czechia, Central Europe</div>
<br>
</div>
</div>
Jim Craven | 16 Nov 2012 11:36

Re: maemo-users Digest, Vol 91, Issue 1

On my N800 I used information from the following to successfully access 
flash drives.

http://blogs.forum.nokia.com/blog/kate-alholas-forum-nokia-blog/2008/01/21/usb-on-the-go

https://garage.maemo.org/projects/usb-otg-plugin/

----- Original Message ----- 
From: <maemo-users-request <at> maemo.org>
To: <maemo-users <at> maemo.org>
Sent: Friday, November 16, 2012 5:00 AM
Subject: maemo-users Digest, Vol 91, Issue 1

> Send maemo-users mailing list submissions to
> maemo-users <at> maemo.org
>
> To subscribe or unsubscribe via the World Wide Web, visit
> https://lists.maemo.org/mailman/listinfo/maemo-users
> or, via email, send a message with subject or body 'help' to
> maemo-users-request <at> maemo.org
>
> You can reach the person managing the list at
> maemo-users-owner <at> maemo.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of maemo-users digest..."
>
>
> Today's Topics:
>
>   1. USB host mode (Pavel ?ezn??ek)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Fri, 16 Nov 2012 09:39:39 +0100
> From: Pavel ?ezn??ek <cigydd <at> gmail.com>
> Subject: USB host mode
> To: U?ivatel? Maema <maemo-users <at> maemo.org>
> Message-ID: <1353055179.20122.8.camel <at> Nokia-N900>
> Content-Type: text/plain; charset="utf-8"
>
> Dear Maemo fellows,
>
> I am trying to use my N900 like an USB host.
> i bought an A-A USB connector so I could plug in devices using my Nokia 
> USB cable.
> I installed h-e-n, the USB host mode enabler.
> I played around with it but every device connection ended up in a kernel 
> driver segfault (reported by dmesg).
> Any clues what am I doing wrong?
> Thanks in advance for your future responses.
> -- 
> Pavel ?ezn??ek
>
> v?voj?? a?spr?vce s?t?
> Farn? sbor ?eskobratrsk? c?rkve evangelick? ? Korand?v sbor
> Anglick? n?b?e?? 13
> 301?50 Plze?
>
> Odesl?no z?m?ho telefonu Nokia?N900 s?linuxov?m opera?n?m syst?mem Maemo 5 
> Fremantle.
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL: 
> <http://lists.maemo.org/pipermail/maemo-users/attachments/20121116/1df53c33/attachment.html>
>
> ------------------------------
>
> _______________________________________________
> maemo-users mailing list
> maemo-users <at> maemo.org
> https://lists.maemo.org/mailman/listinfo/maemo-users
>
>
> End of maemo-users Digest, Vol 91, Issue 1
> ****************************************** 

Pavel Řezníček | 16 Nov 2012 09:39
Picon

USB host mode

Dear Maemo fellows,

I am trying to use my N900 like an USB host.
i bought an A-A USB connector so I could plug in devices using my Nokia USB cable.
I installed h-e-n, the USB host mode enabler.
I played around with it but every device connection ended up in a kernel driver segfault (reported by dmesg).
Any clues what am I doing wrong?
Thanks in advance for your future responses.
--
Pavel Řezníček

vývojář a správce sítě
Farní sbor Českobratrské církve evangelické – Korandův sbor
Anglické nábřeží 13
301 50 Plzeň

Odesláno z mého telefonu Nokia N900 s linuxovým operačním systémem Maemo 5 Fremantle.

<div>
<p>Dear Maemo fellows,
<br><br>I am trying to use my N900 like an USB host.
<br>i bought an A-A USB connector so I could plug in devices using my Nokia USB cable.
<br>I installed h-e-n, the USB host mode enabler.
<br>I played around with it but every device connection ended up in a kernel driver segfault (reported by dmesg).
<br>Any clues what am I doing wrong?
<br>Thanks in advance for your future responses.
<br>-- 
<br>Pavel &#344;ezn&iacute;&#269;ek
<br>
<br>v&yacute;voj&aacute;&#345; a&nbsp;spr&aacute;vce s&iacute;t&#283;
<br>Farn&iacute; sbor &#268;eskobratrsk&eacute; c&iacute;rkve evangelick&eacute; &ndash; Korand&#367;v sbor
<br>Anglick&eacute; n&aacute;b&#345;e&#382;&iacute; 13
<br>301&nbsp;50 Plze&#328;
<br>
<br>Odesl&aacute;no z&nbsp;m&eacute;ho telefonu Nokia&nbsp;N900 s&nbsp;linuxov&yacute;m opera&#269;n&iacute;m syst&eacute;mem Maemo 5 Fremantle.<br></p>
</div>
Mayuresh | 7 Oct 2012 08:13
Picon
Favicon

slattach on N900 to create SLIP interface with NetBSD host

Interestingly N900 seems to have slip kernel module and commands like
slattach to create a SLIP interface.

Is this usable to create a USB network with other end being a SLIP
interface. (In my case the other end is a NetBSD host.)

Which tty device to use as argument to slattach?

If I use ttyS* I get input/output error.

Mayuresh.

Gmane