Add configuration for v4l2loopback and uinput

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2025-01-28 13:39:05 +01:00
parent 8248ff3acc
commit 86e120fd73
Signed by: luzifer
SSH key fingerprint: SHA256:/xtE5lCgiRDQr8SLxHMS92ZBlACmATUmF1crK16Ks4E
3 changed files with 22 additions and 4 deletions
PKGBUILD
base/usr/share/luzifer/base-setup
playbook.yaml
roles/modules/tasks

View file

@ -7,7 +7,7 @@ pkgname=(
luzifer-gui
luzifer-lenovo-gui
)
pkgver=0.13.9
pkgver=0.13.10
pkgrel=1
pkgdesc='System configuration for @luzifer systems'
arch=(any)

View file

@ -1,10 +1,8 @@
---
- hosts: all
roles:
- role: clamav
- role: locale
- role: modules
- role: security
- role: systemtime
...

View file

@ -0,0 +1,20 @@
---
# uinput module configuration
- name: Enable load of uinput module
copy:
content: |
uinput
dest: /etc/modules-load.d/uinput.conf
# V4L2 Loopback Module Configuration
- name: Configure V4L2 Loopback Module
copy:
content: |
options v4l2loopback exclusive_caps=1 video_nr=8,9
dest: /etc/modprobe.d/v4l2loopback.conf
- name: Enable loading of V4L2 Loopback Module
copy:
content: |
v4l2loopback
dest: /etc/modules-load.d/v4l2loopback.conf