Homebrew postLoader4

  • Thread starter Thread starter stfour
  • Start date Start date
  • Views Views 563,432
  • Replies Replies 4,203
  • Likes Likes 16
Albatroz said:
stfour said:
Albatroz has made a very good forwarder channel for postloader 1... I bet it should works also for postLoader2 without any problem

Forwarder (by Albatroz)

http://gbatemp.net/t296955-postloader-v-1-...t&p=3722678

thx @stfour
its working fine once you place boot.dol here => sd:/apps/postloader/boot.dol
if you need another path or more paths, just let me know
ok,, i will do it later cause im working atm.
wanna usb path too or just sd?
 
Yes, also usb, thank you !
wink.gif
 
FIX94 said:
stfour said:
The apploader I was using initially doesn't clear correctly the bss.
Yeah oggzee sent me a pm about that and I also added it.

mmm... so I guess that also postLoader isn't able to run dolz... Who is using dolz ? Do you have an example ? A stupid question... does with hbc they run fine ?
 
stfour said:
mmm... so I guess that also postLoader isn't able to run dolz...
Yeah, maybe...
stfour said:
Who is using dolz ? Do you have an example ?
A example is genplus-gx.
QUOTE(stfour @ Jul 14 2011, 03:38 PM)
A stupid question... does with hbc they run fine ?
Yeah, hbc can run them just fine.
 
stfour said:
Yes, also usb, thank you !
wink.gif
Done!
new postloader2 forwarder (priiloader forwarder) => http://www.mediafire.com/?26ca19cps4ntmbk
Forwarder paths:
sd:/postloader/boot.dol
usb:/postloader/boot.dol
sd:/apps/postloader/boot.dol
usb:/apps/postloader/boot.dol

Im keeping apps/postloader to ppl who wanna use postloader in apps as others app.

enjoy it
wink.gif
 
@FIX94... I confirm that running genplus lead just to a blank screen...

This must be solved !
wink.gif
 
stfour said:
@FIX94... I confirm that running genplus lead just to a blank screen...

This must be solved !
wink.gif

Heh yeah, I re-found this now:
http://gbatemp.net/t267434-making-a-genesi...t&p=3299587
It seems like your app booter still resets the video on 480p which is really annoying, I fixed it earlier like this:
CODEvoid *xfb = NULL;
GXRModeObj *rmode = NULL;

VIDEO_Init();ÂÂÂÂ
rmode = VIDEO_GetPreferredMode(NULL);
xfb = MEM_K0_TO_K1(SYS_AllocateFramebuffer(rmode));ÂÂÂÂ
VIDEO_Configure(rmode);ÂÂÂÂ
VIDEO_SetNextFramebuffer(xfb);
VIDEO_SetBlack(TRUE);
VIDEO_Flush();
btw I created my own forwarder for postloader, if you have interest in another...
 
FIX94 said:
stfour said:
@FIX94... I confirm that running genplus lead just to a blank screen...

This must be solved !
wink.gif

Heh yeah, I re-found this now:
http://gbatemp.net/t267434-making-a-genesi...t&p=3299587
It seems like your app booter still resets the video on 480p which is really annoying, I fixed it earlier like this:
CODEvoid *xfb = NULL;
GXRModeObj *rmode = NULL;

VIDEO_Init();ÂÂÂÂ
rmode = VIDEO_GetPreferredMode(NULL);
xfb = MEM_K0_TO_K1(SYS_AllocateFramebuffer(rmode));ÂÂÂÂ
VIDEO_Configure(rmode);ÂÂÂÂ
VIDEO_SetNextFramebuffer(xfb);
VIDEO_SetBlack(TRUE);
VIDEO_Flush();
btw I created my own forwarder for postloader, if you have interest in another...

Thank you FIX94. I've looked to the link.. have you already tried to pass NULL arguments ?
 
stfour said:
zizer said:
stfour

can i change patch to emul nand? (neek)

i want use first emul nand for boot sneek , second for posloader

