Results 1 to 30 of 52
[RELEASE] CXMB-override: mix-n-match theme bits
This is a discussion on [RELEASE] CXMB-override: mix-n-match theme bits within the PSP Development Forum forums, part of the PSP Development, Hacks, and Homebrew category; Desc: ACHTUNG! WARNING! DISCLAIMER! Before you use this, be sure to know how to use RECOVERY MODE to disable the ...
-
06-19-2010, 11:24 PM #1QJ Gamer Blue
Achievements:
- Join Date
- Jun 2010
- Location
- tx
- Posts
- 62
- QJ Pts
- 1,624
- Level
- 23
- Downloads
- 0
- Uploads
- 0
[RELEASE] CXMB-override (0.3): mix-n-match theme bits (now with less browser spew!)
Desc:
ACHTUNG! WARNING! DISCLAIMER! Before you use this, be sure to know how to use RECOVERY MODE to disable the plugin, if you put in a bad replacement.
This is cxmb with matchung's changes for 5.50gen functionality, plus the ability to load individual theme related files from the memory stick (rco/bmp/pmf/prx/etc). Thus, one can use different components of different themes without having to unpack and repack .ctf files, or write anything to flash0.
Changelog:
0.2 - Fixed 5.00m33 support
0.3 - ignore.txt: per-thread blacklist of certain files (override/* and inside ctfs). Included ignore.txt disables alternative font loading for the web browser's HTML rendering, since that always ends up messy.
CXMB is no longer restricted to ms0:/cxmb. You can now throw it into /seplugins, /psp/cxmb, /omg/wtf/bbq, or whatever. override/* and conf files must exist in the same directory as cxmb-override.prx.
/kd/ overrides enabled: not as useful as you may think.
read and lseek no longer croak on overridden files after sleep mode, a bug which was most noticable with override/font/ltn0.pgf.
loglevel.txt: controls logging verbosity. 0(quiet) - 5(everything). +10 = log to /log.txt (and probably crash).
Detailed desc:
If any file exists on the memory stick in the /cxmb/override/vsh/module, /cxmb/override/vsh/resource, or /cxmb/override/font folders, it will load the file -instead- of whatever is (or isn't) in a .ctf.
Yes, this includes .prx files, (except for paf.prx, common_gui.prx, and vshmain.prx which will be added later). This means you can hex edit htmlviewer_plugin.prx and change the 'online instruction manuals' link to whatever, without unpacking and repacking your .ctf. This also opens the possibility for homebrew to edit this sort of thing onboard - for now, pspconsole's hex editor works great for onboard tweaking.
This is intended for theme developers, power users, and anyone who wishes to use their own gameboot, 01-12.bmp, sounds, or whatever, instead of what may be in the loaded theme.
As CXMB is licensed under the GPL, the full source code is provided in the source directory.
Caveats:
* For now, one must have a .ctf theme loaded for /cxmb/override/ to work.
* As in the original cxmb, lflash_drv->funcs->IoWrite is -not- hooked.
* Semi-bricking possible if one puts in a bad .prx or .rco - this can be fixed by disabling cxmb-override.prx in recovery mode.
* Adding certain stuff like 01-12.bmp will require a reboot. Others like gameboot.pmf do not require it. When in doubt, reboot.
* Simply tossing in a gameboot.pmf will not change the playing time. Find or edit the appropriate vsh/resource/opening_plugin.rco. MyGameboot.prx is a better plugin if you simply want this functionality.
* Likewise, 01-12.bmp with multiple images will not work if the chunksize for individual images is different in vshmain.prx(?). Find a theme that you like and rip/edit the 01-12.bmp from that.
* The included binary outputs debugging messages, which are normally invisible but may have a performance impact.
Tested so far:
* Firmware: 5.50gen d3final, (5.00m33 should work)
* .ctf Themes: P3T ([Release] P3T550 Persona3 Theme), V1 ([550gen]V1a), stock 5.50gen files.
Tested replacements - (much more is possible):
01-12.bmp (wallpaper)
gameboot.pmf (pre-game video)
htmlviewer_plugin.* (web browser)
opening_plugin.rco (bootup intro, gameboot delay)
topmenu_plugin.rco (menu strings)
osk_plugin_500.* (keyboard)
rss_browser.* (rss reader)
system_plugin.* (sounds)
impose_plugin.rco (volume adjustment bar)
Links (censored because I might be a no good dirty spammer)
Project page: code.google.com/p/cxmb-override/
Download: cxmb-override.googlecode.com/files/cxmb-override-0.2.7z
Mirror: fnord.to/psp/cxmb-override-0.2.7z
Installation:
* copy cxmb/cxmb-override.prx to the cxmb folder on your memstick.
* (optional) copy the cxmb/override folder to cxmb/override on your memstick. This contains a gameboot and 01-12.bmp that have been tested to work (yes, the wallpaper is moronic :P).
** in /seplugins/vsh.txt, disable ms0:/cxmb/cxmb.prx
** in /seplugins/vsh.txt, add ms0:/cxmb/cxmb-override.prx 1
*** You can simply replace cxmb.prx too.
Usage:
* To replace a gameboot.pmf or 01-12.bmp, toss it into /cxmb/override/vsh/resource/ You may need to put an opening_plugin.rco with the right delay as well.
* The above likely applies to waves and whatever was included in TheCraziness1's 'XMB RCO Patcher'
Debuggery:
The logfile debugging function in the original cxmb croaked with high volume logging. The included binary prints to stderr instead, which means psplink and pspsh.exe are needed to see informative messages. If you want to help debug issues, a .zip of a working psplink and utilities can be provided.
I would appreciate testing and source review, as I am not -that- familiar with C or PSP programming.
Todo:
* TESTING (mostly done I believe).
* Reading from /cxmb/override without a loaded ctf.
* Retry-on-error for read/seek/open/etc as in .ctf files
* Find a better way to check for a file's existence than just attempting to open. This applies to .ctf too.
* vshmain.prx and others.
* conf.txt options for debugging/enabling/etc.
* optional 01-12.bmp chunksize and gameboot.pmf delay handling.
* options for per-module override exceptions (such as not allowing the browser to use a custom font, etc).
* overriding more than just 3 flash0 dirs without croaking (flash0:/kd/* in game mode?)
Why:
rco_patcher.prx provides functionality for replacing .rcos only, and doesn't work with cxmb. I am too lazy to constantly unpack and repack CTF themes while testing stuff.
Thanks:
* Dark_alex for cfw and especially a recovery menu with usb mode :P
* The original author of CXMB for creating it and placing it under GPL, who's name I am ignorant of because I are teh noob.
* Poisonhzkj and Matchung for coding and updating cxmb.
Version 0.3 changes:
ignore.txt: per-thread blacklist of certain files (override/* and inside ctfs). Included ignore.txt disables alternative font loading for the web browser's HTML rendering, since that always ends up messy.
CXMB is no longer restricted to ms0:/cxmb. You can now throw it into /seplugins, /psp/cxmb, /omg/wtf/bbq, or whatever. override/* and conf files must exist in the same directory as cxmb-override.prx.
/kd/ overrides enabled: not as useful as you may think.
read and lseek no longer croak on overridden files after sleep mode, a bug which was most noticable with override/font/ltn0.pgf.
loglevel.txt: controls logging verbosity. 0(quiet) - 5(everything). +10 = log to /log.txt (and probably crash).
http://cxmb-override.googlecode.com/...verride-0.3.7z
Last edited by nickxab; 06-30-2010 at 10:23 AM. Reason: New ver
-
06-20-2010, 02:21 AM #2Speed for life
Awards:
- Join Date
- Jan 2009
- Location
- Greece,Limnos
- Posts
- 7,863
- QJ Pts
- 156,789
- Level
- 100
- My Mood
-
- Downloads
- 12
- Uploads
- 2
I already posted this here but it's nice to see you there too.

Fell free to post your updates. ;)
Good work but i already said you when i press in any of the icons in the settings menu my psp freeze.
[SIZE="1"][COLOR=limegreen]Phat PSP 1004 TA-079 v3 + Sony 16GB Mark II + tiltFX with 5.00 m33-6 + 1.50 kernel +Prometheus-4 patch + 5.01 patch[/COLOR]
[COLOR=DarkOrange]Phat PS3 CECHG04 40GB (750GB) with 3.55.2 PRIVACY[/COLOR]
[COLOR=Red]Slim PS2 SCPH-75004 + Free McBoot 1.8b + uLaunchELF v4.42 + ESR beta r9b[/COLOR]
[COLOR=teal]iPhone 3G 8GB jailbroken with iOS 4.2.1 with OpeniBoot 0.2 and iDroid Pepparkaka 11.04 (Android 2.3.3)[/COLOR]
[COLOR=DarkOrchid]Fujitsu Simens Amilo PA1510 + 2.5GB Ram + AMD Sempron 3400+ 1.8GHz + Windows XP/Ubuntu 9.10[/COLOR][/SIZE]
[URL="http://forums.qj.net/guides-psp-hacks-homebrew-emulators/159330-guide-how-patch-5-55-6-00-6-10-6-20-6-30-6-31-6-35-6-36-games-all-cfw.html"]Patch the 5.55/6.00/6.10/6.20/6.30/6.31/6.35/6.36 games to work with all FWs[/URL]
[URL="http://forums.qj.net/psp-general/170056-cwcheat-databases.html"]My CWCheat databases[/URL]
[URL="http://forums.qj.net/guides-psp-hacks-homebrew-emulators/156916-guide-ultimate-psp-game-addons-guide.html"]PSP Game Addons[/URL]
[URL="http://forums.qj.net/blogs/nickxab/"]My qj blog[/URL]
[URL="http://forums.qj.net/blogs/nickxab/17-cydia-sources.html"]Cydia Sources[/URL]
[IMG]http://img32.imageshack.us/img32/6181/58350347.png[/IMG]
[IMG]http://img156.imageshack.us/img156/5489/consoles.gif[/IMG]
[IMG]http://img843.imageshack.us/img843/2356/kyoshoracer.jpg[/IMG]
[IMG]http://img80.imageshack.us/img80/8681/userbar794826.gif[/IMG]
[IMG]http://img517.imageshack.us/img517/2861/userbar781427.gif[/IMG]
[IMG]http://img256.imageshack.us/img256/3394/userbar781454.gif[/IMG]
[IMG]http://img231.imageshack.us/img231/1889/userbar781443.gif[/IMG]
[IMG]http://www.userbars.com/i/542861.gif[/IMG]
-
06-20-2010, 04:10 AM #3QJ Gamer Blue
Achievements:
- Join Date
- Jun 2010
- Location
- tx
- Posts
- 62
- QJ Pts
- 1,624
- Level
- 23
- Downloads
- 0
- Uploads
- 0
-
06-20-2010, 07:59 AM #4Speed for life
Awards:
- Join Date
- Jan 2009
- Location
- Greece,Limnos
- Posts
- 7,863
- QJ Pts
- 156,789
- Level
- 100
- My Mood
-
- Downloads
- 12
- Uploads
- 2
I am in 5.00 m33-6 and i use a theme that i made.
But maybe the problem is any of my plugins....i will test it with out my plugins and then if it works i will enable one-one my plugins to see which has problem.[SIZE="1"][COLOR=limegreen]Phat PSP 1004 TA-079 v3 + Sony 16GB Mark II + tiltFX with 5.00 m33-6 + 1.50 kernel +Prometheus-4 patch + 5.01 patch[/COLOR]
[COLOR=DarkOrange]Phat PS3 CECHG04 40GB (750GB) with 3.55.2 PRIVACY[/COLOR]
[COLOR=Red]Slim PS2 SCPH-75004 + Free McBoot 1.8b + uLaunchELF v4.42 + ESR beta r9b[/COLOR]
[COLOR=teal]iPhone 3G 8GB jailbroken with iOS 4.2.1 with OpeniBoot 0.2 and iDroid Pepparkaka 11.04 (Android 2.3.3)[/COLOR]
[COLOR=DarkOrchid]Fujitsu Simens Amilo PA1510 + 2.5GB Ram + AMD Sempron 3400+ 1.8GHz + Windows XP/Ubuntu 9.10[/COLOR][/SIZE]
[URL="http://forums.qj.net/guides-psp-hacks-homebrew-emulators/159330-guide-how-patch-5-55-6-00-6-10-6-20-6-30-6-31-6-35-6-36-games-all-cfw.html"]Patch the 5.55/6.00/6.10/6.20/6.30/6.31/6.35/6.36 games to work with all FWs[/URL]
[URL="http://forums.qj.net/psp-general/170056-cwcheat-databases.html"]My CWCheat databases[/URL]
[URL="http://forums.qj.net/guides-psp-hacks-homebrew-emulators/156916-guide-ultimate-psp-game-addons-guide.html"]PSP Game Addons[/URL]
[URL="http://forums.qj.net/blogs/nickxab/"]My qj blog[/URL]
[URL="http://forums.qj.net/blogs/nickxab/17-cydia-sources.html"]Cydia Sources[/URL]
[IMG]http://img32.imageshack.us/img32/6181/58350347.png[/IMG]
[IMG]http://img156.imageshack.us/img156/5489/consoles.gif[/IMG]
[IMG]http://img843.imageshack.us/img843/2356/kyoshoracer.jpg[/IMG]
[IMG]http://img80.imageshack.us/img80/8681/userbar794826.gif[/IMG]
[IMG]http://img517.imageshack.us/img517/2861/userbar781427.gif[/IMG]
[IMG]http://img256.imageshack.us/img256/3394/userbar781454.gif[/IMG]
[IMG]http://img231.imageshack.us/img231/1889/userbar781443.gif[/IMG]
[IMG]http://www.userbars.com/i/542861.gif[/IMG]
-
06-20-2010, 08:33 PM #5QJ Gamer Blue
Achievements:
- Join Date
- Jun 2010
- Location
- tx
- Posts
- 62
- QJ Pts
- 1,624
- Level
- 23
- Downloads
- 0
- Uploads
- 0
Allright. From what I can tell by looking at the -code- this (and the 5.50-compat version it's based on) should be compatible with 5.00, but I've not actually tested it, nor have I gotten any feedback from other 5.0 users. I can revive my old 1000 after I get it back from a friend's and test it on that if this persists.
In 5.50 the following plugins played nicely with this: xmbim, game_categories, pspconsole, mybootlogo, homebrew_shortcuts, psnlover, macrofire, psplink
Hostcore and rco_patcher may conflict with this and stock cxmb?
-
06-21-2010, 02:54 AM #6Speed for life
Awards:
- Join Date
- Jan 2009
- Location
- Greece,Limnos
- Posts
- 7,863
- QJ Pts
- 156,789
- Level
- 100
- My Mood
-
- Downloads
- 12
- Uploads
- 2
Oki tried it again without my plugins and still the same problem.
So the problem cause by the CXMB-override. ;)
Ok if you got your 1000 back test it.[SIZE="1"][COLOR=limegreen]Phat PSP 1004 TA-079 v3 + Sony 16GB Mark II + tiltFX with 5.00 m33-6 + 1.50 kernel +Prometheus-4 patch + 5.01 patch[/COLOR]
[COLOR=DarkOrange]Phat PS3 CECHG04 40GB (750GB) with 3.55.2 PRIVACY[/COLOR]
[COLOR=Red]Slim PS2 SCPH-75004 + Free McBoot 1.8b + uLaunchELF v4.42 + ESR beta r9b[/COLOR]
[COLOR=teal]iPhone 3G 8GB jailbroken with iOS 4.2.1 with OpeniBoot 0.2 and iDroid Pepparkaka 11.04 (Android 2.3.3)[/COLOR]
[COLOR=DarkOrchid]Fujitsu Simens Amilo PA1510 + 2.5GB Ram + AMD Sempron 3400+ 1.8GHz + Windows XP/Ubuntu 9.10[/COLOR][/SIZE]
[URL="http://forums.qj.net/guides-psp-hacks-homebrew-emulators/159330-guide-how-patch-5-55-6-00-6-10-6-20-6-30-6-31-6-35-6-36-games-all-cfw.html"]Patch the 5.55/6.00/6.10/6.20/6.30/6.31/6.35/6.36 games to work with all FWs[/URL]
[URL="http://forums.qj.net/psp-general/170056-cwcheat-databases.html"]My CWCheat databases[/URL]
[URL="http://forums.qj.net/guides-psp-hacks-homebrew-emulators/156916-guide-ultimate-psp-game-addons-guide.html"]PSP Game Addons[/URL]
[URL="http://forums.qj.net/blogs/nickxab/"]My qj blog[/URL]
[URL="http://forums.qj.net/blogs/nickxab/17-cydia-sources.html"]Cydia Sources[/URL]
[IMG]http://img32.imageshack.us/img32/6181/58350347.png[/IMG]
[IMG]http://img156.imageshack.us/img156/5489/consoles.gif[/IMG]
[IMG]http://img843.imageshack.us/img843/2356/kyoshoracer.jpg[/IMG]
[IMG]http://img80.imageshack.us/img80/8681/userbar794826.gif[/IMG]
[IMG]http://img517.imageshack.us/img517/2861/userbar781427.gif[/IMG]
[IMG]http://img256.imageshack.us/img256/3394/userbar781454.gif[/IMG]
[IMG]http://img231.imageshack.us/img231/1889/userbar781443.gif[/IMG]
[IMG]http://www.userbars.com/i/542861.gif[/IMG]
-
06-21-2010, 04:32 PM #7QJ Gamer Blue
Achievements:
- Join Date
- Jun 2010
- Location
- tx
- Posts
- 62
- QJ Pts
- 1,624
- Level
- 23
- Downloads
- 0
- Uploads
- 0
AHA! I am pleased to announce that not only does 0.2 fix 5.0 support, but that the bug wasn't my fault!
!!!! Try now ^^
BTW, where can one track down total_noob? I would like to incorporate any improvements he may have made into this as well.
Also, how does one get a homebrewthingie posted on the frontpage & dl.qj.net?
The issue was:
Code:--- cxmb-read-only/main.c 2010-06-21 18:36:55.859375000 -0500 +++ cxmb-mt/main.c 2009-04-28 14:58:58.000000000 -0500 @@ -453,7 +453,7 @@ else if ( strcmp( mod->modname, "sysconf_plugin_module" ) == 0 ) { unsigned int offset = getSysconfOffset(); - if ( fw_version == FW_500 ) + if ( fw_version == FW_550 )
-
06-21-2010, 04:56 PM #8QJ Gamer Gold

- Join Date
- Nov 2008
- Location
- CAD
- Posts
- 693
- QJ Pts
- 13,372
- Level
- 75
- Downloads
- 19
- Uploads
- 4
Send him a PM or an e-maill, just look at his profile page. And the bloggers have to read this so that they can post it on QJ's front page.
That epic dude.
-
06-21-2010, 05:14 PM #9Lua Coder

- Join Date
- Jan 2008
- Location
- Iowa
- Posts
- 834
- QJ Pts
- 18,915
- Level
- 87
- My Mood
-
- Downloads
- 2
- Uploads
- 0
or you could click the "contact us" link at the top of the page ;)
-
06-22-2010, 12:50 AM #10QJ Gamer Gold

- Join Date
- Nov 2008
- Location
- CAD
- Posts
- 693
- QJ Pts
- 13,372
- Level
- 75
- Downloads
- 19
- Uploads
- 4
There's a contact us link? :O Never even noticed it
That epic dude.
-
06-22-2010, 02:30 AM #11Speed for life
Awards:
- Join Date
- Jan 2009
- Location
- Greece,Limnos
- Posts
- 7,863
- QJ Pts
- 156,789
- Level
- 100
- My Mood
-
- Downloads
- 12
- Uploads
- 2
[SIZE="1"][COLOR=limegreen]Phat PSP 1004 TA-079 v3 + Sony 16GB Mark II + tiltFX with 5.00 m33-6 + 1.50 kernel +Prometheus-4 patch + 5.01 patch[/COLOR]
[COLOR=DarkOrange]Phat PS3 CECHG04 40GB (750GB) with 3.55.2 PRIVACY[/COLOR]
[COLOR=Red]Slim PS2 SCPH-75004 + Free McBoot 1.8b + uLaunchELF v4.42 + ESR beta r9b[/COLOR]
[COLOR=teal]iPhone 3G 8GB jailbroken with iOS 4.2.1 with OpeniBoot 0.2 and iDroid Pepparkaka 11.04 (Android 2.3.3)[/COLOR]
[COLOR=DarkOrchid]Fujitsu Simens Amilo PA1510 + 2.5GB Ram + AMD Sempron 3400+ 1.8GHz + Windows XP/Ubuntu 9.10[/COLOR][/SIZE]
[URL="http://forums.qj.net/guides-psp-hacks-homebrew-emulators/159330-guide-how-patch-5-55-6-00-6-10-6-20-6-30-6-31-6-35-6-36-games-all-cfw.html"]Patch the 5.55/6.00/6.10/6.20/6.30/6.31/6.35/6.36 games to work with all FWs[/URL]
[URL="http://forums.qj.net/psp-general/170056-cwcheat-databases.html"]My CWCheat databases[/URL]
[URL="http://forums.qj.net/guides-psp-hacks-homebrew-emulators/156916-guide-ultimate-psp-game-addons-guide.html"]PSP Game Addons[/URL]
[URL="http://forums.qj.net/blogs/nickxab/"]My qj blog[/URL]
[URL="http://forums.qj.net/blogs/nickxab/17-cydia-sources.html"]Cydia Sources[/URL]
[IMG]http://img32.imageshack.us/img32/6181/58350347.png[/IMG]
[IMG]http://img156.imageshack.us/img156/5489/consoles.gif[/IMG]
[IMG]http://img843.imageshack.us/img843/2356/kyoshoracer.jpg[/IMG]
[IMG]http://img80.imageshack.us/img80/8681/userbar794826.gif[/IMG]
[IMG]http://img517.imageshack.us/img517/2861/userbar781427.gif[/IMG]
[IMG]http://img256.imageshack.us/img256/3394/userbar781454.gif[/IMG]
[IMG]http://img231.imageshack.us/img231/1889/userbar781443.gif[/IMG]
[IMG]http://www.userbars.com/i/542861.gif[/IMG]
-
06-23-2010, 08:21 AM #12QJ Gamer Green
- Join Date
- Jan 2008
- Posts
- 37
- QJ Pts
- 2,823
- Level
- 32
- Downloads
- 0
- Uploads
- 0
thank you so much for the fix ,i had the same problem as above with my fat on 5.00m33 ...now it works and my psp doesnt freeze when i enter settings...by the way i use psp console1.7 to edit(copy/paste/delete) its fast and works great
thank you thank you thank you:Jump:
-
06-23-2010, 02:12 PM #13Speed for life
Awards:
- Join Date
- Jan 2009
- Location
- Greece,Limnos
- Posts
- 7,863
- QJ Pts
- 156,789
- Level
- 100
- My Mood
-
- Downloads
- 12
- Uploads
- 2
Hehe the same here too.
It seems that it works fine.
Good job.
[SIZE="1"][COLOR=limegreen]Phat PSP 1004 TA-079 v3 + Sony 16GB Mark II + tiltFX with 5.00 m33-6 + 1.50 kernel +Prometheus-4 patch + 5.01 patch[/COLOR]
[COLOR=DarkOrange]Phat PS3 CECHG04 40GB (750GB) with 3.55.2 PRIVACY[/COLOR]
[COLOR=Red]Slim PS2 SCPH-75004 + Free McBoot 1.8b + uLaunchELF v4.42 + ESR beta r9b[/COLOR]
[COLOR=teal]iPhone 3G 8GB jailbroken with iOS 4.2.1 with OpeniBoot 0.2 and iDroid Pepparkaka 11.04 (Android 2.3.3)[/COLOR]
[COLOR=DarkOrchid]Fujitsu Simens Amilo PA1510 + 2.5GB Ram + AMD Sempron 3400+ 1.8GHz + Windows XP/Ubuntu 9.10[/COLOR][/SIZE]
[URL="http://forums.qj.net/guides-psp-hacks-homebrew-emulators/159330-guide-how-patch-5-55-6-00-6-10-6-20-6-30-6-31-6-35-6-36-games-all-cfw.html"]Patch the 5.55/6.00/6.10/6.20/6.30/6.31/6.35/6.36 games to work with all FWs[/URL]
[URL="http://forums.qj.net/psp-general/170056-cwcheat-databases.html"]My CWCheat databases[/URL]
[URL="http://forums.qj.net/guides-psp-hacks-homebrew-emulators/156916-guide-ultimate-psp-game-addons-guide.html"]PSP Game Addons[/URL]
[URL="http://forums.qj.net/blogs/nickxab/"]My qj blog[/URL]
[URL="http://forums.qj.net/blogs/nickxab/17-cydia-sources.html"]Cydia Sources[/URL]
[IMG]http://img32.imageshack.us/img32/6181/58350347.png[/IMG]
[IMG]http://img156.imageshack.us/img156/5489/consoles.gif[/IMG]
[IMG]http://img843.imageshack.us/img843/2356/kyoshoracer.jpg[/IMG]
[IMG]http://img80.imageshack.us/img80/8681/userbar794826.gif[/IMG]
[IMG]http://img517.imageshack.us/img517/2861/userbar781427.gif[/IMG]
[IMG]http://img256.imageshack.us/img256/3394/userbar781454.gif[/IMG]
[IMG]http://img231.imageshack.us/img231/1889/userbar781443.gif[/IMG]
[IMG]http://www.userbars.com/i/542861.gif[/IMG]
-
06-23-2010, 06:15 PM #14QJ Gamer Blue
Achievements:
- Join Date
- Dec 2009
- Location
- Outer Heaven
- Posts
- 12
- QJ Pts
- 1,431
- Level
- 21
- Downloads
- 0
- Uploads
- 0
can you make it work on 5.03 Gen-B... because i cannot see all of my CTF themes. tnx
-
06-25-2010, 11:34 AM #15QJ Gamer Blue
Achievements:
- Join Date
- Jun 2010
- Location
- tx
- Posts
- 62
- QJ Pts
- 1,624
- Level
- 23
- Downloads
- 0
- Uploads
- 0
I suppose checking to see if someone is a forum member before asking about contact info might be a be a good idea for next time :P~~~
I'll ask total_noob for the source code for psp-hacks.com/file/1742 too.
Edit: Or I would but apparently it's msn only and I don't have that. >.> Does someone know where the source code is posted? The offsets in cxmb source don't match 550 .prx's (for PTF it's 0x257B8 in src, 0x28858 in sysconf_plugin.prx), so I'm missing something when trying to find answers there. That, and no 5.03genb testing environment, so yeah.Last edited by AtomicDryad; 06-25-2010 at 12:13 PM.
-
06-25-2010, 02:56 PM #16Speed for life
Awards:
- Join Date
- Jan 2009
- Location
- Greece,Limnos
- Posts
- 7,863
- QJ Pts
- 156,789
- Level
- 100
- My Mood
-
- Downloads
- 12
- Uploads
- 2
I will tell TN to check this thread.
[SIZE="1"][COLOR=limegreen]Phat PSP 1004 TA-079 v3 + Sony 16GB Mark II + tiltFX with 5.00 m33-6 + 1.50 kernel +Prometheus-4 patch + 5.01 patch[/COLOR]
[COLOR=DarkOrange]Phat PS3 CECHG04 40GB (750GB) with 3.55.2 PRIVACY[/COLOR]
[COLOR=Red]Slim PS2 SCPH-75004 + Free McBoot 1.8b + uLaunchELF v4.42 + ESR beta r9b[/COLOR]
[COLOR=teal]iPhone 3G 8GB jailbroken with iOS 4.2.1 with OpeniBoot 0.2 and iDroid Pepparkaka 11.04 (Android 2.3.3)[/COLOR]
[COLOR=DarkOrchid]Fujitsu Simens Amilo PA1510 + 2.5GB Ram + AMD Sempron 3400+ 1.8GHz + Windows XP/Ubuntu 9.10[/COLOR][/SIZE]
[URL="http://forums.qj.net/guides-psp-hacks-homebrew-emulators/159330-guide-how-patch-5-55-6-00-6-10-6-20-6-30-6-31-6-35-6-36-games-all-cfw.html"]Patch the 5.55/6.00/6.10/6.20/6.30/6.31/6.35/6.36 games to work with all FWs[/URL]
[URL="http://forums.qj.net/psp-general/170056-cwcheat-databases.html"]My CWCheat databases[/URL]
[URL="http://forums.qj.net/guides-psp-hacks-homebrew-emulators/156916-guide-ultimate-psp-game-addons-guide.html"]PSP Game Addons[/URL]
[URL="http://forums.qj.net/blogs/nickxab/"]My qj blog[/URL]
[URL="http://forums.qj.net/blogs/nickxab/17-cydia-sources.html"]Cydia Sources[/URL]
[IMG]http://img32.imageshack.us/img32/6181/58350347.png[/IMG]
[IMG]http://img156.imageshack.us/img156/5489/consoles.gif[/IMG]
[IMG]http://img843.imageshack.us/img843/2356/kyoshoracer.jpg[/IMG]
[IMG]http://img80.imageshack.us/img80/8681/userbar794826.gif[/IMG]
[IMG]http://img517.imageshack.us/img517/2861/userbar781427.gif[/IMG]
[IMG]http://img256.imageshack.us/img256/3394/userbar781454.gif[/IMG]
[IMG]http://img231.imageshack.us/img231/1889/userbar781443.gif[/IMG]
[IMG]http://www.userbars.com/i/542861.gif[/IMG]
-
06-26-2010, 09:02 AM #17QJ's Satallite
Awards:
- Join Date
- May 2008
- Location
- Black market
- Posts
- 5,813
- QJ Pts
- 21,269
- Level
- 91
- My Mood
-
- Downloads
- 5
- Uploads
- 0
We are sorry for any forum-frontpage delay. It is just too slow.
Last edited by elite999; 06-26-2010 at 11:38 AM.
-
06-26-2010, 11:18 AM #18Speed for life
Awards:
- Join Date
- Jan 2009
- Location
- Greece,Limnos
- Posts
- 7,863
- QJ Pts
- 156,789
- Level
- 100
- My Mood
-
- Downloads
- 12
- Uploads
- 2
It is already in the front page:http://dl.qj.net/psp/homebrew-applic...rride-v02.html
[SIZE="1"][COLOR=limegreen]Phat PSP 1004 TA-079 v3 + Sony 16GB Mark II + tiltFX with 5.00 m33-6 + 1.50 kernel +Prometheus-4 patch + 5.01 patch[/COLOR]
[COLOR=DarkOrange]Phat PS3 CECHG04 40GB (750GB) with 3.55.2 PRIVACY[/COLOR]
[COLOR=Red]Slim PS2 SCPH-75004 + Free McBoot 1.8b + uLaunchELF v4.42 + ESR beta r9b[/COLOR]
[COLOR=teal]iPhone 3G 8GB jailbroken with iOS 4.2.1 with OpeniBoot 0.2 and iDroid Pepparkaka 11.04 (Android 2.3.3)[/COLOR]
[COLOR=DarkOrchid]Fujitsu Simens Amilo PA1510 + 2.5GB Ram + AMD Sempron 3400+ 1.8GHz + Windows XP/Ubuntu 9.10[/COLOR][/SIZE]
[URL="http://forums.qj.net/guides-psp-hacks-homebrew-emulators/159330-guide-how-patch-5-55-6-00-6-10-6-20-6-30-6-31-6-35-6-36-games-all-cfw.html"]Patch the 5.55/6.00/6.10/6.20/6.30/6.31/6.35/6.36 games to work with all FWs[/URL]
[URL="http://forums.qj.net/psp-general/170056-cwcheat-databases.html"]My CWCheat databases[/URL]
[URL="http://forums.qj.net/guides-psp-hacks-homebrew-emulators/156916-guide-ultimate-psp-game-addons-guide.html"]PSP Game Addons[/URL]
[URL="http://forums.qj.net/blogs/nickxab/"]My qj blog[/URL]
[URL="http://forums.qj.net/blogs/nickxab/17-cydia-sources.html"]Cydia Sources[/URL]
[IMG]http://img32.imageshack.us/img32/6181/58350347.png[/IMG]
[IMG]http://img156.imageshack.us/img156/5489/consoles.gif[/IMG]
[IMG]http://img843.imageshack.us/img843/2356/kyoshoracer.jpg[/IMG]
[IMG]http://img80.imageshack.us/img80/8681/userbar794826.gif[/IMG]
[IMG]http://img517.imageshack.us/img517/2861/userbar781427.gif[/IMG]
[IMG]http://img256.imageshack.us/img256/3394/userbar781454.gif[/IMG]
[IMG]http://img231.imageshack.us/img231/1889/userbar781443.gif[/IMG]
[IMG]http://www.userbars.com/i/542861.gif[/IMG]
-
06-26-2010, 11:37 AM #19QJ's Satallite
Awards:
- Join Date
- May 2008
- Location
- Black market
- Posts
- 5,813
- QJ Pts
- 21,269
- Level
- 91
- My Mood
-
- Downloads
- 5
- Uploads
- 0
Yeah, I know. Just wanted to clarify that if any such problem occur in the future.
-
06-26-2010, 04:02 PM #20Speed for life
Awards:
- Join Date
- Jan 2009
- Location
- Greece,Limnos
- Posts
- 7,863
- QJ Pts
- 156,789
- Level
- 100
- My Mood
-
- Downloads
- 12
- Uploads
- 2
Ah ok !
@AtomicDryad
I have a question.
Is it possible to run files for the kd folder ?
With a mod maybe ?[SIZE="1"][COLOR=limegreen]Phat PSP 1004 TA-079 v3 + Sony 16GB Mark II + tiltFX with 5.00 m33-6 + 1.50 kernel +Prometheus-4 patch + 5.01 patch[/COLOR]
[COLOR=DarkOrange]Phat PS3 CECHG04 40GB (750GB) with 3.55.2 PRIVACY[/COLOR]
[COLOR=Red]Slim PS2 SCPH-75004 + Free McBoot 1.8b + uLaunchELF v4.42 + ESR beta r9b[/COLOR]
[COLOR=teal]iPhone 3G 8GB jailbroken with iOS 4.2.1 with OpeniBoot 0.2 and iDroid Pepparkaka 11.04 (Android 2.3.3)[/COLOR]
[COLOR=DarkOrchid]Fujitsu Simens Amilo PA1510 + 2.5GB Ram + AMD Sempron 3400+ 1.8GHz + Windows XP/Ubuntu 9.10[/COLOR][/SIZE]
[URL="http://forums.qj.net/guides-psp-hacks-homebrew-emulators/159330-guide-how-patch-5-55-6-00-6-10-6-20-6-30-6-31-6-35-6-36-games-all-cfw.html"]Patch the 5.55/6.00/6.10/6.20/6.30/6.31/6.35/6.36 games to work with all FWs[/URL]
[URL="http://forums.qj.net/psp-general/170056-cwcheat-databases.html"]My CWCheat databases[/URL]
[URL="http://forums.qj.net/guides-psp-hacks-homebrew-emulators/156916-guide-ultimate-psp-game-addons-guide.html"]PSP Game Addons[/URL]
[URL="http://forums.qj.net/blogs/nickxab/"]My qj blog[/URL]
[URL="http://forums.qj.net/blogs/nickxab/17-cydia-sources.html"]Cydia Sources[/URL]
[IMG]http://img32.imageshack.us/img32/6181/58350347.png[/IMG]
[IMG]http://img156.imageshack.us/img156/5489/consoles.gif[/IMG]
[IMG]http://img843.imageshack.us/img843/2356/kyoshoracer.jpg[/IMG]
[IMG]http://img80.imageshack.us/img80/8681/userbar794826.gif[/IMG]
[IMG]http://img517.imageshack.us/img517/2861/userbar781427.gif[/IMG]
[IMG]http://img256.imageshack.us/img256/3394/userbar781454.gif[/IMG]
[IMG]http://img231.imageshack.us/img231/1889/userbar781443.gif[/IMG]
[IMG]http://www.userbars.com/i/542861.gif[/IMG]
-
06-27-2010, 09:41 PM #21QJ Gamer Blue
Achievements:
- Join Date
- Jun 2010
- Location
- tx
- Posts
- 62
- QJ Pts
- 1,624
- Level
- 23
- Downloads
- 0
- Uploads
- 0
Thanks!
Noted, and thanks
Originally I had it checking -everything- including f0:/kd/, however the psp failed to boot even with nothing in ms0:/cxmb/override/kd. This may have been due to the old log() debug-to-file function which caused many crashes, however. If you want to try, add "/kd/" to override_dirs at the top of main.c and bump override_dirs_c to 4, then rebuild.
I'm likely to look into fixing /kd/ etc when I finish with my current project - being terribly sick =[
Fixing /kd/ would be great as a game plugin could be created to use CFW 5.50 prometheus without flashing, perhaps even in 5.00m33.
-
06-27-2010, 09:48 PM #22QJ Gamer Blue
Achievements:
- Join Date
- Jun 2010
- Location
- tx
- Posts
- 62
- QJ Pts
- 1,624
- Level
- 23
- Downloads
- 0
- Uploads
- 0
I compiled it with /kd/ overrides enabled and have uploaded. It boots, so I must conclude that it was the file logging. Here it is: http://fnord.to/psp/cxmb-override-0.2.kdtest1.zip (This is not a release intended for announcement / blogging)
Give it a shot, and let me know what /kd/ files you're trying to replace, and how that works out? I think many things simply won't work as they'll be loaded before /seplugins/ gets processed, like vsh/module/vshmain.prx, etc.
It's a pity all CFWs are proprietary.Last edited by nickxab; 06-28-2010 at 05:20 AM. Reason: Link fixed
-
06-27-2010, 11:54 PM #23QJ Gamer Blue
Achievements:
- Join Date
- Dec 2009
- Location
- Outer Heaven
- Posts
- 12
- QJ Pts
- 1,431
- Level
- 21
- Downloads
- 0
- Uploads
- 0
is there any new update about 5.03 Gen-B? tnx...
-
06-28-2010, 05:04 AM #24QJ's Satallite
Awards:
- Join Date
- May 2008
- Location
- Black market
- Posts
- 5,813
- QJ Pts
- 21,269
- Level
- 91
- My Mood
-
- Downloads
- 5
- Uploads
- 0
That is irrelevant to the topic tehrzky. Please create a new thread for any help.
-
06-28-2010, 05:19 AM #25Speed for life
Awards:
- Join Date
- Jan 2009
- Location
- Greece,Limnos
- Posts
- 7,863
- QJ Pts
- 156,789
- Level
- 100
- My Mood
-
- Downloads
- 12
- Uploads
- 2
Ah cool thanks.

EDIT: i tried it and it doesn't crash the psp but it doesn't read the files from the kd folder in the ms (ms0:/cxmb/override/kd).
I added a hex edited vshctrl.prxLast edited by nickxab; 06-28-2010 at 05:51 AM.
[SIZE="1"][COLOR=limegreen]Phat PSP 1004 TA-079 v3 + Sony 16GB Mark II + tiltFX with 5.00 m33-6 + 1.50 kernel +Prometheus-4 patch + 5.01 patch[/COLOR]
[COLOR=DarkOrange]Phat PS3 CECHG04 40GB (750GB) with 3.55.2 PRIVACY[/COLOR]
[COLOR=Red]Slim PS2 SCPH-75004 + Free McBoot 1.8b + uLaunchELF v4.42 + ESR beta r9b[/COLOR]
[COLOR=teal]iPhone 3G 8GB jailbroken with iOS 4.2.1 with OpeniBoot 0.2 and iDroid Pepparkaka 11.04 (Android 2.3.3)[/COLOR]
[COLOR=DarkOrchid]Fujitsu Simens Amilo PA1510 + 2.5GB Ram + AMD Sempron 3400+ 1.8GHz + Windows XP/Ubuntu 9.10[/COLOR][/SIZE]
[URL="http://forums.qj.net/guides-psp-hacks-homebrew-emulators/159330-guide-how-patch-5-55-6-00-6-10-6-20-6-30-6-31-6-35-6-36-games-all-cfw.html"]Patch the 5.55/6.00/6.10/6.20/6.30/6.31/6.35/6.36 games to work with all FWs[/URL]
[URL="http://forums.qj.net/psp-general/170056-cwcheat-databases.html"]My CWCheat databases[/URL]
[URL="http://forums.qj.net/guides-psp-hacks-homebrew-emulators/156916-guide-ultimate-psp-game-addons-guide.html"]PSP Game Addons[/URL]
[URL="http://forums.qj.net/blogs/nickxab/"]My qj blog[/URL]
[URL="http://forums.qj.net/blogs/nickxab/17-cydia-sources.html"]Cydia Sources[/URL]
[IMG]http://img32.imageshack.us/img32/6181/58350347.png[/IMG]
[IMG]http://img156.imageshack.us/img156/5489/consoles.gif[/IMG]
[IMG]http://img843.imageshack.us/img843/2356/kyoshoracer.jpg[/IMG]
[IMG]http://img80.imageshack.us/img80/8681/userbar794826.gif[/IMG]
[IMG]http://img517.imageshack.us/img517/2861/userbar781427.gif[/IMG]
[IMG]http://img256.imageshack.us/img256/3394/userbar781454.gif[/IMG]
[IMG]http://img231.imageshack.us/img231/1889/userbar781443.gif[/IMG]
[IMG]http://www.userbars.com/i/542861.gif[/IMG]
-
06-28-2010, 06:25 PM #26QJ Gamer Blue
Achievements:
- Join Date
- Dec 2009
- Location
- Outer Heaven
- Posts
- 12
- QJ Pts
- 1,431
- Level
- 21
- Downloads
- 0
- Uploads
- 0
-
06-29-2010, 09:00 PM #27QJ Gamer Blue
Achievements:
- Join Date
- Jun 2010
- Location
- tx
- Posts
- 62
- QJ Pts
- 1,624
- Level
- 23
- Downloads
- 0
- Uploads
- 0
vshctrl.prx is loaded before /seplugins/ are started, I imagine. I really need to look into a scary firmware-modularizing-module to put into pspbtcnf.bin. That would be a whole new beast, rather than a CXMB derivative. I'll look into it right after I rant about closed source CFW, and closed source pspbtcnf editors. Bleh, black-boxes. >.>
As soon as I find out which offset to use for sysconf_plugin.prx. I -think- I can determine the correct one with arithmetic, if you are willing to test to see if it works. This is very likely to 'soft brick' your psp, which can be fixed by disabling the test module in recovery menu.
-
06-30-2010, 05:13 AM #28Speed for life
Awards:
- Join Date
- Jan 2009
- Location
- Greece,Limnos
- Posts
- 7,863
- QJ Pts
- 156,789
- Level
- 100
- My Mood
-
- Downloads
- 12
- Uploads
- 2
Well basically i am interesting to run pspbtcnf.bin,pspbtdnf.bin ,pspbtjnf.bin,pspbtknf.bi n,pspbtlnf.bin files from the ms. ;)
[SIZE="1"][COLOR=limegreen]Phat PSP 1004 TA-079 v3 + Sony 16GB Mark II + tiltFX with 5.00 m33-6 + 1.50 kernel +Prometheus-4 patch + 5.01 patch[/COLOR]
[COLOR=DarkOrange]Phat PS3 CECHG04 40GB (750GB) with 3.55.2 PRIVACY[/COLOR]
[COLOR=Red]Slim PS2 SCPH-75004 + Free McBoot 1.8b + uLaunchELF v4.42 + ESR beta r9b[/COLOR]
[COLOR=teal]iPhone 3G 8GB jailbroken with iOS 4.2.1 with OpeniBoot 0.2 and iDroid Pepparkaka 11.04 (Android 2.3.3)[/COLOR]
[COLOR=DarkOrchid]Fujitsu Simens Amilo PA1510 + 2.5GB Ram + AMD Sempron 3400+ 1.8GHz + Windows XP/Ubuntu 9.10[/COLOR][/SIZE]
[URL="http://forums.qj.net/guides-psp-hacks-homebrew-emulators/159330-guide-how-patch-5-55-6-00-6-10-6-20-6-30-6-31-6-35-6-36-games-all-cfw.html"]Patch the 5.55/6.00/6.10/6.20/6.30/6.31/6.35/6.36 games to work with all FWs[/URL]
[URL="http://forums.qj.net/psp-general/170056-cwcheat-databases.html"]My CWCheat databases[/URL]
[URL="http://forums.qj.net/guides-psp-hacks-homebrew-emulators/156916-guide-ultimate-psp-game-addons-guide.html"]PSP Game Addons[/URL]
[URL="http://forums.qj.net/blogs/nickxab/"]My qj blog[/URL]
[URL="http://forums.qj.net/blogs/nickxab/17-cydia-sources.html"]Cydia Sources[/URL]
[IMG]http://img32.imageshack.us/img32/6181/58350347.png[/IMG]
[IMG]http://img156.imageshack.us/img156/5489/consoles.gif[/IMG]
[IMG]http://img843.imageshack.us/img843/2356/kyoshoracer.jpg[/IMG]
[IMG]http://img80.imageshack.us/img80/8681/userbar794826.gif[/IMG]
[IMG]http://img517.imageshack.us/img517/2861/userbar781427.gif[/IMG]
[IMG]http://img256.imageshack.us/img256/3394/userbar781454.gif[/IMG]
[IMG]http://img231.imageshack.us/img231/1889/userbar781443.gif[/IMG]
[IMG]http://www.userbars.com/i/542861.gif[/IMG]
-
06-30-2010, 07:43 AM #29QJ Gamer Blue
Achievements:
- Join Date
- Jun 2010
- Location
- tx
- Posts
- 62
- QJ Pts
- 1,624
- Level
- 23
- Downloads
- 0
- Uploads
- 0
Aha. That's impossible with an seplugin, since the module that loads seplugins loads because it's an entry in pspbtcnf. If you're familiar with old windows 3.1 systems, pspbtcnf is autoexec.bat, /seplugins/ are dlls lurking in \windows\system.
At least, I think so. I could be an ignorant noob spewing misinformation, instead of an ignorant noob who's theorizes correctly. I'm too lazy atm to decrypt GEN .prx modules and grep for seplugins :P
Pandora/Timemachine is your best bet for the moment, for pspbtcnf-and-everything-else-on-ms.
On that note, does anyone know of a 32GB stick that works after pandora conversion? My 16gb says 'yeah. sure. whatever' and loses all data when I try -.-
-
06-30-2010, 09:03 AM #30QJ Gamer Blue
Achievements:
- Join Date
- Jun 2010
- Location
- tx
- Posts
- 62
- QJ Pts
- 1,624
- Level
- 23
- Downloads
- 0
- Uploads
- 0
New version released. Is there a way to upload to dl.qj.net? If not, I've included a blurb for those admin types.
url: http://cxmb-override.googlecode.com/...verride-0.3.7z
cxmb-override is an enhanced version of cxmb that allows one to replace individual theme related files (gameboot, wallpapers, fonts, rco, prx, etc) without unpacking and repacking ctfs.
Version 0.3 changes:
ignore.txt: per-thread blacklist of certain files (override/* and inside ctfs). Included ignore.txt disables alternative font loading for the web browser's HTML rendering, since that always ends up messy.
CXMB is no longer restricted to ms0:/cxmb. You can now throw it into /seplugins, /psp/cxmb, /omg/wtf/bbq, or whatever. override/* and conf files must exist in the same directory as cxmb-override.prx.
/kd/ overrides enabled: not as useful as you may think.
read and lseek no longer croak on overridden files after sleep mode, a bug which was most noticable with override/font/ltn0.pgf.
loglevel.txt: controls logging verbosity. 0(quiet) - 5(everything). +10 = log to /log.txt (and probably crash).


LinkBack URL
About LinkBacks
Reply With Quote

I recently played a bit of Super Mario 3D World + Bowser's Fury and I enjoyed playing this...
Super Mario Fans Out There!