view ci/load-snd-dummy.sh @ 30239:91ecee475811 v9.0.0455

patch 9.0.0455: a few problems with 'splitscroll' Commit: https://github.com/vim/vim/commit/5ed391708a62b4ebaa84dd23e32a416e5c3383d9 Author: Luuk van Baal <luukvbaal@gmail.com> Date: Tue Sep 13 11:55:10 2022 +0100 patch 9.0.0455: a few problems with 'splitscroll' Problem: A few problems with 'splitscroll'. Solution: Fix 'splitscroll' problems. (Luuk van Baal, closes https://github.com/vim/vim/issues/11117)
author Bram Moolenaar <Bram@vim.org>
date Tue, 13 Sep 2022 13:00:03 +0200
parents 3a7017ee1161
children
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-get install -yq --no-install-suggests --no-install-recommends "linux-modules-extra-$(uname -r)"
    modprobe snd-dummy
fi