Skip to content

Commit

Permalink
Merge pull request #1407 from wardenjohn/add_version_show
Browse files Browse the repository at this point in the history
kpatch-build: introduce version print option
  • Loading branch information
joe-lawrence authored Oct 10, 2024
2 parents 2f6a812 + 8cdf567 commit 34102d0
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion kpatch-build/kpatch-build
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
# - Builds the patched kernel/module and monitors changed objects
# - Builds the patched objects with gcc flags -f[function|data]-sections
# - Runs kpatch tools to create and link the patch kernel module
VERSION=0.9.9

set -o pipefail

Expand Down Expand Up @@ -733,13 +734,14 @@ usage() {
echo " --skip-cleanup Skip post-build cleanup" >&2
echo " --skip-compiler-check Skip compiler version matching check" >&2
echo " (not recommended)" >&2
echo " --version Version of kpatch-build"
}

if ! command -v gawk &> /dev/null; then
die "gawk not installed"
fi

options="$(getopt -o ha:r:s:c:v:j:t:n:o:dR -l "help,archversion:,sourcerpm:,sourcedir:,config:,vmlinux:,jobs:,target:,name:,output:,oot-module:,oot-module-src:,debug,skip-gcc-check,skip-compiler-check,skip-cleanup,non-replace" -- "$@")" || die "getopt failed"
options="$(getopt -o ha:r:s:c:v:j:t:n:o:dR -l "help,archversion:,sourcerpm:,sourcedir:,config:,vmlinux:,jobs:,target:,name:,output:,oot-module:,oot-module-src:,debug,skip-gcc-check,skip-compiler-check,skip-cleanup,non-replace,version" -- "$@")" || die "getopt failed"

eval set -- "$options"

Expand Down Expand Up @@ -821,6 +823,10 @@ while [[ $# -gt 0 ]]; do
echo "WARNING: Skipping compiler version matching check (not recommended)"
SKIPCOMPILERCHECK=1
;;
--version)
echo "Version : $VERSION"
exit 0
;;
*)
[[ "$1" = "--" ]] && shift && continue
[[ ! -f "$1" ]] && die "patch file '$1' not found"
Expand Down

0 comments on commit 34102d0

Please sign in to comment.