From 4a31037a34167a41705de319cdf989a63519debb Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Wed, 11 May 2016 20:13:58 +0200 Subject: [PATCH] build: avoid including profiles/*.mk Generate the active profile name in menuconfig context Signed-off-by: Felix Fietkau --- include/target.mk | 9 +++------ scripts/metadata.pl | 12 ++++++++++++ 2 files changed, 15 insertions(+), 6 deletions(-) diff --git a/include/target.mk b/include/target.mk index f4342bdbb5..868fe6b375 100644 --- a/include/target.mk +++ b/include/target.mk @@ -84,9 +84,6 @@ define Profile echo "$$$$$$$$$(call shvar,Profile/$(1)/Description)"; \ echo "@@"; \ echo; - ifeq ($(CONFIG_TARGET_$(call target_conf,$(BOARD)_$(if $(SUBTARGET),$(SUBTARGET)_))$(1)),y) - PROFILE=$(1) - endif endef endif @@ -101,10 +98,10 @@ else endef endif +PROFILE:=$(call qstrip,$(CONFIG_TARGET_PROFILE)) + ifeq ($(TARGET_BUILD),1) - $(eval $(call IncludeProfiles)) -else - ifeq ($(DUMP),) + ifneq ($(DUMP),) $(eval $(call IncludeProfiles)) endif endif diff --git a/scripts/metadata.pl b/scripts/metadata.pl index f5afb1e47b..260d06d712 100755 --- a/scripts/metadata.pl +++ b/scripts/metadata.pl @@ -337,6 +337,18 @@ EOF } } print <{profiles}; + foreach my $profile (@$profiles) { + print "\tdefault \"$profile->{id}\" if TARGET_$target->{conf}_$profile->{id}\n"; + } + } + + print <