New user's registration have been closed due to high spamming and low trafic on this forum. Please contact forum admins directly if you need an account. Thanks !

Debian stretch (9) image 1.1 released for B3

Discuss development on Bubba
Gordon
Posts: 1461
Joined: 10 Aug 2011, 03:18

Re: Debian stretch (9) image 1.0 released for B3

Post by Gordon »

Judging by its name I'd say you got the wrong package. You need the `armel` version. If there is no such package you need the noarch version and either build the armel specific modules yourself or get them some place else.
anat
Posts: 11
Joined: 22 Oct 2011, 15:11

Re: Debian stretch (9) image 1.0 released for B3

Post by anat »

:shock:

Would this approach work better?
https://github.com/gordonb3/logitechmed ... cpan-armel

Is it the same Gordon behind that Git, by the way? :o
Gordon
Posts: 1461
Joined: 10 Aug 2011, 03:18

Re: Debian stretch (9) image 1.0 released for B3

Post by Gordon »

It might, yes that is me.

Problem is I can't really remember what compiler and library versions I used for creating those libs and I was recently confronted with the fact that this can cause incompatibilities. I think the Perl 5.22 and 5.24 modules were created with gcc 4.9 but the main issue would be the glibc environment. The Perl 5.22 modules may have been compiled against version 2.21 which might be okay for Stretch. The Perl 5.20 modules are the oldest, so if these are the ones you require this would offer the highest chance of success.
anat
Posts: 11
Joined: 22 Oct 2011, 15:11

Re: Debian stretch (9) image 1.0 released for B3

Post by anat »

I can''t understand a thing :?

Why neither of these worked out? and the server still gives the same error?
1.

Code: Select all

cpan[1]>  install DBI EV XML::Parser::Expat HTML::Parser JSON::XS Digest::SHA1 Su
b::Name
2.

Code: Select all

# apt install libev-perl libxml-perl libhtml-parser-perl libjson-perl libdigest-perl libyaml-perl libsub-name-perl
Gordon
Posts: 1461
Joined: 10 Aug 2011, 03:18

Re: Debian stretch (9) image 1.0 released for B3

Post by Gordon »

You're likely looking at version conflicts and search path issues. Are you still basing your installation on that .deb file? Then go to /usr/share/squeezeboxserver/CPAN and get rid of the `arch` folder. This folder contains files that will not work with the B3 and I fear that you will not be able to complete what is provided by this folder with either standard Debian packages or CPAN. The prescribed way to install on a platform for which no prebuilt binaries exist is to fetch the source files from https://github.com/Logitech/slimserver-vendor and run buildme.sh from the CPAN folder.

