Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add blacklist snd_bcm2835 module to installer #526

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,19 @@ if [ "$SKIP_MATRIX" = false ]; then
sudo make install-python PYTHON="$PYTHON"

cd ../..

echo "------------------------------------"
echo " Checking for snd_bcm2835"
echo "------------------------------------"
if [ -f /etc/modprobe.d/blacklist-rgbmatrix.conf ]; then
echo "Sound Blacklist File not found, Creating."
echo "blacklist snd_bcm2835" | sudo tee /etc/modprobe.d/blacklist-rgbmatrix.conf
sudo modprobe -r snd_bcm2835
sudo depmod -a
else
echo "Sound Blacklist File found, skipping creation."
fi

fi

if [ "$SKIP_CONFIG" = true ]; then
Expand Down
Loading