diff options
author | Michael Ellerman <mpe@ellerman.id.au> | 2015-09-23 01:40:34 -0400 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2015-10-01 02:52:03 -0400 |
commit | d2036f30cfe1daa19e63ce75afd56c7ffd39ef3c (patch) | |
tree | f5ccd975122bc087f091835199c72ddfc3baf263 /scripts/kconfig/Makefile | |
parent | 65d3223a853ac8598694064c1d37b0955e7d99cc (diff) |
scripts/kconfig/Makefile: Allow KBUILD_DEFCONFIG to be a target
Arch Makefiles can set KBUILD_DEFCONFIG to tell kbuild the name of the
defconfig that should be built by default.
However currently there is an assumption that KBUILD_DEFCONFIG points to
a file at arch/$(SRCARCH)/configs/$(KBUILD_DEFCONFIG).
We would like to use a target, using merge_config, as our defconfig, so
adapt the logic in scripts/kconfig/Makefile to allow that.
To minimise the chance of breaking anything, we first check if
KBUILD_DEFCONFIG is a file, and if so we do the old logic. If it's not a
file, then we call the top-level Makefile with KBUILD_DEFCONFIG as the
target.
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Acked-by: Michal Marek <mmarek@suse.com>
Diffstat (limited to 'scripts/kconfig/Makefile')
-rw-r--r-- | scripts/kconfig/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/scripts/kconfig/Makefile b/scripts/kconfig/Makefile index aceaaed09811..b2b9c87cec50 100644 --- a/scripts/kconfig/Makefile +++ b/scripts/kconfig/Makefile | |||
@@ -96,9 +96,12 @@ savedefconfig: $(obj)/conf | |||
96 | defconfig: $(obj)/conf | 96 | defconfig: $(obj)/conf |
97 | ifeq ($(KBUILD_DEFCONFIG),) | 97 | ifeq ($(KBUILD_DEFCONFIG),) |
98 | $< $(silent) --defconfig $(Kconfig) | 98 | $< $(silent) --defconfig $(Kconfig) |
99 | else | 99 | else ifneq ($(wildcard arch/$(SRCARCH)/configs/$(KBUILD_DEFCONFIG)),) |
100 | @$(kecho) "*** Default configuration is based on '$(KBUILD_DEFCONFIG)'" | 100 | @$(kecho) "*** Default configuration is based on '$(KBUILD_DEFCONFIG)'" |
101 | $(Q)$< $(silent) --defconfig=arch/$(SRCARCH)/configs/$(KBUILD_DEFCONFIG) $(Kconfig) | 101 | $(Q)$< $(silent) --defconfig=arch/$(SRCARCH)/configs/$(KBUILD_DEFCONFIG) $(Kconfig) |
102 | else | ||
103 | @$(kecho) "*** Default configuration is based on target '$(KBUILD_DEFCONFIG)'" | ||
104 | $(Q)$(MAKE) -f $(srctree)/Makefile $(KBUILD_DEFCONFIG) | ||
102 | endif | 105 | endif |
103 | 106 | ||
104 | %_defconfig: $(obj)/conf | 107 | %_defconfig: $(obj)/conf |