use oldnoconfig and avoid using 'yes'
We use yes to answer question to an interactive 'make oldconfig' and generate lots of noise. 'yes' is also not portable, so skip the yes and use 'make oldnoconfig' instead. Change-Id: I14f7056c7735e1a020aad2f37c652e4a53872760 Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
parent
b4edcb80cc
commit
c4ad67dd9c
1 changed files with 1 additions and 2 deletions
|
@ -75,8 +75,7 @@ KERNEL_CONFIG = $(ZEPHYR_BASE)/kernel/configs/$(KERNEL_TYPE).config
|
|||
$(DOTCONFIG): $(KBUILD_DEFCONFIG_PATH) $(CONF_FILE)
|
||||
$(Q)$(CONFIG_SHELL) $(ZEPHYR_BASE)/scripts/kconfig/merge_config.sh \
|
||||
-q -m -O $(O) $(KBUILD_DEFCONFIG_PATH) $(KERNEL_CONFIG) $(CONF_FILE)
|
||||
$(Q)yes "" | $(MAKE) $(S) -C $(ZEPHYR_BASE) O=$(O) \
|
||||
PROJECT=$(PROJECT_BASE) oldconfig
|
||||
$(Q)$(MAKE) $(S) -C $(ZEPHYR_BASE) O=$(O) PROJECT=$(PROJECT_BASE) oldnoconfig
|
||||
|
||||
pristine:
|
||||
$(Q)rm -rf $(O)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue