Hi,

I promised a summary of the steps to get the spotify plugin working
with DS211+ and the official Synology SB package (7.5.3).

1. Add 4 lines of code in OS.pm to fix a bug in SB server (shown in
context, but prefixed here with >> ). This bug prevents the helper app
to be started and consequently, the .conf file is never written.

sub initSearchPath {
my $class = shift;
# Initialise search path for findbin - called later in
initialisation than init above

# Reduce all the x86 architectures down to i386, including
x86_64, so we only need one directory per *nix OS.
$class->{osDetails}->{'binArch'} =
$Config::Config{'archname'};
$class->{osDetails}->{'binArch'} =~
s/^(?:i[3456]86|x86_64)-([^-]+).*/i386-$1/;

>>        # Map Marvell to arm-linux
>>        if ( $class->{osDetails}->{'binArch'} =~ /^MARVELL/ ) {
>>                $class->{osDetails}->{'binArch'} = 'arm-linux';
>>        }

# Reduce ARM to arm-linux
if ( $class->{osDetails}->{'binArch'} =~ /^arm.*linux/ ) {
$class->{osDetails}->{'binArch'} = 'arm-linux';
}

2. Select and install the spotify plugin in the usual fashion from the
SB server web interface.

3. Configure the spotify plugin by filling in your spotify credentials.
Note the tab should mention that the helper app is running.

So for me it was not necessary to follow the SSODS route.

Triode, I am willing to add the DS 211+ plus this recipe to a list/wiki
of NAS's  that are reported to work. Does it exist?

Thanks.


-- 
buzzsb
------------------------------------------------------------------------
buzzsb's Profile: http://forums.slimdevices.com/member.php?userid=44756
View this thread: http://forums.slimdevices.com/showthread.php?t=79706

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

Reply via email to