Advertisement
atreyu187

PS3 CFW Guides: Make a PKG with EDAT Files for Install

Sep 11th, 2013
405
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. Here are the steps to create a PKG to install edats (I couldn’t find a tutorial for it, so I made this aka aldostools):
  2.  
  3. 0. Get the make_package_npdrm.exe available in the SDK (eg. SDK 3.41) and copy it to a folder. eg. C:NPDRM
  4.  
  5. 1. Create a new folder in that folder and name it with the title id of your game (eg. NPXX00999)
  6.  
  7. 2. Copy to that folder the edat and the PS3LOGO.DAT file. eg:
  8.  
  9. XX0999-NPXX00999_00-PURCHASEDLICENSE.edat
  10. PS3LOGO.DAT
  11.  
  12. 3. Create a new text file, paste the following text, and save it as make_edat_pkg.bat in the same folder where you copied the make_package_npdrm.exe
  13.  
  14. Code:
  15. echo ContentID = XX0999-NPXX00999_00-PURCHASEDLICENSE>package.conf
  16. echo Klicensee = 0x00000000000000000000000000000000>>package.conf
  17. echo DRMType = Local>>package.conf
  18. echo ContentType = License>>package.conf
  19. echo PackageVersion = 01.00>>package.conf
  20.  
  21. make_package_npdrm.exe package.conf NPXX00999
  22. pause
  23. 4. Before you save the file, make sure that the ContentID matches the with the file name of the .edat file and the folder name near the make_package_npdrm.exe is correct.
  24.  
  25. 5. Run the batch file: make_edat_pkg.bat
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement