tso's Avatar
Posts: 4,783 | Thanked: 1,253 times | Joined on Aug 2007 @ norway
#11
Originally Posted by TA-t3 View Post
Well, UMTS and HSDPA are actually using W-CDMA (Wideband CDMA), so.. it's here already! In a sense..
when people talk about cdma phones, they usually talk about the cdma2000 system.

http://en.wikipedia.org/wiki/Cdma2000
 
Posts: 3,841 | Thanked: 1,079 times | Joined on Nov 2006
#12
I know, that's the reason for the .. CDMA in several different incarnations are only used for data transfer in Europe (and not only through the GSM network), afaik.
__________________
N800/OS2007|N900/Maemo5
-- Metalayer-crawler delenda est.
-- Current state: Fed up with everything MeeGo.
 
Posts: 425 | Thanked: 132 times | Joined on Mar 2008 @ California
#13
Okay, I've gotta take a break from this, but here's what I've gotten so far if someone else wants to take a crack at it:

There's source for python-wxgtk2.8 here: Debian python-wxgtk
I can't get this package to build and compile correctly :/ not sure what I'm doing wrong. It also requires freeglut3.0 which is a potential problem :/ since that won't compile either.

Like I said pyserial is no issue installs cleanly,

Source is available for APSW here: Debian APSW
APSW looks like it'll build if I can find the sqlite3.h header, I haven't tried that yet.

If I or someone can get those three packages to compile then running bitpim is just a matter of downloading the /src and running "python bp.py"

But, like I said, all of these packages already exist in armel form, can someone try bitpim out under debian armel and let us know if it works? Thanks
__________________
Promises are like babies. Fun to make, but hard to deliver.

Warning: dates on calendar are closer than they appear.
 
Posts: 3,841 | Thanked: 1,079 times | Joined on Nov 2006
#14
Originally Posted by josiahg777 View Post
It also requires freeglut3.0 which is a potential problem :/ since that won't compile either.
That's the OpenGL Utility Toolkit, and we're presumably out of luck on any OpenGL-ish things on the N8x0.
__________________
N800/OS2007|N900/Maemo5
-- Metalayer-crawler delenda est.
-- Current state: Fed up with everything MeeGo.
 
allnameswereout's Avatar
Posts: 3,397 | Thanked: 1,212 times | Joined on Jul 2008 @ Netherlands
#15
Originally Posted by josiahg777 View Post
However I use bitpim on my mac and it's pretty slow even on a 1.83GHz processor with 2 gigs of ram. I think it'd be pretty glacially slow on our tablets.
Although it won't matter for the NIT due to being ARM... out of curiousity: did you use Psyco?
__________________
Goosfraba! All text written by allnameswereout is public domain unless stated otherwise. Thank you for sharing your output!
 
BlackOp333's Avatar
Posts: 64 | Thanked: 12 times | Joined on May 2008
#16
Any further progress?
qwerty12, where are you?
__________________
"Eternal vigilance is the price of liberty."
-Wendell Phillips
 
Posts: 425 | Thanked: 132 times | Joined on Mar 2008 @ California
#17
Actually, I just got openGL and Mesa running on my tablet. It's a software library from some other weird repository and runs slowly and choppily but it works nonetheless :P

Go see my post in BruceL's thread about his new UI. He found a repository (a bora one) that had the software GL libs.

So... perhaps it's time for me to try this again :P I gave up in extreme frustration a while back. I'll see about trying it again.

also @allnameswereout yes, i was just saying that speedwise it's not the fastest application I've ever used :P and no, I was using the standard Python interpreter. I had actually never used Psyco, thanks for pointing that out to me!
__________________
Promises are like babies. Fun to make, but hard to deliver.

Warning: dates on calendar are closer than they appear.
 
qwerty12's Avatar
Posts: 4,274 | Thanked: 5,358 times | Joined on Sep 2007 @ Looking at y'all and sighing
#18
Originally Posted by josiahg777 View Post
Source is available for APSW here: Debian APSW
APSW looks like it'll build if I can find the sqlite3.h header, I haven't tried that yet.
I tried in scratchbox:

