mirror of
https://github.com/dynup/kpatch
synced 2025-04-01 22:48:08 +00:00
Merge pull request #77 from ryanmiao/master
Add -c|--config option to kpatch-build
This commit is contained in:
commit
95b76492e4
@ -93,28 +93,33 @@ find_tools_dir() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
usage() {
|
usage() {
|
||||||
echo "usage: $0 [-s|--sourcedir <dir>] <patch file>" >&2
|
echo "usage: $0 [options] <patch file>" >&2
|
||||||
|
echo " -h, --help Show this help message" >&2
|
||||||
|
echo " -s, --sourcedir Specify kernel source directory" >&2
|
||||||
|
echo " -c, --config Specify kernel config file" >&2
|
||||||
}
|
}
|
||||||
|
|
||||||
while [[ "$#" -gt 0 ]]; do
|
PARSED_OPT_ARRAY=($(getopt -u -n "$0" -o hs:c: -l "help,sourcedir:,config:" -- "$@")) || die "getopt failed"
|
||||||
case "$1" in
|
|
||||||
-h|--help)
|
for index in ${!PARSED_OPT_ARRAY[*]}; do
|
||||||
usage
|
case "${PARSED_OPT_ARRAY[$index]}" in
|
||||||
exit 0
|
-h|--help)
|
||||||
;;
|
usage
|
||||||
-s|--sourcedir)
|
exit 0
|
||||||
shift
|
;;
|
||||||
[[ "$#" -eq 0 ]] && die "no source dir specified"
|
-s|--sourcedir)
|
||||||
USERSRCDIR="$(readlink -f $1)"
|
USERSRCDIR="$(readlink -f ${PARSED_OPT_ARRAY[$(( $index+1 ))]})"
|
||||||
[[ ! -d "$USERSRCDIR" ]] && die "source dir $1 not found"
|
[[ ! -d "$USERSRCDIR" ]] && die "source dir $USERSRCDIR not found"
|
||||||
shift
|
;;
|
||||||
;;
|
-c|--config)
|
||||||
*)
|
CONFIGFILE="$(readlink -f ${PARSED_OPT_ARRAY[$(( $index+1 ))]})"
|
||||||
[[ -n "$PATCHFILE" ]] && die "bad argument: $1"
|
[[ ! -f "$CONFIGFILE" ]] && die "config file $CONFIGFILE not found"
|
||||||
PATCHFILE="$(readlink -f $1)"
|
;;
|
||||||
[[ ! -f "$PATCHFILE" ]] && die "patch file $1 not found"
|
--)
|
||||||
shift
|
PATCHFILE="$(readlink -f ${PARSED_OPT_ARRAY[$(( $index+1 ))]})"
|
||||||
;;
|
[[ ! -f "$PATCHFILE" ]] && die "patch file $PATCHFILE not found"
|
||||||
|
break
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
||||||
@ -145,7 +150,11 @@ if [[ -d "$SRCDIR" ]] || [[ -n "$USERSRCDIR" ]]; then
|
|||||||
mkdir -p "$CACHEDIR"
|
mkdir -p "$CACHEDIR"
|
||||||
mkdir -p "$OBJDIR" "$OBJDIR2"
|
mkdir -p "$OBJDIR" "$OBJDIR2"
|
||||||
|
|
||||||
cp "$USERSRCDIR/.config" "$OBJDIR" || die "source dir is missing a .config file"
|
if [[ -n "$CONFIGFILE" ]]; then
|
||||||
|
cp "$CONFIGFILE" "$OBJDIR/.config" || die "config file is missing"
|
||||||
|
else
|
||||||
|
cp "$USERSRCDIR/.config" "$OBJDIR" || die "source dir is missing a .config file"
|
||||||
|
fi
|
||||||
|
|
||||||
echo "Copying source to $SRCDIR"
|
echo "Copying source to $SRCDIR"
|
||||||
cp -a "$USERSRCDIR" "$SRCDIR" || die "copy failed"
|
cp -a "$USERSRCDIR" "$SRCDIR" || die "copy failed"
|
||||||
|
Loading…
Reference in New Issue
Block a user