Here is the snippet from my notes. I am not sure it applies to the rpi0w:
Raspbian seems OK.
Regarding the post-install config, mostly about deactivating stuff to lower the power consumption:
# /boot/config.txt
[all]
# should disable wifi, bluetooth and hdmi at boot time, lowering power consumption
dtoverlay=disable-wifi
dtoverlay=disable-bt
hdmi_blanking=2
#dtoverlay=vc4-fkms-v3d
dtoverlay=hifiberry-dacplus
# builtin audio must be deactivated
#dtparam=audio=on
Also, HDMI deactivation could live in another place, so add the following to /etc/rc.local :
# Disable HDMI
/usr/bin/tvservice -o
Then, some packages should be installed:
jeromenerf|5 years ago
Raspbian seems OK.
Regarding the post-install config, mostly about deactivating stuff to lower the power consumption:
# /boot/config.txt [all] # should disable wifi, bluetooth and hdmi at boot time, lowering power consumption dtoverlay=disable-wifi dtoverlay=disable-bt hdmi_blanking=2 #dtoverlay=vc4-fkms-v3d dtoverlay=hifiberry-dacplus
# builtin audio must be deactivated #dtparam=audio=on Also, HDMI deactivation could live in another place, so add the following to /etc/rc.local :
# Disable HDMI /usr/bin/tvservice -o Then, some packages should be installed:
sudo apt-get update sudo apt-get upgrade
sudo apt-get pulseaudio pulsemixer pamix shairport pulseaudio-module-raop pulseaudio-module-zeroconf cmus mpd mpc
m_t|5 years ago
jeromenerf|5 years ago