Skip to content

Commit 7724c6e

Browse files
committed
Use bindeb-pkg instead of deb-pkg
1 parent 3dbf898 commit 7724c6e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

doc/PreemptRt.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ Now it is time to build the kernel:
250250
```shell
251251
$ make clean # Optional to remove old relicts (from previously failed compilations)
252252
# The following command might take very long!
253-
$ sudo make -j$(nproc) deb-pkg
253+
$ sudo make -j$(nproc) bindeb-pkg
254254
```
255255

256256
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.

src/lib_compile_kernel.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ function select_installation_mode() {
219219

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

225225
function select_install_now() {

0 commit comments

Comments
 (0)