https://github.com/ptr1337/builddeb
Linux kernel builder for Debian, Devuan and Ubuntu
https://github.com/ptr1337/builddeb
Last synced: 11 months ago
JSON representation
Linux kernel builder for Debian, Devuan and Ubuntu
- Host: GitHub
- URL: https://github.com/ptr1337/builddeb
- Owner: ptr1337
- Created: 2020-11-25T18:38:51.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-11-07T12:54:52.000Z (over 5 years ago)
- Last Synced: 2025-06-15T20:19:35.672Z (12 months ago)
- Homepage:
- Size: 81.1 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Build a linux kernel *.deb package
### Config Menu
```sh
Defconfig: # Name of 'nameofdefconfig'_defconfig
Branch: # Kernel branch
Arch: # Supoported: x86, arm64 and arm (native compile only)
Menuconfig: # 1 to run kernel menuconfig | 0 to skip
rtl88XXau: # 1 to add Realtek 8812AU/14AU/21AU wireless support
rtl88XXbu: # 1 to add Realtek 88X2BU wireless support
rtl88XXcu: # 1 to add Realtek 8811CU/21CU wireless support
```
### Commands
```sh
make depends # Install dependencies
make config # Create a userdata.txt file
make kernel # Build deb package
make purge # Remove temporary directory
```
### User Patches
```sh
Patches "-p1" placed in the patches directory are applied during compilation.
```
### Notes
```sh
The name of your defconfig, will become the name of the kernel packages created.
For example: nameofdefconfig-linux-image nameofdefconfig-linux-headers
```