Kodi Community Forum

Full Version: userdata/Lircmap.xml has no effect
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hallo,
I have built xbmc 9.11 from source and have now a problem with Lircmap.xml.
In the original /usr/local/share/xbmc/system/Lircmap.xml is defined a device iMON-PAD by default:
Code:
<remote device="iMON-PAD">
              ...
                <left>Left</left>
                <right>Right</right>
                <up>Up</up>
                <down>Down</down>
                ...
        </remote>

My lircd.conf looks like this:
Code:
begin remote

  name     iMON-PAD
      ...
      begin codes

          Mouse_N                  0x01008000
          Mouse_S                  0x01007F00
          Mouse_W                  0x01000080
          Mouse_E                  0x0100007F
          ...

I have created /root/.xbmc/userdata/Lircmap.xml to represent the codes from my lircd.conf
Code:
<remote device="iMON-PAD">
              ...
                <left>Mouse_W</left>
                <right>Mouse_E</right>
                <up>Mouse_N</up>
                <down>Mouse_S</down>
                ...
        </remote>
But this has no effect. The keys left, right, up, down on my remote do not work.

Other keys, where the codes in the default Lircmap and my lircd.conf are the same, are working properly.

When I make the changes directly in /usr/local/share/xbmc/system/Lircmap.xml the keys are o.k..
It seems that my userdata/Lircmap.xml has no effect.

In the log both Lircmap files are mentioned
/root/.xbmc/temp/xbmc.log:
Code:
04:42:37 T:3042166672 M:1853714432  NOTICE: special://masterprofile/ is mapped to: /root/.xbmc/userdata
04:42:37 T:3042166672 M:1853714432  NOTICE: special://home/ is mapped to: /root/.xbmc
...
04:42:37 T:3042166672 M:1853116416  NOTICE: special://profile/ is mapped to: special://masterprofile/
...
04:42:37 T:3042166672 M:1846288384    INFO: Loading special://xbmc/system/Lircmap.xml
04:42:37 T:3042166672 M:1846288384    INFO: Loading special://profile/Lircmap.xml
...

Any ideas why the Lircmap.xml in my user directory has no effect?

goldbär