Forum: Crystal Chip - Posts about the Crystal Chip mod go in here.


The above video goes away if you are a member and logged in, so log in now!




 
Would you like to get all the new info from
PSX-Scene in your email each day?




Want to learn more about the team keeping you up to date with the latest scene news?

Read about them now!

Check out our Developer bios, too!

 


User Tag List

Thread: Boot Manager 101
  

Page 1 of 2 1 2 LastLast
Results 1 to 10 of 14
  1. #1 Boot Manager 101 
    DingoTest is offline Member
    Join Date
    Dec 2005
    Location
    UK, S.E.
    Posts
    54
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    0
    Likes Received
    0
    I have an ELF downloaded from another thread; it's called HOMEBREW.ELF

    I would like to try and run this but since i've never done anything like this before I'm a bit confused... I see references to something called uLaunchElf but it seems to be similar to Boot Manager.

    I have never installed an application into BM before! Never needed to!

    I copied the file onto a USB memory stick and put that in the PS2.

    I then went to Install Application but all I get is a "Back" on the screen.

    a) Is this the correct approach?
    b) What am I doing wrong?!

    TIA

    DT

    CC 1.0, PS2 v14, FW19, BM 1.8
    Last edited by DingoTest; 03-03-2007 at 10:37 AM.
    Reply With Quote  

  2. #2  
    Jones23's Avatar
    Jones23 is offline 2 3 your mind...
    Join Date
    Jun 2005
    Location
    Germany
    Posts
    1,175
    Downloads
    2
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    0
    Likes Received
    1
    Read the app install tut on the CC Wiki, then you'll get an idea about how it works.

    best regards Jones23
    PS2 PAL SCPH-70004 v12, HDCombo, IDE HDD 80GB
    CrystalChip 2.1, CC Software R34 modified v2
    Tutorials: CC Wiki
    Homebrew: LaunchELF v4.40, SMS 2.9(Rev.4)

    Best German Console Scene Site: ModControl.com
    Reply With Quote  

  3. #3  
    DingoTest is offline Member
    Join Date
    Dec 2005
    Location
    UK, S.E.
    Posts
    54
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    0
    Likes Received
    0
    Quote Originally Posted by Jones23 View Post
    Read the app install tut on the CC Wiki, then you'll get an idea about how it works.

    best regards Jones23
    The tutorial doesn't seem to cover BM 1.8; I can't see an APPS subdirectory.
    Reply With Quote  

  4. #4  
    Jones23's Avatar
    Jones23 is offline 2 3 your mind...
    Join Date
    Jun 2005
    Location
    Germany
    Posts
    1,175
    Downloads
    2
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    0
    Likes Received
    1
    Well, then just create it.

    Here's an example APPINFO.PBT:
    Code:
     #######################################################################
    #                            PS2LINK v1.46                              #
     #######################################################################
    
    SET "CMD" "$ARG1$"
    SET "SRC_PATH" "$ARG2$/PS2LINK"
    SET "DST_PATH" "$ARG3$/PS2LINK"
    
    GOTO "$CMD$"
    RETURN "-1"
    
    :QUERY
        # Change this information to describe the application.
        SET "APP_TITLE" "PS2LINK"
        SET "APP_VERSION" "v1.46"
        SET "APP_AUTHOR" "ps2dev.org"
        SET "APP_DESC" "PS2link allows you to load and execute applications using your PS2 network adapter."
        SET "APP_MEDIAS" ""
        RETURN "0"
    
    :INSTALL
        # Change this to create the directories and copy the files needed for the application.
        MKDIR "$DST_PATH$"
        COPY "$SRC_PATH$/PS2LINK.ELF" "$DST_PATH$/PS2LINK.ELF"
        COPY "$SRC_PATH$/IPCONFIG.DAT" "$DST_PATH$/IPCONFIG.DAT"
        COPY "$SRC_PATH$/APPINFO.PBT" "$DST_PATH$/APPINFO.PBT"
    
       
        RETURN "0"
    
    :REMOVE
    
        # Change this to remove all files or directories copied during the installation.
        RM "$SRC_PATH$/PS2LINK.ELF"
        RM "$SRC_PATH$/IPCONFIG.DAT"
        RM "$SRC_PATH$/APPINFO.PBT"
        RMDIR "$ARG2$/PS2LINK"
    
        RETURN "0"
    
    :RUN
        RUNAPP "$SRC_PATH$/PS2LINK.ELF"
        RETURN "0"
    best regards Jones23
    PS2 PAL SCPH-70004 v12, HDCombo, IDE HDD 80GB
    CrystalChip 2.1, CC Software R34 modified v2
    Tutorials: CC Wiki
    Homebrew: LaunchELF v4.40, SMS 2.9(Rev.4)

    Best German Console Scene Site: ModControl.com
    Reply With Quote  

  5. #5  
    DingoTest is offline Member
    Join Date
    Dec 2005
    Location
    UK, S.E.
    Posts
    54
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    0
    Likes Received
    0
    Thanks. I'll just create the APPS directory!
    Will give it a go.

    So... I don't acctually need to burn a disc at all? I could just create an APPS directory with an APP1 subdirectory on a USB stick and in the APP1 directory I have the APP1.ELF and the PBAT file and that's it?
    Reply With Quote  

  6. #6  
    Yoc's Avatar
    Yoc
    Yoc is offline Member
    Join Date
    Feb 2005
    Posts
    306
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    0
    Likes Received
    0
    That's it
    PS 2 V5 PAL (SCPH 30004R) - HDD 80 GB - CC 1.0 - PowerBook G4 17" - FREE HDLOADER - SMS - ULE - SNES Station
    BootManager Themes - Essential Pack - CC Wiki (en)
    Tools for Mac : xdumb.free.fr, home for Xdumb and ps2XClient
    Reply With Quote  

  7. #7  
    Jones23's Avatar
    Jones23 is offline 2 3 your mind...
    Join Date
    Jun 2005
    Location
    Germany
    Posts
    1,175
    Downloads
    2
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    0
    Likes Received
    1
    Quote Originally Posted by DingoTest View Post
    Thanks. I'll just create the APPS directory!
    Will give it a go.

    So... I don't acctually need to burn a disc at all? I could just create an APPS directory with an APP1 subdirectory on a USB stick and in the APP1 directory I have the APP1.ELF and the PBAT file and that's it?
    Almost, you first need the BOOT directory and inside that the APPS folder.

    best regards Jones23
    PS2 PAL SCPH-70004 v12, HDCombo, IDE HDD 80GB
    CrystalChip 2.1, CC Software R34 modified v2
    Tutorials: CC Wiki
    Homebrew: LaunchELF v4.40, SMS 2.9(Rev.4)

    Best German Console Scene Site: ModControl.com
    Reply With Quote  

  8. #8  
    Yoc's Avatar
    Yoc
    Yoc is offline Member
    Join Date
    Feb 2005
    Posts
    306
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    0
    Likes Received
    0
    Jones, you meant BM directory, not BOOT didn't you ?
    PS 2 V5 PAL (SCPH 30004R) - HDD 80 GB - CC 1.0 - PowerBook G4 17" - FREE HDLOADER - SMS - ULE - SNES Station
    BootManager Themes - Essential Pack - CC Wiki (en)
    Tools for Mac : xdumb.free.fr, home for Xdumb and ps2XClient
    Reply With Quote  

  9. #9  
    Jones23's Avatar
    Jones23 is offline 2 3 your mind...
    Join Date
    Jun 2005
    Location
    Germany
    Posts
    1,175
    Downloads
    2
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    0
    Likes Received
    1
    He's using R19 with BM 1.8, so BOOT is the correct folder, BM is used since R20 (BM 2.0).
    BTW, I have that release here and checked that before posting.

    best regards Jones23
    PS2 PAL SCPH-70004 v12, HDCombo, IDE HDD 80GB
    CrystalChip 2.1, CC Software R34 modified v2
    Tutorials: CC Wiki
    Homebrew: LaunchELF v4.40, SMS 2.9(Rev.4)

    Best German Console Scene Site: ModControl.com
    Reply With Quote  

  10. #10  
    DingoTest is offline Member
    Join Date
    Dec 2005
    Location
    UK, S.E.
    Posts
    54
    Downloads
    0
    Uploads
    0
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Likes Given
    0
    Likes Received
    0
    Oh man... this is so annoying...

    I have tried BOOT\APPS\APP1\ and BM\APPS\APP1 and FILES\BOOT\APPS\APP1 and FILES\BOOT\BM\APPS\APP1

    I run Boot Manager and change Source to USBMASS... but when I go to Run or Install the list is always blank... just "Back"

    I have my ELF and my PBT file in APP1...

    My USB Pen Drive is FAT.
    Reply With Quote  

Page 1 of 2 1 2 LastLast
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •