You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
471 B
18 lines
471 B
13 years ago
|
#
|
||
|
# Makes a dpkg Linux kernel package.
|
||
|
#
|
||
|
# Authors:
|
||
|
# Daniel Bolton <dbb@9y.com>
|
||
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
||
|
#
|
||
|
|
||
13 years ago
|
MAKEFLAGS='' # Temporarily unset MAKEFLAGS ('-j3' will fail).
|
||
|
appendage='-custom' # Displayed in $(uname -r).
|
||
|
revision=$(date +"%Y%m%d") # Displayed in the dpkg package file name.
|
||
13 years ago
|
|
||
|
make-kpkg clean
|
||
|
|
||
|
time fakeroot make-kpkg --append-to-version "$appendage" --revision \
|
||
|
"$revision" kernel_image kernel_headers
|
||
|
|