Forum Replies Created

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • in reply to: Retrobit USB to SNES multiple controllers #81896
    goochbuntu
    Participant

    I went into the Retropie-Setup and the setup.sh file and plugged my 2nd player into the system setup retro arch controller and now my 2nd player is first player so this file i was modifying has nothing to do with the key mapping.

    in reply to: Retrobit USB Genesis Adapter Driver Install? #81877
    goochbuntu
    Participant

    i downloaded the kernel and mod from siemprepe

    i dropped the files in amiga folder then moved them.

    sudo mv /home/pi/RetroPie/roms/amiga/kernel.img /tmp/

    sudo mv /home/pi/RetroPie/roms/amiga/modules.tgz /tmp/

    (this brings you to step 14.
    http://sysprogs.com/VisualKernel/tutorials/raspberry/buildkernel/)

    follow the rest of the steps and you should be golden.

    cd /
    sudo mv /tmp/kernel.img /boot/
    sudo tar xzf /tmp/modules.tgz
    rm /tmp/modules.tgz

    oh by the way after you may need to move the file

    sudo mv /tmp/lib/modules/3.12.29+ /lib/modules/

    sudo reboot

    tested and works perfectly now

    thank you for the kernel build.

    in reply to: Retrobit USB Genesis Adapter Driver Install? #81790
    goochbuntu
    Participant

    thank you so much.

    in reply to: Retrobit USB Genesis Adapter Driver Install? #81786
    goochbuntu
    Participant

    I couldn’t fully get it to work I’d love to get a link

    in reply to: Retrobit USB Genesis Adapter Driver Install? #81641
    goochbuntu
    Participant

    If i can pull the firmware img. file i can see if i can load it on my own server download link..

    to save everyone the time.

    in reply to: Retrobit USB Genesis Adapter Driver Install? #81640
    goochbuntu
    Participant

    it was such a pain to do this i have found some interesting pages that may be of some use

    http://www.raspberrypi.org/documentation/linux/kernel/building.md

    http://www.raspberrypi.org/documentation/linux/kernel/configuring.md

    you can download the kernel here. when you get the linux kernel

    git clone –depth=1 https://github.com/raspberrypi/linux

    sudo nano /drivers/hid/hid-input.c

    ctrl w
    (copy and paste this)
    if ((field->flags & HID_MAIN_ITEM_VARIABLE) &&

    (you will see this)

    if ((field->flags & HID_MAIN_ITEM_VARIABLE) &&
    (value < field->logical_minimum ||
    value > field->logical_maximum)) {
    dbg_hid(“Ignoring out-of-range value %x\n”, value);
    return;
    }

    now replace with you can right click to paste this below

    if ((field->flags & HID_MAIN_ITEM_VARIABLE) &&
    (value < field->logical_minimum ||
    value > field->logical_maximum)) {
    if(value < field->logical_minimum)
    value = field->logical_minimum;
    else
    value = field->logical_maximum;
    }

    ctrl x

    yes to save

    then

    make

    hopefully this helps you out.

    it took me a bit to even find this.

    if it wouldnt let you make the file like it did for me you can then do this

    sudo apt-get install libncurses5-dev

    make menuconfig

    save and exit the config
    then type

    make

    whew hopes this helps you all out.

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