|
@@ -58,7 +58,7 @@ export BR2_VERSION_FULL:=$(BR2_VERSION)$(shell $(TOPDIR)/support/scripts/setloca
|
|
|
noconfig_targets:=menuconfig nconfig gconfig xconfig config oldconfig randconfig \
|
|
|
%_defconfig allyesconfig allnoconfig silentoldconfig release \
|
|
|
randpackageconfig allyespackageconfig allnopackageconfig \
|
|
|
- source-check print-version
|
|
|
+ source-check print-version olddefconfig
|
|
|
|
|
|
# Strip quotes and then whitespaces
|
|
|
qstrip=$(strip $(subst ",,$(1)))
|
|
@@ -693,6 +693,10 @@ silentoldconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
|
|
|
@mkdir -p $(BUILD_DIR)/buildroot-config
|
|
|
$(COMMON_CONFIG_ENV) $< --silentoldconfig $(CONFIG_CONFIG_IN)
|
|
|
|
|
|
+olddefconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
|
|
|
+ @mkdir -p $(BUILD_DIR)/buildroot-config
|
|
|
+ $(COMMON_CONFIG_ENV) $< --olddefconfig $(CONFIG_CONFIG_IN)
|
|
|
+
|
|
|
defconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
|
|
|
@mkdir -p $(BUILD_DIR)/buildroot-config
|
|
|
@$(COMMON_CONFIG_ENV) $< --defconfig$(if $(DEFCONFIG),=$(DEFCONFIG)) $(CONFIG_CONFIG_IN)
|
|
@@ -758,6 +762,8 @@ help:
|
|
|
@echo ' xconfig - interactive Qt-based configurator'
|
|
|
@echo ' gconfig - interactive GTK-based configurator'
|
|
|
@echo ' oldconfig - resolve any unresolved symbols in .config'
|
|
|
+ @echo ' silentoldconfig - Same as oldconfig, but quietly, additionally update deps'
|
|
|
+ @echo ' olddefconfig - Same as silentoldconfig but sets new symbols to their default value'
|
|
|
@echo ' randconfig - New config with random answer to all options'
|
|
|
@echo ' defconfig - New config with default answer to all options'
|
|
|
@echo ' BR2_DEFCONFIG, if set, is used as input'
|