|
@@ -741,6 +741,10 @@ defconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
|
|
|
@mkdir -p $(BUILD_DIR)/buildroot-config
|
|
|
@$(COMMON_CONFIG_ENV) $< --defconfig=$(TOPDIR)/configs/$@ $(CONFIG_CONFIG_IN)
|
|
|
|
|
|
+%_defconfig: $(BUILD_DIR)/buildroot-config/conf $(BR2_EXTERNAL)/configs/%_defconfig outputmakefile
|
|
|
+ @mkdir -p $(BUILD_DIR)/buildroot-config
|
|
|
+ @$(COMMON_CONFIG_ENV) $< --defconfig=$(BR2_EXTERNAL)/configs/$@ $(CONFIG_CONFIG_IN)
|
|
|
+
|
|
|
savedefconfig: $(BUILD_DIR)/buildroot-config/conf outputmakefile
|
|
|
@mkdir -p $(BUILD_DIR)/buildroot-config
|
|
|
@$(COMMON_CONFIG_ENV) $< \
|
|
@@ -849,8 +853,15 @@ endif
|
|
|
@echo ' make V=0|1 - 0 => quiet build (default), 1 => verbose build'
|
|
|
@echo ' make O=dir - Locate all output files in "dir", including .config'
|
|
|
@echo
|
|
|
+ @echo 'Built-in configs:'
|
|
|
@$(foreach b, $(sort $(notdir $(wildcard $(TOPDIR)/configs/*_defconfig))), \
|
|
|
printf " %-35s - Build for %s\\n" $(b) $(b:_defconfig=);)
|
|
|
+ifneq ($(wildcard $(BR2_EXTERNAL)/configs/*_defconfig),)
|
|
|
+ @echo
|
|
|
+ @echo 'User-provided configs:'
|
|
|
+ @$(foreach b, $(sort $(notdir $(wildcard $(BR2_EXTERNAL)/configs/*_defconfig))), \
|
|
|
+ printf " %-35s - Build for %s\\n" $(b) $(b:_defconfig=);)
|
|
|
+endif
|
|
|
@echo
|
|
|
@echo 'See docs/README, or generate the Buildroot manual for further details'
|
|
|
@echo
|