diff options
author | John Crispin <john@openwrt.org> | 2014-06-02 12:45:19 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2014-06-02 12:45:19 +0000 |
commit | c77feae6be20c7c7aadaf492260dda7153f10108 (patch) | |
tree | 99a00fb5573bbd9064b1b3e9a29600e681d79fa2 | |
parent | 45e3540a3f1189fb36655aeb2347445526d654bd (diff) | |
download | upstream-c77feae6be20c7c7aadaf492260dda7153f10108.tar.gz upstream-c77feae6be20c7c7aadaf492260dda7153f10108.tar.bz2 upstream-c77feae6be20c7c7aadaf492260dda7153f10108.zip |
include: Clean-up kernel git command options management
The way git options are managed in kernel-defaults.mk makes additions
difficult. If requires different code path for each option; it's
ok so far as we handle only one option, but if we want to make the git
clone mechanism more flexible, more option will be required, which
will become tedious.
So; we'll move the GIT options into a variable, that may or may not be
set depending on the configuration, and we'll pass this variable to the
git command.
Signed-off-by: Mathieu Olivari <mathieu@qca.qualcomm.com>
SVN-Revision: 40945
-rw-r--r-- | include/kernel-defaults.mk | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/include/kernel-defaults.mk b/include/kernel-defaults.mk index 499ecdf3d8..fd75a3f79f 100644 --- a/include/kernel-defaults.mk +++ b/include/kernel-defaults.mk @@ -32,6 +32,12 @@ export HOST_EXTRACFLAGS=-I$(STAGING_DIR_HOST)/include # defined in quilt.mk Kernel/Patch:=$(Kernel/Patch/Default) + +KERNEL_GIT_OPTS:= +ifneq ($(strip $(CONFIG_KERNEL_GIT_LOCAL_REPOSITORY)),"") + KERNEL_GIT_OPTS+=--reference $(CONFIG_KERNEL_GIT_LOCAL_REPOSITORY) +endif + ifeq ($(strip $(CONFIG_EXTERNAL_KERNEL_TREE)),"") ifeq ($(strip $(CONFIG_KERNEL_GIT_CLONE_URI)),"") define Kernel/Prepare/Default @@ -41,7 +47,7 @@ ifeq ($(strip $(CONFIG_EXTERNAL_KERNEL_TREE)),"") endef else define Kernel/Prepare/Default - git clone $(CONFIG_KERNEL_GIT_CLONE_URI) $(LINUX_DIR) + git clone $(KERNEL_GIT_OPTS) $(CONFIG_KERNEL_GIT_CLONE_URI) $(LINUX_DIR) endef endif else |