Read the statement by Michael Teeuw here.
raspi 64 bit available
-
pi zero 2w works too.
Off topic: Did not expect that motioneye with raspicam (running in docker buster image) is working.
-
Just for the fun of it, I’m installing it on the test box…
Seems your script has issues with it…
Also, with this - Rasp Imager got an update, too - It’s got lots of config changes now, so make sure you check out the gear icon when writing!
-
@bkeyport thx. I am away from my pi devices til middle of march.
-
I am away from my pi devices til middle of march.
😱Meanwhile I digged into pi specific setup.
Real bad is that they removed
/opt/vc
and integrated the pi specific stuff into the normal file system under/lib
and/usr
.With a docker setup I could formerly just mount
/opt/vc
into the container which is impossible now.E.g. for getting
vcgencmd
working in the container I have to mount
now- /lib/aarch64-linux-gnu/libvchiq_arm.so:/lib/aarch64-linux-gnu/libvchiq_arm.so.0:ro - /lib/aarch64-linux-gnu/libvcos.so:/lib/aarch64-linux-gnu/libvcos.so.0:ro - /usr/bin/vcgencmd:/usr/bin/vcgencmd
after using
ldd
to know which libraries are used.Other possibility would be to install the pi specific libraries into the docker image which will explode size.
This will have also impact to hardware releated modules which hardcoded the
/opt/vc/
path in their js code (e.g. mmm-systemtemperature). -
@karsten13 yes, movent towards the normal core will break older stuff…
wondering what is wrong w install
-
@bkeyport - Config changes were already present in the older version(1.6.2) - just have to be invoked by pressing Alt-Shift-Z or X - cannot remember)
-
I am currently trying to update the docs with minimal infos on configuring on a fresh isntall.
So I took the 64 bit image as well, seems fine so far.
Only thing I am not trying to get working is rotating the display.
display_rotate=1
added to boot/config doesnt seem to work anymore. Anyone got it working?
-
@rejas did u try the display config in prefences?
-
@sdetweil in raspi-config? or do you mean in the window manager? I was hoping of setting that via console
-
it works in the WebUI preferences -> screen configuration
command line:
xrandr --output HDMI-1 --rotate right
(got it not working over ssh)