So what happens if you try to run LMS with the CPAN files provided on my github page? Do note that these are meant to be combined with LMS-7.8.0-noCPAN (http://downloads.slimdevices.com/Logite ... er_v7.8.0/).
ryz
Posts: 183
Joined: 12 Feb 2009, 06:03

Re: Debian stretch (9) image 1.0 released for B3

Post by ryz »

anat wrote: 17 Aug 2017, 14:39 The installation was very easy and straight forward! Thank you for the good work MouettE

The prolem is, I can't figure out how to get Squeezebox Server running. I installed http://downloads.slimdevices.com/nightl ... 23_arm.deb, but it complains about Perl libraries:
The following modules failed to load: DBI EV XML::Parser::Expat HTML::Parser JSON::XS Digest::SHA1 YAML::XS Sub::Name
Now before digging deeper into this, I'm just trying confirm that is this supposed be this hard or am I missing something?
I did found an unofficial build in this page close to the end https://nxa.at/post/build_squeezeboxser ... tch_armel/ which I did install and it seems to work fine.
evaluation
Posts: 6
Joined: 06 Sep 2013, 15:13

Re: Debian stretch (9) image 1.0 released for B3

Post by evaluation »

Hi,

first of all I want to thank you for this great stretch image!

I currently try to understand the shutdown mechanism with the button and it would be great if someone could give me some hints.

I try to get more control over the button to start some self defined actions depending on the button click pattern.
It seems to me that the button behaviour is not controlled by software. First I assumed that bubba-buttond has control over the button but it seems rather to be a stop mechanism for the shutdown process already initiated by the button itself.

Now the problem:
The stretch image immediately shutdown the system as soon as the button has been pressed. The original B3 image need the button to be pressed several seconds to start the shutdown process.
In stretch there is no such delay and the bubba-buttond seems to be useless. Is there a possibility to change the default delay of the shutdown?

Thanks in advance
Eva
MouettE
Site admin
Posts: 341
Joined: 06 Oct 2011, 19:45

Re: Debian stretch (9) image 1.0 released for B3

Post by MouettE »

Hello,

The button is still handled by bubba-buttond in the stretch image (it's a GPIO key event). The 2 seconds timeout should still be active and triggers the shutdown through a /sbin/shutdown -h now command.

All sources along with systemd unit files are in the b3-utils repository.

I will do a quick test tonight to check all this but it should be the expected behaviour.
Gordon
Posts: 1461
Joined: 10 Aug 2011, 03:18

Re: Debian stretch (9) image 1.0 released for B3

Post by Gordon »

Hi,

I had a similar issue creating the systemd version of bubbagen. As it stands the kernel device tree source for the B3 actually does define the button as a power button and this is picked up by systemd which then calls its own handler for this event. The problem with this is that this handler essentially performs a `shutdown -h`and this will cause the B3 to get into a state where it will no longer respond to anything. To start the B3 again you must first disconnect power. The proper shutdown method stores a `magic` number to the flash memory and then performs a `shutdown -r` which will reboot the B3 into a preboot environment where it waits for the button to be pressed as a startup command. And of course the systemd method has a second disadvantage in that it responds instantly to an accidental touch as well.

To solve this you must go into logind.conf and set the value for `HandlePowerKey` to `ignore`. Like so.
Satrap
Posts: 12
Joined: 13 Jan 2012, 15:50

Re: Debian stretch (9) image 1.0 released for B3

Post by Satrap »

Tried to post something. But seems it's not working. :?

I've installed Debian Stretch on my Excito B3. seems for me like minimal installation. Which went quite smooth and easy, but is there a way to install original excito frontend?
MouettE
Site admin
Posts: 341
Joined: 06 Oct 2011, 19:45

Re: Debian stretch (9) image 1.0 released for B3

Post by MouettE »

Hello satrap,

The only newer operating system version with the updated excito frontend is the bubbagen build from Gordon.
Satrap
Posts: 12
Joined: 13 Jan 2012, 15:50

Re: Debian stretch (9) image 1.0 released for B3

Post by Satrap »

Hi,

thanks for quick reply. Yeah, I've already discovered bubbagen build and am already testing it.
UdfnYkyOj7F
Posts: 8
Joined: 22 Jul 2015, 18:20

Re: Debian stretch (9) image 1.0 released for B3

Post by UdfnYkyOj7F »

thank s to u for this. minimal version is very good. makes me on easy rsyncer box to backup my puters. many many thanks also very easy by the instructions.
kennywest
Posts: 6
Joined: 02 Nov 2014, 02:26

Re: Debian stretch (9) image 1.0 released for B3

Post by kennywest »

Very interesting read. I am still running wheezy on my box. If I would want to upgrade to stretch (fresh install) do I need to upgrade u-boot, like described here -> https://e.lefant.net/2014/08/31/debian- ... excito-b3/
If so, where can I find the most recent u-boot images?
MouettE
Site admin
Posts: 341
Joined: 06 Oct 2011, 19:45

Re: Debian stretch (9) image 1.0 released for B3

Post by MouettE »

You don't need to upgrade u-boot to use the stretch image, the kernel is patched to support the old version.
Post Reply