PS3 Making a Big PKG

PARAM.HIS is ignored if it is not proper (as I remember).

What do you mean about proper?

At least the system recognizes it if i compile with other pkg packer

and via ftp ofc.

I just made a txt file renamed as PARAM.HIS always worked
 
And this improper. ;) I can't remember details, try find my thread with this question because I have stand before the same problem and thanks to someone (probably @sandungas), I solved it. Or maybe I'm talking about PARAM.HID from which is created PARAM.HIS during unpacking PKG by console? Can't remember the details, really.
 
What happens is the standards doesnt allows to include a PARAM.HIS inside the PKG. The PARAM.HIS files are generated (and updated) by the PS3 firmware on runtime
And the tools that doesnt allows to include a PARAM.HIS inside the PKG is not because a bug... is because is "breaking" the PS3 firmware standards

Inside a PKG you are supposed to include a PARAM.HIP
And when you install the PKG the firmware converts the PARAM.HIP to PARAM.HIS

In other words... the HIP format is for pre-installations, and the HIS format is for post-installations
https://www.psdevwiki.com/ps3/PARAM.HIS
 
Last edited:
The PARAM.HIP files are very easy to do btw, are pretty much a TXT file. The only things you need to worry are:
-remove the posible control bytes at start of the file
-do the line breaks with 0x0A byte

Code:
Offset(h) 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F

00000000  6C 69 6E 65 31 0A 6C 69 6E 65 32                 line1.line2
 
Back
Top