{"id":31465592,"url":"https://github.com/dawciobiel/linux-kernel-build-py","last_synced_at":"2026-05-19T07:33:46.450Z","repository":{"id":317521779,"uuid":"1067777033","full_name":"dawciobiel/linux-kernel-build-py","owner":"dawciobiel","description":"Python-based framework for building custom Linux kernel RPM packages within a Dockerized environment","archived":false,"fork":false,"pushed_at":"2025-10-01T11:37:27.000Z","size":159,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-01T13:21:29.929Z","etag":null,"topics":["generate","kernel","linux","linux-kernel"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dawciobiel.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-10-01T11:26:43.000Z","updated_at":"2025-10-01T11:37:30.000Z","dependencies_parsed_at":"2025-10-01T13:22:16.059Z","dependency_job_id":"aeff8a88-1ca8-4609-9647-1596ccc5cd4a","html_url":"https://github.com/dawciobiel/linux-kernel-build-py","commit_stats":null,"previous_names":["dawciobiel/linux-kernel-build-py"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/dawciobiel/linux-kernel-build-py","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dawciobiel%2Flinux-kernel-build-py","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dawciobiel%2Flinux-kernel-build-py/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dawciobiel%2Flinux-kernel-build-py/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dawciobiel%2Flinux-kernel-build-py/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dawciobiel","download_url":"https://codeload.github.com/dawciobiel/linux-kernel-build-py/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dawciobiel%2Flinux-kernel-build-py/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":277883736,"owners_count":25894167,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-01T02:00:09.286Z","response_time":88,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["generate","kernel","linux","linux-kernel"],"created_at":"2025-10-01T17:55:41.820Z","updated_at":"2026-05-19T07:33:46.444Z","avatar_url":"https://github.com/dawciobiel.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Linux Kernel Build Project (Python)\n\nThis project provides a Python-based framework for building custom Linux kernel RPM packages within a Dockerized environment. It aims to streamline the process of kernel compilation, packaging, and signing, offering a modular and reproducible build system.\n\n## Features\n\n*   **Dockerized Builds:** Kernel compilation and RPM packaging occur within isolated Docker containers, ensuring consistent build environments.\n*   **Python-driven Automation:** All build steps are orchestrated using Python scripts, enhancing flexibility and maintainability.\n*   **Custom Kernel Configurations:** Easily build kernels with various configurations (e.g., `tiny-config`, `vbox-config-slim`).\n*   **RPM Package Generation:** Produces standard RPM packages for easy installation and management on RPM-based systems.\n*   **Configurable Parallelism:** Customize the number of CPU cores used for compilation for faster builds.\n*   **GPG Signing:** Automatically generates a temporary GPG key pair within the build container to sign the generated RPMs, ensuring package integrity.\n*   **Structured Logging:** Detailed logs for each stage of the build process are generated, aiding in troubleshooting and analysis.\n*   **Build Reports:** A summary report is generated for each build, providing key information about the process.\n\n## Project Structure\n\n```\n.\n├── .gitignore\n├── BUILD.md              # Detailed build instructions\n├── GEMINI.md             # Gemini-specific context and instructions\n├── INSTALL.md            # Installation and setup guide\n├── README.md             # Project overview\n├── RPM-GPG-KEY-dawciobiel # Public GPG key for RPM verification (if provided)\n├── TODO.md               # Project roadmap and pending tasks\n├── docker/               # Dockerfiles and scripts for building Docker images\n│   ├── _build_engine\n│   ├── build-tumbleweed.sh\n│   ├── build-ubuntu.sh\n│   ├── tumbleweed.Dockerfile\n│   └── ubuntu.Dockerfile\n├── kernel-config/        # Custom kernel configuration files\n│   ├── amd-fx8350-lspci_k.log\n│   ├── amd-fx8350-lsusb.log\n│   ├── README.md\n│   ├── host-config/\n│   ├── host-config-slim/\n│   ├── tiny-config/\n│   ├── vbox-config/\n│   └── vbox-config-slim/\n├── kernel-sources/       # Directory for kernel source tarballs\n│   └── linux-6.16.8.tar.xz\n└── scripts/              # Python and shell scripts for build automation\n    ├── generate_gpg_key.sh\n    ├── kernel_builder.py\n    └── local_kernel_build.py\n```\n\n## Getting Started\n\nRefer to `INSTALL.md` for detailed instructions on setting up the project and `BUILD.md` for how to build your first custom kernel.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdawciobiel%2Flinux-kernel-build-py","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdawciobiel%2Flinux-kernel-build-py","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdawciobiel%2Flinux-kernel-build-py/lists"}