view ci/load-snd-dummy.sh @ 27478:ce352871b382 v8.2.4267

patch 8.2.4267: unused entry in keymap enum Commit: https://github.com/vim/vim/commit/4c93aff20f228d0dfca11f4793eb2c8895d4984c Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jan 31 11:29:51 2022 +0000 patch 8.2.4267: unused entry in keymap enum Problem: Unused entry in keymap enum. Solution: Remove the entry.
author Bram Moolenaar <Bram@vim.org>
date Mon, 31 Jan 2022 12:30:04 +0100
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