build: handle generic and target-specific config in the same run of target_config{,_check}.sh

This, together with a new try_config directive, will allow checking the
generic config and make it more flexible.
This commit is contained in:
Matthias Schiffer 2017-09-07 00:17:57 +02:00
parent b325f00599
commit 587c5016cb
No known key found for this signature in database
GPG Key ID: 16EF3F64CB201D9C
5 changed files with 12 additions and 3 deletions

View File

@ -103,7 +103,6 @@ config: FORCE
echo 'CONFIG_TARGET_$(BOARD)=y' \
$(if $(SUBTARGET),&& echo 'CONFIG_TARGET_$(BOARD)_$(SUBTARGET)=y') \
$(foreach pkg,$(GLUON_PACKAGES_NO),&& echo '# CONFIG_PACKAGE_$(pkg) is not set') \
&& scripts/target_config.sh generic \
&& GLUON_SITEDIR='$(GLUON_SITEDIR)' scripts/target_config.sh '$(GLUON_TARGET)' \
$(foreach pkg,$(GLUON_PACKAGES_YES),&& echo 'CONFIG_PACKAGE_$(pkg)=y') \
$(foreach lang,$(GLUON_LANGS),&& echo 'CONFIG_GLUON_WEB_LANG_$(lang)=y') \

View File

@ -2,6 +2,10 @@ config() {
:
}
try_config() {
:
}
device() {
:
}

View File

@ -35,6 +35,10 @@ config() {
echo "$1"
}
try_config() {
echo "$1"
}
device() {
emit
@ -63,6 +67,7 @@ packages() {
fi
}
. targets/generic
# The sort will not only remove duplicate entries,
# but also magically make =y entries override =m ones

View File

@ -92,6 +92,7 @@ packages() {
}
. targets/generic
. targets/"$target"
check_devices

View File

@ -7,8 +7,8 @@ config '# CONFIG_BUSYBOX_CONFIG_FEATURE_PREFER_IPV4_ADDRESS is not set'
config 'CONFIG_PACKAGE_ATH_DEBUG=y'
config 'CONFIG_TARGET_MULTI_PROFILE=y'
config 'CONFIG_TARGET_PER_DEVICE_ROOTFS=y'
try_config 'CONFIG_TARGET_MULTI_PROFILE=y'
try_config 'CONFIG_TARGET_PER_DEVICE_ROOTFS=y'
if [ "$GLUON_DEBUG" ]
then