Rockbox.org home
Downloads
Release release
Dev builds dev builds
Extras extras
themes themes
Documentation
Manual manual
Wiki wiki
Device Status device status
Support
Forums forums
Mailing lists mailing lists
IRC IRC
Development
Bugs bugs
Patches patches
Dev Guide dev guide
Search



Donate

Rockbox Technical Forums


Login with username, password and session length
Home Help Search Staff List Login Register
News:

Welcome to the Rockbox Technical Forums!

+  Rockbox Technical Forums
|-+  Rockbox Development
| |-+  New Ports
| | |-+  Rockbox for MeeGoo (Nokia N9)
« previous next »
  • Print
Pages: [1]

Author Topic: Rockbox for MeeGoo (Nokia N9)  (Read 13816 times)

Offline paulheu

  • Member
  • *
  • Posts: 213
Rockbox for MeeGoo (Nokia N9)
« on: November 16, 2011, 03:02:58 PM »
Bouht this phone and love it.. I guess getting Rockbox to run on it would not be that hard (or would it?) so as I have a basic understanding of programming I figured I might give this a try if only to learn.

I would apreciate a basic layout of what to do/figure out to get started. I have a full development enviroment on Ubunto where I used to build my (patched) Android builds..

Any help, hints and pointers appreciated..

Paul
Logged

Offline saratoga

  • Developer
  • Member
  • *
  • Posts: 9264
Re: Rockbox for MeeGoo (Nokia N9)
« Reply #1 on: November 16, 2011, 03:10:40 PM »
Meego is some linux thing right?  I guess setup the devtools for it, get SDL working on it, then try compiling the rockbox sim. 
Logged

Offline nick_p

  • Member
  • *
  • Posts: 116
Re: Rockbox for MeeGoo (Nokia N9)
« Reply #2 on: November 16, 2011, 05:26:48 PM »
Might be also worth looking at the Maemo (Nokia N900) port;

http://www.rockbox.org/wiki/MaemoPort
Logged

Offline mtg

  • Member
  • *
  • Posts: 2
Re: Rockbox for MeeGoo (Nokia N9)
« Reply #3 on: November 21, 2011, 07:44:54 AM »
I will have a look at this by the end of the week. I don't think that it will be too hard.
Logged

Offline paulheu

  • Member
  • *
  • Posts: 213
Re: Rockbox for MeeGoo (Nokia N9)
« Reply #4 on: November 25, 2011, 05:46:40 PM »
Cool, right now I am way too busy and a quick peek told me I will need tl sit down and sort this out.. once the dev enviroment is up it seems to be no too hard to get going... We'll see how things go..

And dmn.. the N9 is one sexy phone..
Logged

Offline paulheu

  • Member
  • *
  • Posts: 213
Re: Rockbox for MeeGoo (Nokia N9)
« Reply #5 on: December 05, 2011, 06:35:10 PM »
Well.. this is all a bit above my paygrade..  ;)

So sad as it may seem I will have to hope someone will pick his up and for now I will have to do with what I have..

P
Logged

Offline paulheu

  • Member
  • *
  • Posts: 213
Re: Rockbox for MeeGoo (Nokia N9)
« Reply #6 on: December 09, 2011, 04:22:40 PM »
Got around to installing te source on the image from the wiki, added all dependencies, but when I try to install the arm source package from maemo.org I get an error saying it's not compatibel..

I figure I need some sort of toolchain but could use some help here.. Would like to try and get this to work as it seems if I get the dependencies right it should not be all that hard..


So any help would be appreciated..

P
Logged

Offline paulheu

  • Member
  • *
  • Posts: 213
Re: Rockbox for MeeGoo (Nokia N9)
« Reply #7 on: December 15, 2011, 05:41:00 AM »
Quote
From Wiki:
Download and install scratchbox for maemo 5: http://maemovmware.garage.maemo.org/2nd_edition/
Copy/mount rockbox source code inside scratchbox

Check on download and install the image, but how do I copy/mount the source inside scratchbox..

Probably dumb oversight, but anyway..;)

Any help appreciated..
Logged

Offline paulheu

  • Member
  • *
  • Posts: 213
Re: Rockbox for MeeGoo (Nokia N9)
« Reply #8 on: December 21, 2011, 04:36:57 PM »
OK.. probably just me being stupid, but I seem to be missing something..

The wiki says (for te meamo development image):
Copy/mount rockbox source code inside scratchbox

I could use some help with this..

I'll get back to waiting for someone to get the same bright idea otherwise.. ;)
Logged

Offline Chronon

  • Rockbox Expert
  • Member
  • *
  • Posts: 4383
Re: Rockbox for MeeGoo (Nokia N9)
« Reply #9 on: December 22, 2011, 11:09:37 PM »
If you're looking for some guidance it might be worthwhile to drop in on the #rockbox channel on freenode.
Logged
Sansa e280, Gigabeat F40, Gigabeat S60, Sansa Clip+, iPod Mini 2g

Online gevaerts

  • Developer
  • Member
  • *
  • Posts: 1067
Re: Rockbox for MeeGoo (Nokia N9)
« Reply #10 on: December 23, 2011, 04:12:03 AM »
The maemo instructions assume some familiarity with general maemo development
Logged

Offline paulheu

  • Member
  • *
  • Posts: 213
Re: Rockbox for MeeGoo (Nokia N9)
« Reply #11 on: December 23, 2011, 01:56:14 PM »
I understand that.. but I can be a quick study.. ;)
Logged

Offline mtg

  • Member
  • *
  • Posts: 2
Re: Rockbox for MeeGoo (Nokia N9)
« Reply #12 on: February 27, 2012, 05:20:27 AM »
Hi,

unfortunately, I did not find time earlier to play around with RaaA and the Nokia N9. However, tonight I started to try some basic things. The instructions on how to set up the scratchbox development environment for the Nokia N9 can be found here. With that you should be able to get into scratchbox,

Next (from now one everything from within scratchbox), one needs to install libsdl:

Code: [Select]
apt-get install libsdl1.2-dev
Having done that, I got the maemo rockbox sources from here. I modified the configure script to exclude the sanity checks if and which maemo libs are installed. This has been done to just try a Maemo-based compilation. In the configure script I selected then the N900 build. After that I I tried to compile. Without the file modifications the process now looks like:

Code: [Select]
git clone http://repo.or.cz/w/maemo-rb.git/
cd maemo-rb
# edit tools/configure to exclude sanity checks in maemocc()
mkdir build
cd build
../tools/configure
make dep
make

The compilation generates an error when trying to access libplayback which isn't available for MeeGo:

Code: [Select]
CC firmware/target/hosted/maemo/pcm-gstreamer.c
/home/tom/maemo-rb/firmware/target/hosted/maemo/pcm-gstreamer.c:44: fatal error: libplayback/playback.h: No such file or directory
compilation terminated.
make: *** [/home/tom/maemo-rb/build/firmware/target/hosted/maemo/pcm-gstreamer.o] Error 1

I have no idea (yet), what to use in MeeGo instead of this, but I will play around with it the upcoming days. Suggestions and hints are very welcome.

Cheers,
Tom

(I had to create this post, since it got accidentally deleted.)
Logged

Offline paulheu

  • Member
  • *
  • Posts: 213
Re: Rockbox for MeeGoo (Nokia N9)
« Reply #13 on: March 07, 2012, 03:00:46 PM »
Thanks for that.. I moved to Windowsphone (Lumia 800) myself however so I guess that excludes me from RockBox.. for now..
Logged

Offline paulheu

  • Member
  • *
  • Posts: 213
Re: Rockbox for MeeGoo (Nokia N9)
« Reply #14 on: July 13, 2012, 05:07:09 AM »

With Meego now gone from Nokia and a new startup continuing the work with new devices coming it might be interesting to see if they would be interested to bring in RockBox as their default audioplayer.

Please check out @jollamobile on twitter..


No rush, just do it _now_ ;^)
Logged

  • Print
Pages: [1]
« previous next »
+  Rockbox Technical Forums
|-+  Rockbox Development
| |-+  New Ports
| | |-+  Rockbox for MeeGoo (Nokia N9)
 

  • SMF 2.0.19 | SMF © 2021, Simple Machines
  • Rockbox Privacy Policy
  • XHTML
  • RSS
  • WAP2

Page created in 0.054 seconds with 17 queries.