It isn't ready... postLoader2 was developed with this feature in mind. I hope this can be done in few day... but now I'm experimenting theming....
wink.gif
 
GartimusPrime said:
@stfour...do you think you will update one more time before your holiday? not a big deal but if so will you be able to add the U channel support?

now !
nyanya.gif
biggrin.gif


postLoader2 b17

* Implemented davebaol (thx for share this !!!) AHBPROT fix. Started from priiloader, postLoader gains AHBPROT and is capable to spawn homebrew with full hardware access. (tested with MMM 13.4)
* Added information on current ios and AHBPROT status on gui
* Changed a bit menus... only first line of header is drawn with normal font... other lines are drawn with small one
* Implemented "Other" channels titles. This will show titles with starting letter != HWFECJLMNPQ
* Corrected wrong color inversion on some built-in textures
* Disabled remount of devices when nand menu is choosen.
* Corrected a bug on displaying icons after nand browse.
* Updated appbooter with code suggested by FIX94
* Dollz supported
* Corrected a bug introduced in b16 that could not enable correctly emulation

(download on first page)

I hope to have not introduced to much bugs
wacko.gif
 
stfour said:
GartimusPrime said:
@stfour...do you think you will update one more time before your holiday? not a big deal but if so will you be able to add the U channel support?

now !
nyanya.gif
biggrin.gif


postLoader2 b17

* Implemented davebaol (thx for share this !!!) AHBPROT fix. Started from priiloader, postLoader gains AHBPROT and is capable to spawn homebrew with full hardware access. (tested with MMM 13.4)
* Added information on current ios and AHBPROT status on gui
* Changed a bit menus... only first line of header is drawn with normal font... other lines are drawn with small one
* Implemented "Other" channels titles. This will show titles with starting letter != HWFECJLMNPQ
* Corrected wrong color inversion on some built-in textures
* Disabled remount of devices when nand menu is choosen.
* Corrected a bug on displaying icons after nand browse.
* Updated appbooter with code suggested by FIX94
* Dollz supported
* Corrected a bug introduced in b16 that could not enable correctly emulation

(download on first page)

I hope to have not introduced to much bugs
wacko.gif
i don't see U in those letters!!
 
@FIX94

Use this code to detect if is a dollz and then force arg to NULL... it works !

Code:
bool IsDollZ (u8 *buff)
ÂÂÂÂ{
ÂÂÂÂint ret;
ÂÂÂÂ
ÂÂÂÂu8 dollz_stamp[] = {0x3C, 0x20, 0x81, 0x60, 0x7C, 0x78, 0xE2, 0xA6, 0x64, 0x63, 0xA0, 0x00};
ÂÂÂÂint dollz_offs = 0x100;
ÂÂÂÂ
ÂÂÂÂret = memcmp (&buff[dollz_offs], buff, sizeof(dollz_stamp));
ÂÂÂÂif (ret == 0) return true;
ÂÂÂÂ
ÂÂÂÂreturn false;
ÂÂÂÂ}
 
GartimusPrime said:
i don't see U in those letters!!

Yes it's true... it is because is other... "other" support all letters missing in that list
wink.gif


Try it, you will understand !
 
stfour said:
@FIX94

Use this code to detect if is a dollz and then force arg to NULL... it works !

Code:
bool IsDollZ (u8 *buff)
ÂÂÂÂ{
ÂÂÂÂint ret;
ÂÂÂÂ
ÂÂÂÂu8 dollz_stamp[] = {0x3C, 0x20, 0x81, 0x60, 0x7C, 0x78, 0xE2, 0xA6, 0x64, 0x63, 0xA0, 0x00};
ÂÂÂÂint dollz_offs = 0x100;
ÂÂÂÂ
ÂÂÂÂret = memcmp (&buff[dollz_offs], buff, sizeof(dollz_stamp));
ÂÂÂÂif (ret == 0) return true;
ÂÂÂÂ
ÂÂÂÂreturn false;
ÂÂÂÂ}
Thanks, will add it now to my forwarder
yaywii.gif
 

Site & Scene News

Popular threads in this forum