Testing pspsdk sample

Discuss the development of new homebrew software, tools and libraries.

Moderators: cheriff, TyRaNiD

Post Reply
gojita
Posts: 1
Joined: Fri Mar 28, 2008 9:39 pm
Location: France

Testing pspsdk sample

Post by gojita »

Hello,

I've just finished to install the toolchain on cygwin and I was wondering how to test the samples of pspsdk, especially the wlansampe.elf ?

What I'hve to do next to run wlansampe.elf ?
Creating an EBOOT.PBP ?
How to do it ?

Is there any emulator for testing homebrew on linux/windows ?

Thank you all, and sorry if the answer is somewhere else, but I've search a little and don't find an easy answer on how to launch wlansample.elf.

Regards
jimparis
Posts: 1145
Joined: Fri Jun 10, 2005 4:21 am
Location: Boston

Post by jimparis »

Just run

Code: Select all

make EBOOT.PBP
to build the eboot.
User avatar
jean
Posts: 489
Joined: Sat Jan 05, 2008 2:44 am

Post by jean »

No luck with emulators... Try psplink if you want to avoid swapping continuously between XMB and USB mass-storage modes.
You cannot execute directly ELFs, you have to build an EBOOT.PBP to run from XMB, or a prx (that could be launched with one of the shells like irShell).

However, EVERY pspsdk sample include the following lines in makefile

Code: Select all

EXTRA_TARGETS = EBOOT.PBP
PSP_EBOOT_TITLE = your app title
needed to build an eboot.pbp. In order to obtain code executable on 3.xx firmware, you may need to add your makefile with

Code: Select all

PSP_FW_VERSION = 390
BUILD_PRX = 1
With original 1.50 FW you may need to kxploit your apps...a quick search here or in google will provide enough info...
good luck
jean
PSPApple
Posts: 6
Joined: Fri Mar 28, 2008 2:00 am

Post by PSPApple »

There are some tutorials would be helpful :)

http://www.psp-programming.com/tutorials/
Post Reply