chincheta0815 wrote: 
> I digged a little bit in the code:
> 
> As you are using a lot of LMS routines (as it has to be for professional
> coding), it might be possible that LMS does not find the help due to
> search path problems...
> 
> Is it possible that there is a file such as
> "https://github.com/Logitech/slimserver/blob/public/7.9/Slim/Utils/OS/Linux.pm";
> needed?
> If yes what shall I put in there?

I looked at the code history diffs. I did re-organize the helper
detection back in version 0.50 and after that, I did not touch it except
to change the name of the armv5 executable. From LMS point of view, I
think if something was missing you'd have an error logged. Bets is that
you add here 2 logs

Code:
--------------------
    
        my $shairtunes_helper = Slim::Utils::Misc::findbin($bin) || do {
                $log->warn("$bin not found");
                return;
        };
  
        $shairtunes_helper = 
Slim::Utils::OSDetect::getOS->decodeExternalHelperPath($shairtunes_helper);
  
--------------------

add

Code:
--------------------
    
  $log->error("bin : $bin, helper $shairtunes_helper");
  
--------------------


You can also replace the $log->debug(Dumper...) by a
$log->error(Dumper...) to make sure you have a dump of what LMS detects
as an OS, without having to set the whole plugin in debug mode



LMS 7.7, 7.8 and 7.9 - 5xRadio, 3xBoom, 4xDuet, 1xTouch, 1 SB2. Sonos
PLAY:3, PLAY:5, Marantz NR1603, JBL OnBeat, XBoxOne, XBMC, Foobar2000,
ShairPortW, JRiver 21, 2xChromecast Audio, Chromecast v1 and v2, , Pi
B3, B2, Pi B+, 2xPi A+, Odroid-C1, Odroid-C2, Cubie2, Yamaha WX-010,
AppleTV 4, Airport Express
------------------------------------------------------------------------
philippe_44's Profile: http://forums.slimdevices.com/member.php?userid=17261
View this thread: http://forums.slimdevices.com/showthread.php?t=106289

_______________________________________________
plugins mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/plugins

Reply via email to