https://github.com/qzed/fedora-surface-kernel-pkgscripts
Build and packaging scripts for kernel development on Fedora.
https://github.com/qzed/fedora-surface-kernel-pkgscripts
Last synced: over 1 year ago
JSON representation
Build and packaging scripts for kernel development on Fedora.
- Host: GitHub
- URL: https://github.com/qzed/fedora-surface-kernel-pkgscripts
- Owner: qzed
- Created: 2021-05-08T21:39:43.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-05-08T21:41:33.000Z (about 5 years ago)
- Last Synced: 2025-01-13T08:46:54.092Z (over 1 year ago)
- Language: Shell
- Size: 5.86 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Fedora Kernel Build Scripts
Build scripts for building a Fedora kernel package from a (potentially dirty) work tree, intended for (faster) kernel development. Supports cross-compiling for aarch64.
Do not use this for proper package releases.
## Usage
1. Clone/symlink/copy kernel source tree to the `kernel/` directory.
2. Configure your kernel (e.g. run `make config` inside `kernel/` or copy config to `kernel/.config).
3. Build packages via `./makerpm`. For cross-compiling from x86 to aarch64, run `./makerpm -- --with-cross --target aarch64-linux-gnu`.
and for development
4. Make changes to the kernel source.
5. Go to step 3 to build updated packages.
## Credits
Based on the work of [Dorian Stoll](https://github.com/stolld/) for [linux-surface](https://github.com/linux-surface/linux-surface).