summaryrefslogtreecommitdiffstats
path: root/ci/load-snd-dummy.sh
blob: 5ceb7cedff812e3368350c56a554b129b9d7b36c (plain)
1
2
3
4
5
6
7
8
#!/bin/bash
set -e

if ! modprobe snd-dummy; then
    # snd-dummy is contained in linux-modules-extra (if exists)
    apt install -y "linux-modules-extra-$(uname -r)"
    modprobe snd-dummy
fi