Homepage Forums RetroPie Project New to RetroPie? Start Here! KODI not working under RetroPie 3.6 on Pi 3 Reply To: KODI not working under RetroPie 3.6 on Pi 3

#120896
fistwielder
Participant

[quote=120883]Yes that would be ideal I would think. At the very least would be worth even just adding a default config to the installer with the ibuffallo, ps3, and Xbox 360 configs. Might be a bit down the road though as there are more pressing matters to attend to currently.

[/quote]

While using a controller to navigate Kodi, out of habit I’ve found myself pressing SELECT+START to exit.
So, I added a line below for each controller. Now pressing SELECT+START exits Kodi perfectly :)

<?xml version="1.0" encoding="UTF-8"?> <keymap>
  <global>
    <joystick name="USB,2-axis 8-button gamepad "><!--iBuffalo SNES-->
      <button id="1">Select</button><!--A-->
      <button id="2">Back</button><!--B-->
      <button id="3">Stop</button><!--X-->
      <button id="4">ContextMenu</button><!--Y-->
      <button id="5">Rewind</button><!--L-->
      <button id="6">FastForward</button><!--R-->
      <button id="7">Info</button><!--SELECT-->
      <button id="8">PlayPause</button><!--START-->
      <button id="7,8">Quit</button><!--SELECT+START-->
      <axis id="1" limit="+1">Right</axis><!--RIGHT-->
      <axis id="1" limit="-1">Left</axis><!--LEFT-->
      <axis id="2" limit="-1">Up</axis><!--UP-->
      <axis id="2" limit="+1">Down</axis><!--DOWN-->
    </joystick>
    <joystick name="USB Gamepad "> <!--Retrolink SNES-->
      <button id="2">Select</button><!--A-->
      <button id="3">Back</button><!--B-->
      <button id="1">Stop</button><!--X-->
      <button id="4">ContextMenu</button><!--Y-->
      <button id="5">Rewind</button><!--L-->
      <button id="6">FastForward</button><!--R-->
      <button id="9">Info</button><!--SELECT-->
      <button id="10">PlayPause</button><!--START-->
      <button id="9,10">Quit</button><!--SELECT+START-->
      <axis id="1" limit="+1">Right</axis><!--RIGHT-->
      <axis id="1" limit="-1">Left</axis><!--LEFT-->
      <axis id="2" limit="-1">Up</axis><!--UP-->
      <axis id="2" limit="+1">Down</axis><!--DOWN-->
    </joystick>
  </global> </keymap>