Closed DagNygren closed 2 years ago
Dag, Many thx! Hope it is fixed now in adaa1e1528
NP. Also extracted the squashfs, changed it and repacked. And now the reading of the evmap works for me. One thing though: My suggested fix will not work if the variable is empty. Will there be a default "no" ?
Ok. Read your fix :-) Better than mine...
:-) Sometime ago i changed config paradigm from: yes/no to: val./empty. reason was to simplify scripts for faster boot
There is a bug in the reader part for using a custom evmap. The file /etc/rc.d/init.d/conf.d/S_LIRC contains the following code:
And this will only read the file if MM_LIRC_FETCH_EVMAP_CONF equals yes. Now "yes" is not an accepted name for a *.evmap file as it has to be named after the USB id. What follows is that the file will never be read.
Suggest replacing the
if [ "x${MM_LIRC_FETCH_EVMAP_CONF}" = "xyes" ]
with
if [ "x${MM_LIRC_FETCH_EVMAP_CONF}" != "xno" ]