creating build/temp.linux-armv5tel-2.5
gcc -pthread -fno-strict-aliasing -DNDEBUG -Os -mthumb -mfloat-abi=softfp -Wall -Wstrict-prototypes -DNDEBUG -fPIC -DSQLITE_THREADSAFE=1 -DNDEBUG=1 -DEXPERIMENTAL=1 -I/usr/include/python2.5 -c apsw.c -o build/temp.linux-armv5tel-2.5/apsw.o
sem_post: Function not implemented
apsw.c:62:2: #error Your SQLite version is too old. It must be at least 3.5.9
apsw.c: In function `Connection_init':
apsw.c:948: error: `SQLITE_OPEN_READWRITE' undeclared (first use in this function)
apsw.c:948: error: (Each undeclared identifier is reported only once
apsw.c:948: error: for each function it appears in.)
apsw.c:948: error: `SQLITE_OPEN_CREATE' undeclared (first use in this function)
apsw.c:959: warning: implicit declaration of function `sqlite3_open_v2'
apsw.c: In function `Connection_limit':
apsw.c:1192: warning: implicit declaration of function `sqlite3_limit'
apsw.c: In function `set_context_result':
apsw.c:1939: warning: implicit declaration of function `sqlite3_result_error_code'
apsw.c: In function `initapsw':
apsw.c:5420: error: `SQLITE_IOERR_NOMEM' undeclared (first use in this function)
apsw.c:5459: error: `SQLITE_OPEN_READONLY' undeclared (first use in this function)
apsw.c:5460: error: `SQLITE_OPEN_READWRITE' undeclared (first use in this function)
apsw.c:5461: error: `SQLITE_OPEN_CREATE' undeclared (first use in this function)
apsw.c:5462: error: `SQLITE_OPEN_DELETEONCLOSE' undeclared (first use in this function)
apsw.c:5463: error: `SQLITE_OPEN_EXCLUSIVE' undeclared (first use in this function)
apsw.c:5464: error: `SQLITE_OPEN_MAIN_DB' undeclared (first use in this function)
apsw.c:5465: error: `SQLITE_OPEN_TEMP_DB' undeclared (first use in this function)
apsw.c:5466: error: `SQLITE_OPEN_TRANSIENT_DB' undeclared (first use in this function)
apsw.c:5467: error: `SQLITE_OPEN_MAIN_JOURNAL' undeclared (first use in this function)
apsw.c:5468: error: `SQLITE_OPEN_TEMP_JOURNAL' undeclared (first use in this function)
apsw.c:5469: error: `SQLITE_OPEN_SUBJOURNAL' undeclared (first use in this function)
apsw.c:5470: error: `SQLITE_OPEN_MASTER_JOURNAL' undeclared (first use in this function)
error: command 'gcc' failed with exit status 1
sem_post: Function not implemented
sem_post: Function not implemented
sem_post: Function not implemented
sem_post: Function not implemented
The version of sqlite carried by Nokia is too old. Ignore the sem_post errors, it always happens with python programs in scratchbox. I haven't got round to patching the scratchbox qemu yet...

If sqlite isn't too timeconsuming to build, I'll see if I can update to 3.5.9 with nokia patches against the current old version. If that works, I'll modify setup.py to let me package this python thing.
 

The Following User Says Thank You to qwerty12 For This Useful Post:
BlackOp333's Avatar
Posts: 64 | Thanked: 12 times | Joined on May 2008
#19
Any progress updates as of yet?
__________________
"Eternal vigilance is the price of liberty."
-Wendell Phillips
 
qole's Avatar
Moderator | Posts: 7,109 | Thanked: 8,820 times | Joined on Oct 2007 @ Vancouver, BC, Canada
#20
I probably could install it in my Debian chroot, but I have no way to test it, since I don't have a cell phone of any kind

BlackOp333, you should probably try the Debian chroot, since all the pentesting apps are over there, just waiting for you in the Debian repos, too
__________________
qole.org --- twitter --- Easy Debian wiki page
Please don't send me a private message, post to the appropriate thread.
Thank you all for your donations!
 
Reply

Thread Tools

 
Forum Jump


All times are GMT. The time now is 11:35.