Forum Replies Created

Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • in reply to: PageUp / PageDown RetroPie 3 #104613
    same
    Participant

    I noticed page up & down were inverted (at least on v3 beta 3 and 4), had to remap in my input.cfg

    Peace

    in reply to: Game Specific Configs #102284
    same
    Participant

    The game specific config not loading issue should now be fixed in the v3 RC 1.

    in reply to: Game Specific Configs #102083
    same
    Participant

    Well I got it working following these steps, after updating retropie-setup script I relaunched it, then selected “Setup / configuration”

    I went through option ‘configure the runcommand’,then selected the ‘default’ option and that was it.

    You may have to reboot your pi (I did).

    Hope it will help some people !

    in reply to: Game Specific Configs #102082
    same
    Participant

    I saw the bug report mentioned in this thread : https://github.com/RetroPie/RetroPie-Setup/issues/899

    I updated the retropie-setup but I cannot find the command to perform the “runcommand install” as described by joolswills, any help ?

    Thanks !

    in reply to: Game Specific Configs #102079
    same
    Participant

    Hi,

    I am trying to get a rom specific input config for lr-fba without success.

    I edited the ~/Retropie/roms/fba/avsp.zip.cfg with my fixes but it does not seem to be loaded.

    If I edit /opt/retropie/configs/fba/retroarch.cfg, my fixes are loaded but are applied for every game…

    Did someone manage to get it working ?

    Thank you !

    in reply to: xin mo usb 2 player help #100819
    same
    Participant

    Hello,

    This link is the latest custom kernel that feederchain compiled:
    https://www.dropbox.com/s/l96mgbsc2r8b7wf/custom_kernel_1.20150619-1.tar.gz?dl=0

    I’ve just checked and the link is not dead.

    This kernel works perfectly using the latest v3 beta 4.

    Here’s the related topic: https://www.petrockblock.com/forums/topic/autofire-on-the-axis/page/3/

    This topic was about auto-fire issue (which has been fixed in latest official kernel) but also covers the 2 players issue.

    Hope it helps.

    in reply to: Autofire on the axis #100374
    same
    Participant

    Hello feederchain,

    Thank you for the custom kernel, it solves my problem of the missing axes for joystick #2 and now I have two separate inputs !

    It would be interesting to get this fix into the official RetroPie release.

    in reply to: NFS Mount Issues #100359
    same
    Participant

    I just edited my previous post, as I had troubles to get the backticks appearing in the code block, I also misplaced one…

    Should be fixed now.

    in reply to: NFS Mount Issues #100337
    same
    Participant

    Hi doozy,

    Had the same issue and found a post in this forum with a script made by erdnuesse member, I modified it a bit for my needs and here it goes:

    Just after the #!/bin/bash in /usr/bin/emulationstation:

    # Thx erdnuesse
    # Set retry to the number of times you want the loop to repeat
    RETRY=20
    
    # As long as we have retries left...
    if [ `mount -l -t nfs | wc -l` -eq 0 ]; then 
        while [ $RETRY -gt 0 ]; do
            # This will become true if 'ping' gets a response
            # Modify the following IP with your server address
            if ping -c 1 -W 1 192.168.1.7 > /dev/null ; then
    	    echo "Mounting NFS Shares..."
                sudo mount -a -t nfs
    	    RETRY=0
            else
                # Wait for 1 second 
                sleep 1
                RETRY=$((RETRY - 1))
                if [ $RETRY -eq 0 ]; then
                    echo "[ERROR] NFS Failed to mount: server sent no response to ping."
                fi
            fi
        done
    else
        echo "Note: NFS Shares already mounted."
    fi

    Hope it helps !

Viewing 9 posts - 1 through 9 (of 9 total)