forums.ps2dev.org Forum Index forums.ps2dev.org
Homebrew PS2, PSP & PS3 Development Discussions
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

A new port of uClinux on PSP (with accessibility to ms0)
Goto page Previous  1, 2, 3, 4, 5, 6, 7, 8, 9, 10
 
Post new topic   Reply to topic    forums.ps2dev.org Forum Index -> PSP Development
View previous topic :: View next topic  
Author Message
SpikeX



Joined: 14 Jan 2007
Posts: 8
Location: Germany

PostPosted: Sat Nov 01, 2008 6:32 pm    Post subject: Reply with quote

manatails007 wrote:

I'll use my server

Why? Berlios.de should be way faster than your server from most countries and there is no traffic limit.
manatails007 wrote:

I dont know what method have you used for measuring bandwidth, but you're wrong, bandwidth is NOT 500mb/day
it's 5 GB/day and I get No packet loss and Ping-time 100ms :p

The "method" was wget... Ping and packet loss was measured with mtr - with ping I have a packet loss of 100%.
In a second measure I got a download speed of 20.5 kb/s, a ping of 400ms and a packet loss of 10%.
That these values are better from South Korea is obvious, I think... What I wanted to say is, that the peering from outside world (I can only talk for Europe) to your server in South Korea is really bad (15 seconds for Main_Page rendering) and compared to it, the berlios-server has a really good peering.

I don't want to start a quarrel with you, but I think we neither need two different wikis nor should we use one server, when we could have one that is faster than the other...
_________________
Visit Linux on PSP!
Back to top
View user's profile Send private message
manatails007



Joined: 05 Mar 2008
Posts: 13

PostPosted: Mon Nov 03, 2008 1:56 pm    Post subject: Reply with quote

SpikeX wrote:

That these values are better from South Korea is obvious, I think... What I wanted to say is, that the peering from outside world (I can only talk for Europe) to your server in South Korea is really bad (15 seconds for Main_Page rendering) and compared to it, the berlios-server has a really good peering.


I tried to open my wiki with anonymouse(anonymouse is a free proxy server located on germany) but it was not slow!

and please keep in mind that I dont want to start a quarrel with you either, I just wanted to administer a little redocumentation project
Back to top
View user's profile Send private message
mastershake



Joined: 06 Nov 2008
Posts: 1

PostPosted: Thu Nov 06, 2008 12:37 pm    Post subject: Reply with quote

Ok I have a few questions about loading prxs after booting the kernel.

1. Is it even possible?
2. How would you go about doing it?

Are you using danzeff for the keyboard input? I cant tell, i've never used it before. I am trying to load pikey after memCopy in pspboot, but it just locks up after sayings Transfering Control....(some other stuff). If I can get pikey to run alongside linux then it would be possible to use the danzeff out plugin in pikey to type. I don't think its possible since it removes all of sony's code, doesnt it? If its not possible how hard would it be to directly code libpspirkeyb into it?

From modified pspboot main.c transferControl
Code:


/* prepare boot command line */
    if ( *s_paramCmd != 0 )
    {
      kernelParam = (void *)( KERNEL_ENTRY + KERNEL_PARAM_OFFSET );
      memCopy( kernelParam, s_paramCmd, CONFIG_MAX_PARAM );
   }

/* load pikey----------------------------*/
s_pikeyMod = pspSdkLoadStartModule( PIKEYMOD_PATH,
                                        PSP_MEMORY_PARTITION_KERNEL );
 
 if ( s_pikeyMod < 0 )
  {
    printf( "Failed to load %s [%08x]\n", PIKEYMOD_PATH, (int)s_pikeyMod );
    return FALSE;
  } 
Back to top
View user's profile Send private message
PSPZwolle



Joined: 17 Dec 2008
Posts: 1

PostPosted: Wed Dec 17, 2008 6:32 pm    Post subject: Reply with quote

Maybe a stupid question.. But how do you type an underscore _ ??

Thank you :)
Back to top
View user's profile Send private message
youngchulo



Joined: 01 Mar 2009
Posts: 3
Location: Aurora, IL

PostPosted: Sun Mar 01, 2009 7:04 am    Post subject: Reply with quote

is this project dead? even with as far as it got?
_________________
There are two types of people in this world...
Those that understand binary and those that don't...
There's no place like 127.0.0.1
Back to top
View user's profile Send private message AIM Address Yahoo Messenger MSN Messenger
Dariusc123456



Joined: 12 Aug 2008
Posts: 394

PostPosted: Sun Mar 01, 2009 7:28 am    Post subject: Reply with quote

It might not be dead, but its a w.i.p. Just dont expect much replies.
Back to top
View user's profile Send private message AIM Address
youngchulo



Joined: 01 Mar 2009
Posts: 3
Location: Aurora, IL

PostPosted: Thu Mar 12, 2009 11:15 am    Post subject: Reply with quote

well, does anyone know how I can help? what programming languages should I know? I know a bit of C, I'd like to start off with making something like the sound structure or w/e or a desktop environment first, I'm also a bit experience with working with linux, just not programming for it much
_________________
There are two types of people in this world...
Those that understand binary and those that don't...
There's no place like 127.0.0.1
Back to top
View user's profile Send private message AIM Address Yahoo Messenger MSN Messenger
mik



Joined: 29 Mar 2008
Posts: 13

