Skip to content

Commit

Permalink
Merge pull request #8 from tony2guo/bindeb-pkg
Browse files Browse the repository at this point in the history
Use bindeb-pkg instead of deb-pkg
  • Loading branch information
2b-t authored Dec 15, 2024
2 parents 3dbf898 + 7724c6e commit 358a60b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doc/PreemptRt.md
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ Now it is time to build the kernel:
```shell
$ make clean # Optional to remove old relicts (from previously failed compilations)
# The following command might take very long!
$ sudo make -j$(nproc) deb-pkg
$ sudo make -j$(nproc) bindeb-pkg
```

where the [`revision` parameter is just for keeping track of the version number of your kernel builds](https://www.debian.org/releases/wheezy/amd64/ch08s06.html.en) and can be changed at will, similarly for the `custom` word.
Expand Down
2 changes: 1 addition & 1 deletion src/lib_compile_kernel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ function select_installation_mode() {

function generate_preemptrt_kernel_debian_package() {
declare desc="Generate Debian package for easier installation and uninstallation"
sudo make -j$(nproc) deb-pkg
sudo make -j$(nproc) bindeb-pkg
}

function select_install_now() {
Expand Down

0 comments on commit 358a60b

Please sign in to comment.