DMS DEV2 Mode Technical Information (Unofficical)

DMS3 Dev.olution Mode 2 provides a platform for developers to write applications to be stored on and executed from the Playstation 2 Harddrive.

Basic file structure

[APP]
          [HEADER]
                    [TITLE]
                              PS2Reality Media Player 1.50
                    [/TITLE]
                    [AUTHOR]
                              Bigboss, Hermes and Mavy
                    [/AUTHOR]
                    [DESC]
                              DivX/MP3 Player and JPEG Viewer
                    [/DESC]
                    [EXEC]
                              /DIVX/PS2MEDIA.ELF
                    [/EXEC]
          [/HEADER]
          [INSTALL]
                    [ACTION]
                              _MKDIR /DIVX
                    [/ACTION]
                    [ACTION]
                              COPY /APPS/DIVX/PS2MEDIA.ELF /DIVX/PS2MEDIA.ELF
                    [/ACTION]
          [/INSTALL]
          [UNINSTALL]
                    [ACTION]
                              REMOVE /DIVX/PS2MEDIA.ELF
                    [/ACTION]
                    [ACTION]
                              _RMDIR /DIVX
                    [/ACTION]
          [/UNINSTALL]
[/APP]

This is only to make it easier to illustrate how it works, in a working example no spaces are allowed before each line.

Usage

Header

Install/Uninstall

You can have as many [APP] blocks you want, just add them in a sequence after another without any space between. The entire file should be named INSTALL.CNF (case sensitive) and burned as a PS2 disc with all the files required.

(Optional) If you want to include the DMS HDD Explorer (EXPINST.ELF) you can add this SYSTEM.CNF file:

BOOT2 = cdrom0:\EXPINST.ELF;1
VER = 1.00
VMODE = NTSC

When you boot this disc in normal PS2 mode (not DEV2) you will be prompt to install the DMS HDD Explorer, great for friends that don't have the HDD Explorer installed.

Reference

DMS Dev. Mode Technical Information