PSP3D Left Header
PSP3D Header Right
PSP3D Logo CraveOnline Logo
Help the PSP 3D community grow!
Vote for us below:


Vote on the PSP Top 200
PSP Top 200 - Games, Videos, Wallpapers, Files, Hacks, Homebrew

Homebrew/Hacking - Discuss the latest available homebrew applications and games.

Welcome to PSP3D.com - Sony PlayStation Portable News, Homebrew, Hacks, Reviews, Videos, Mods, Forums!

You are currently viewing our website as a guest, which gives you limited access to reply and interact to discussions and other members. By joining our free community, you will be able to post topics in the forums, communicate privately with other members, vote in polls, and access many other special features.

Registration is fast, simple, and absolutely free so join our community today!

Go Back PSP3D.com - Sony PlayStation Portable News, Homebrew, Hacks, Reviews, Videos, Mods, Forums > PSP Forums > Homebrew/Hacking

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 07-15-2006, 01:56 PM
psptothextreme's Avatar
psptothextreme psptothextreme is offline
Senior Member
 
Join Date: Jan 2006
Location: surrey england
Age: 22
Posts: 915
Points: 3.47
Donate
Post Custom PSP Firmware: Proof of Concept F.A.Q

Dark_AleX has made a custom f/w, yes, what was thought to be impossible has ben done,
Confirmed by many people, NO bricks have been reported so far!

WARNING: I am not responsible for any bricks that may occur, and remember anything that writes to the flash has a chance of bricking!

FAQ

