view ci/load-snd-dummy.sh @ 19733:5a056e3b60d9

Added tag v8.2.0422 for changeset e292acf16e265b658aa829d3b04be30f94a56c26
author Bram Moolenaar <Bram@vim.org>
date Fri, 20 Mar 2020 21:30:04 +0100
parents c94c103e7cb4
children 3a7017ee1161
line wrap: on
line source

#!/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