Skip to content
This repository was archived by the owner on Aug 12, 2025. It is now read-only.

Commit 086284d

Browse files
committed
updated readme
1 parent 40b9d5e commit 086284d

File tree

1 file changed

+18
-6
lines changed

1 file changed

+18
-6
lines changed

README.md

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![Travis CI Build Status][img_travis]][travis] [![AppVeyor Build Status][img_appveyor]][appveyor] [![Downloads][img_downloads]][downloads] [![Release][img_latest]][latest] [![License][img_license]][license]
44

5-
Utility that decrypts PlayStation Vita pkg file and creates zip package. Supported pkg files - main application, DLC, patch and PSM files. Supports also PSX files for use with [Adrenaline][].
5+
Utility that decrypts PlayStation Vita pkg file and creates zip package. Supported pkg files - main application, DLC, patch and PSM files. Also supports PSX and PSP pkg files for use with [Adrenaline][].
66

77
Optionally writes [NoNpDrm][] or [NoPsmDrm][] fake license file from zRIF string. You must provide license key.
88

@@ -12,7 +12,7 @@ Optionally writes [NoNpDrm][] or [NoPsmDrm][] fake license file from zRIF string
1212
* [NoNpDrm][]
1313
* [NoPsmDrm][] for PSM titles
1414
* [VitaShell][] **v1.76** or newer required for DLC installation
15-
* [Adrenaline][] for PSX titles
15+
* [Adrenaline][] for PSX or PSP titles
1616

1717
# Features
1818

@@ -21,12 +21,12 @@ Optionally writes [NoNpDrm][] or [NoPsmDrm][] fake license file from zRIF string
2121
* **fast**, uses AESNI hardware accelerated AES decryption if supported by CPU (requires [AESNI][] and [SSSE3][] instructions).
2222
* **simple**, creates zip package with same folder structure that Vita expects (just drag & drop all file from zip archive to ux0:). Zip file is created directly from pkg without any intermediate temporary files.
2323
* **Vita DLC**, **Vita PATCH** and **PSM** pkg unpacking.
24-
* **PSX** pkg unpacking.
24+
* **PSX** and **PSP** pkg unpacking.
2525

2626
Limitations:
2727

28-
* currently no PSP or PSP Mini pkg files are supported.
29-
* currently no actual title name is extracted for PSM pkg files.
28+
* no PSP DLC pkg files are supported.
29+
* no actual title name is extracted for PSM pkg files.
3030

3131
# Usage
3232

@@ -46,7 +46,19 @@ To avoid zipping process and create individual files, use `-x` argument (must co
4646

4747
pkg2zip -x package.pkg [zRIF_STRING]
4848

49-
PSX pkg files do not require zRIF argument. It will be ignored.
49+
PSX or PSP pkg files do not require zRIF argument. It will be ignored.
50+
51+
For PSP files pkg2zip by default will create .ISO file. To create compressed .CSO file pass -cN argument where N is compression factor. For example, for fastest compression use:
52+
53+
pkg2zip -c1 package.pkg
54+
55+
To create smaller cso file (more compression will require more time) use -c9, or anything inbetween:
56+
57+
pkg2zip -c9 package.pkg
58+
59+
You can combine -cN argument together with -x:
60+
61+
pkg2zip -x -c9 package.pkg
5062

5163
# Generating zRIF string
5264

0 commit comments

Comments
 (0)