Merged
Conversation
…eeping USB webcams
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
📌 Summary of Changes
This PR migrates the GitHub Actions CI/CD build pipeline to run natively inside a Debian 13 (Trixie) container, resolves runner Out-Of-Memory (OOM) crashes during BTF generation, and trims over 200+ unused DVB/TV capture drivers from the kernel configuration.
🐳 1. GitHub Actions CI/CD Workflow (
build-kernel.yml)container: debian:trixieto bothprepareandbuild-and-releasejobs.gcc-14,g++-14, anddwarves(Pahole 1.30+) for native GCC 14 compilation and full eBPF/BTF generation (CONFIG_DEBUG_INFO_BTF=y).fallocate -l 10G /swapfile) before compilation to expand total virtual memory to 17 GB. This preventspaholeOOM-killer crashes during split-BTF encoding (BTF [M]).🛠️ Prepare container base toolsstep (git,sudo,curl,tar,xz-utils) beforeactions/checkout@v7to fix missinggit/sudobinary errors in minimal Debian docker images.libncurses5-devpackage. Addedkmodbuild dependency required bydpkg-buildpackage.🧹 2. Kernel Configuration (
configs/config-6.19.14-debian13)# CONFIG_DVB_CORE is not set,# CONFIG_MEDIA_DIGITAL_TV_SUPPORT is not set).# CONFIG_MEDIA_PCI_SUPPORT is not set- Conexant, SAA7134, Bt878, Digital Devices).# CONFIG_DVB_USB is not set,# CONFIG_VIDEO_EM28XX is not set,# CONFIG_VIDEO_CX231XX is not set).CONFIG_USB_VIDEO_CLASS=m,CONFIG_MEDIA_CAMERA_SUPPORT=y,CONFIG_VIDEO_DEV=m) for Logitech/Elgato webcams and OBS Studio virtual cameras.📚 3. Documentation (
README.md)1. Prepare,2. Build & Release,3. Telegram Notification) without hardcoded kernel version strings.🔍 Verification
grep(CONFIG_USB_VIDEO_CLASS=m,# CONFIG_DVB_CORE is not set)..github/workflows/build-kernel.ymlvalidated.