PostPosted: Fri Mar 13, 2009 6:31 pm    Post subject: Reply with quote

Hi,
I've compiled the kernel with Jacksons' toolchain. It boots fine but now I need to compile busybox. The problem is that his toolchain (mipsel-linux-cpp) looks up the uClibc headers in predefined folders (the first to paths are fine, since they are inside my psp environment; the third one I had to create and copy there the uClibc headers):
$ ./mipsel-linux-cpp -v
[...]
#include "..." search starts here:
#include <...> search starts here:
/home/mlunter/psp/pspdev/gcc-psp/usr/bin/../lib/gcc/mipsel-linux-uclibc/4.2.1/include
/home/mlunter/psp/pspdev/gcc-psp/usr/bin/../lib/gcc/mipsel-linux-uclibc/4.2.1/../../../../mipsel-linux-uclibc/include
/usr/src/buildroot-20071216/build_mipsel/staging_dir/usr/include
End of search list.
[...]

As you can see, I have already copied the include folder into /usr/src/buildroot-20071216/build_mipsel/staging_dir/usr/ to make the preprocessor happy and busybox compiles. But since I have all my psp related stuff in a central place I wanted to ask if there's a way to tell the preprocessor where to find the includes (-I/some/path/ when compiling busybox I tried already, doesn't work).

Thx,
Michael
Back to top
View user's profile Send private message
mik



Joined: 29 Mar 2008
Posts: 13

PostPosted: Mon Apr 06, 2009 2:12 am    Post subject: enabling 64mb on slim Reply with quote

Although the kernel detects correctly the available RAM, it is not used on the slim. The trivial patch to use all 64MB can be found here (sets HIGHMEM_START to 0x8c000000 such that all memory is acquired by ZONE_NORMAL):

https://lists.berlios.de/pipermail/psplinux-devel/2009-April/000001.html

Should have no effect on the phat, at least if I understood bootmem_init() correctly.
Enjoy the doubled space...
Back to top
View user's profile Send private message
astearon



Joined: 08 Jun 2009
Posts: 1

PostPosted: Mon Jun 08, 2009 11:11 am    Post subject: how much can it do..? Reply with quote

I don't know nuch about coding and such but i gotta ask a question here, i see that uclinux cand be ported on the psp with out a problem, and also busybox and some drivers for screenbuffer and imput keys. BUT CAN a x interface be ported on top of this uclinux kernel? something like Matchbox: http://matchbox-project.org/screenshots.html ?
What would i need to have in order to get this on the psp ? (besites knowing how to code..this part i can get help on)
I need to know If this can be done or not, not neceserally this particular x interface, but something simillar.
Back to top
View user's profile Send private message
shadash



Joined: 19 Dec 2007
Posts: 24
Location: San Diego

PostPosted: Thu Jun 11, 2009 12:19 am    Post subject: Reply with quote

astearon,

Yes some people have been able to get a gui interface to work using a native uClinux linux kernel running on the PSP.

The main blocker right now is there's no linux WiFi driver for the psp. So even though you can get a gui you'll have to sneakernet all data over. Or possibly use the miniusb port.
Back to top
View user's profile Send private message
wankel



Joined: 18 Oct 2009
Posts: 17

PostPosted: Sun Oct 18, 2009 2:23 pm    Post subject: Reply with quote

Awesome project :) I just read through all 10 pages and have a few questions:

1.) Has any progress been made on this, specifically with the wifi driver?
2.) It seems that 5 minutes after booting my psp will freeze. The cursor will keep blinking but I have to remove the battery to restart the psp. Anybody know what the issue could be? Firmware is 5.00 m33-6 if that makes a difference.
3.) Extremely noob question, how do I install the precompiled toolchain?

Thanks! I hope this project continues to go great places :)
Back to top
View user's profile Send private message
coolkehon



Joined: 20 Oct 2008
Posts: 355

PostPosted: Tue Oct 20, 2009 11:04 am    Post subject: Reply with quote

could someone reupload the files
Back to top
View user's profile Send private message MSN Messenger
youngchulo



Joined: 01 Mar 2009
Posts: 3
Location: Aurora, IL

PostPosted: Mon Nov 09, 2009 1:44 pm    Post subject: Reply with quote

^^ I would like to see these files ^^
Wow, it's been months since I've logged in, possibly a year since.
Anyways, just a friendly bump, it's nice to see some progress has been made, I really would like to see linux running on the psp, I want to show all those non-believers that linux really can run on a psp, if linux can run on a router (dd-wrt) don't you think it could run on a psp?
_________________
There are two types of people in this world...
Those that understand binary and those that don't...
There's no place like 127.0.0.1
Back to top
View user's profile Send private message AIM Address Yahoo Messenger MSN Messenger
coolkehon



Joined: 20 Oct 2008
Posts: 355

PostPosted: Tue Nov 10, 2009 12:02 pm    Post subject: Reply with quote

http://psplinux.berlios.de/wiki/Downloads
i think that has most of them
Back to top
View user's profile Send private message MSN Messenger
Display posts from previous:   
Post new topic   Reply to topic    forums.ps2dev.org Forum Index -> PSP Development All times are GMT + 10 Hours
Goto page Previous  1, 2, 3, 4, 5, 6, 7, 8, 9, 10
Page 10 of 10

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group