A quick FAQ for those incapable to read (how will they read this? I don't know):

Q: What is this?
A: This is not a new firmware. You're still on 1.50 after this patch.
It hooks into the boot process of 1.50 and applies certain changes

Q: What does it change?
A: That depends on how you configure it.
It can:
- disable the bootscreen and UMD-Autorun
- run 1.0 pbp (no more corrupted icons, just one folder per app) and 1.5 pbp
- autorun an application of your choice (devhook, irshell, you name it)
- recover your PSP if you do something stupid (not in all cases!)


Q: How can I uninstall this?
A: There is no undo function in the tool right now.
To get rid of it you need to pretend(!) having Version 1.00 (use X-Flash or any other version changer) and run 1.50 update. This will overwrite the change made by the POC.

Q: Is it safe?
A: Yes. So far nobody bricked their PSP. It writes to the flash0 but its a very short write and we know it works. It won't get much safer by waiting for a new version.

-----------------------

CONFIRMED LIST OF WORKING FEATURES:

SCE logo removed - YES (much quicker load up time)
Recovery Mode - YES (Amazing, lets you flash index.dat to flash0, and, lets you run an f/w update from the normal directory, and, lets you enable USB Mass)
Corrupt Icon remover - YES (works like a charm)
Runs 1.00 Pbp's - YES (yes, works perfectly)

----------------------------

Guide to changing Config settings:

how to change the execution of 1.00 PBP's:

in your config there will be a line of text/code like this:


Quote:
# Set it to true if you want to enable the execution of normal pbp's, no-kxploited
nokxploit = true;



to turn this feature off, change it to this:


Quote:
# Set it to true if you want to enable the execution of normal pbp's, no-kxploited
nokxploit = false;



How to change the hide corrupt icon feature:

in your config there will be a line of text/code like this:


Quote:
# Set it to true if you want to hide the icons
# Note: if you have a lot of things in the game folder, it could cause a slowdown
hidecorrupt = false;



if you want it activated change to this:


Quote:
# Set it to true if you want to hide the icons
# Note: if you have a lot of things in the game folder, it could cause a slowdown
hidecorrupt = true;



How to change the skipping of the SCE logo:

in your config thwere will be a line of text/code like this:


Quote:
# Set it to true if you want to skip the $CE logo. In this way you can also skip
# the auto-execution of the umd that so many people hate
skiplogo = false;



to activate it, change to this:


Quote:
# Set it to true if you want to skip the $CE logo. In this way you can also skip
# the auto-execution of the umd that so many people hate
skiplogo = true;



How to change the autoexecute feature:

in your config thwere will be a line of text/code like this:


Quote:
# Specify a program to autoexecute at startup.
# Example1:
#autoboot = "ms0:/PSP/GAME/IRSHELL/EBOOT.PBP";
# Example2:
#autoboot = "ms0:/PSP/GAME/DEVHOOK/EBOOT.PBP";



to autoexecute a program, change to this:


Quote:
# Specify a program to autoexecute at startup.
autoboot = "ms0:/PSP/GAME/IRSHELL/EBOOT.PBP";




Notice I have removed the "#" and the "example" text!

How to specify modules to load on startup of your PSP along with the vsh:

in your config thwere will be a line of text/code like this:


Quote:
#Specify a maximum of 10 modules to load and start at the startup with the vsh.

#loadmodule0 = "ms0:/PSPLINK/psplink.prx"
#loadmodule1 = "blahblah"
#loadmodule2 = "blahblah"
#loadmodule3 = "blahblah"
#loadmodule4 = "blahblah"
#loadmodule5 = "blahblah"
#loadmodule6 = "blahblah"
#loadmodule7 = "blahblah"
#loadmodule8 = "blahblah"



to add a module do this:


Quote:
#Specify a maximum of 10 modules to load and start at the startup with the vsh.

loadmodule0 = "ms0:/PSPLINK/psplink.prx"
loadmodule1 = "ms0:/~~~/~~~~.prx"
#loadmodule2 = "blahblah"
#loadmodule3 = "blahblah"
#loadmodule4 = "blahblah"
#loadmodule5 = "blahblah"
#loadmodule6 = "blahblah"
#loadmodule7 = "blahblah"
#loadmodule8 = "blahblah"
#loadmodule9 = "blahblah"



basically: add the directory of where the module is! But remember to keep the " signs wrapped around your directory!

Take screenshots of your XMB:

Download screenshot mod Now unzip it and place the file screenshotbmp.prx inside the root of your memory stick

Now go into your config.txt and edit the following lines

change this:


Quote:
#loadmodule0 = "ms0:/PSPLINK/psplink.prx"
#loadmodule1 = "blahblah"
#loadmodule2 = "blahblah"
#loadmodule3 = "blahblah"
#loadmodule4 = "blahblah"
#loadmodule5 = "blahblah"
#loadmodule6 = "blahblah"
#loadmodule7 = "blahblah"
#loadmodule8 = "blahblah"
#loadmodule9 = "blahblah"





To this:


Quote:
loadmodule0 = "ms0:/screenshotbmp.prx"
#loadmodule1 = "blahblah"
#loadmodule2 = "blahblah"
#loadmodule3 = "blahblah"
#loadmodule4 = "blahblah"
#loadmodule5 = "blahblah"
#loadmodule6 = "blahblah"
#loadmodule7 = "blahblah"
#loadmodule8 = "blahblah"
#loadmodule9 = "blahblah"





NOTE: remember to remove the # from the beginning of loadmodule0 or it wont load.

And there you go you can now take screenshots of the XMB or your games anytime by pressing the Note button on your PSP
__________________
Reply With Quote
  #2 (permalink)  
Old 07-15-2006, 02:08 PM
porchemasi's Avatar
porchemasi porchemasi is offline
Member
 
Join Date: Jan 2006
Posts: 70
Points: 0.00
Donate
This is crazy
__________________
PSP (v. 2.6)
GTA LC
SOCOM FTB
Reply With Quote
  #3 (permalink)  
Old 07-15-2006, 02:10 PM
psptothextreme's Avatar
psptothextreme psptothextreme is offline
Senior Member
 
Join Date: Jan 2006
Location: surrey england
Age: 22
Posts: 915
Points: 3.47
Donate
WHAT DO U MEEN
__________________
Reply With Quote
  #4 (permalink)  
Old 07-15-2006, 02:15 PM
Kyubi_Naruto's Avatar
Kyubi_Naruto Kyubi_Naruto is offline
Senior Member
 
Join Date: Apr 2006
Location: Portugal
Posts: 558
Points: 2.06
Donate
i think he means this is cool xD
__________________
THe Following signature is being brought to you in part by yur friends from D-Generation X, that would like to remind you that if you're not down with that, me at PSP3D only got TWO WORDS FOR YA:

S*CK IT!

Reply With Quote
  #5 (permalink)  
Old 07-15-2006, 02:43 PM
psptothextreme's Avatar
psptothextreme psptothextreme is offline
Senior Member
 
Join Date: Jan 2006
Location: surrey england
Age: 22
Posts: 915
Points: 3.47
Donate
oh ok ... thought so
__________________
Reply With Quote
  #6 (permalink)  
Old 07-15-2006, 06:51 PM
Spiderjames Spiderjames is offline
Junior Member
 
Join Date: Feb 2006
Posts: 6
Points: 0.01
Donate
nice faq, really clears up some stuff
Reply With Quote
  #7 (permalink)  
Old 07-15-2006, 07:01 PM
psptothextreme's Avatar
psptothextreme psptothextreme is offline
Senior Member
 
Join Date: Jan 2006
Location: surrey england
Age: 22
Posts: 915
Points: 3.47
Donate
thanks for the feedback
__________________
Reply With Quote
  #8 (permalink)  
Old 07-15-2006, 07:35 PM
The_Lead_Factor's Avatar
The_Lead_Factor The_Lead_Factor is offline
Jesus is in the building
My Mood:
 
Join Date: Nov 2005
Location: Carle Place..yea its 1 sq mile but so what!!!
Age: 19
Posts: 1,072
Points: 13.56
Donate
Send a message via MSN to The_Lead_Factor
He is God
__________________
Reply With Quote
  #9 (permalink)  
Old 07-15-2006, 07:52 PM
psptothextreme's Avatar
psptothextreme psptothextreme is offline
Senior Member
 
Join Date: Jan 2006
Location: surrey england
Age: 22
Posts: 915
Points: 3.47
Donate
we know so is booster and the rest
__________________
Reply With Quote
  #10 (permalink)  
Old 07-15-2006, 07:53 PM
gotwake424 gotwake424 is offline
Senior Member
My Mood:
 
Join Date: Nov 2005
Posts: 725
Points: 7.10
Donate
cant wait for a really good one
Reply With Quote
Reply

« Question about downgrading from 2.6 with a 32mb memory card | "Custom Firmware - The proof of concept" »



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Points Per Thread View: 0.00
Points Per Thread: 1.00
Points Per Reply: 0.10

Similar Threads
Thread Thread Starter Forum Replies Last Post
"Custom Firmware - The proof of concept" psptothextreme Homebrew/Hacking 43 07-17-2006 09:13 AM
Custom Firmware xtr3m3k1ll3r Off Topic 7 07-10-2006 03:08 AM
No custom Firmware with 1.0... eXoR Homebrew/Hacking 18 07-09-2006 04:13 PM
How many people are waiting for CUSTOM firmware? Sugarfix Homebrew/Hacking 4 01-09-2006 11:20 AM
Custom firmware? Birdman1 Homebrew/Hacking 22 01-04-2006 06:38 PM





Crave Partner Sites: CraveOnline.com | DVDFile.com | PSP3D.com | ComingSoon.net | SuperHeroHype.com | RedBalcony.com | ActionTrip.com | CraveLyrics.com
Soundtrack.net | CraveFix.com | SpikedHumor.com | RPGamer.com | TattooNow.com | ImpactWrestling.com | SeekLyrics.com | PedalBMX.com | WildKO.com
vidKing.com | StrategyInformer.com | HHdb.com | RapLeagues.com | HipHop-Lyrics.com | Cravecocktails.com | ThePhatPhree.com | RideJudge.com | HottieSpots.com

PSP3D Footer Left Powered by Custom vB Version 5.1.0 for Crave Online Media, LLC.
Copyright © 2000 - 2007, Jelsoft Enterprises Ltd. and PSP3D.com.
LinkBacks Enabled by vBSEO 3.0.0 RC8

All times are GMT -4. The time now is 02:40 PM.
PSP3D Footer Right