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
Testing pspsdk sample
Just run
to build the eboot.
Code: Select all
make EBOOT.PBP
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
needed to build an eboot.pbp. In order to obtain code executable on 3.xx firmware, you may need to add your makefile with
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
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
Code: Select all
PSP_FW_VERSION = 390
BUILD_PRX = 1
good luck
jean