Skip to content

Commit a6f0798

Browse files
committed
feat(kernel-configs): USB audio and webcams
Add a config fragment to enable support for USB audio devices and USB webcams on top of arm64 defconfig; this is useful for testing; fixes: #73 Signed-off-by: Loïc Minier <[email protected]>
1 parent d504ecc commit a6f0798

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

.github/workflows/linux.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@ jobs:
6666
debhelper-compat kmod python3 rsync coreutils
6767
scripts/build-linux-deb.sh \
6868
kernel-configs/qcom-imsdk.config \
69-
kernel-configs/systemd-boot.config
69+
kernel-configs/systemd-boot.config \
70+
kernel-configs/usb-test-devices.config
7071
7172
- name: Stage artifacts for upload
7273
run: |
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# it's convenient to use generic USB devices for testing, but these are
2+
# not enabled in the defconfig; this config fragment adds basic support
3+
# for USB audio devices and USB webcams
4+
5+
# USB Audio Class driver
6+
CONFIG_SND_USB_AUDIO=m
7+
8+
# Media subsystem
9+
CONFIG_MEDIA_SUPPORT=y
10+
# USB media device support
11+
CONFIG_MEDIA_USB_SUPPORT=y # USB media device support
12+
# UVC driver
13+
CONFIG_USB_VIDEO_CLASS=y
14+
# V4L2 core support
15+
CONFIG_VIDEO_DEV=y
16+

0 commit comments

Comments
 (0)