fix path to CONFIG_LINUX_CONFIG file

This commit is contained in:
Trammell hudson 2018-02-05 16:27:48 -05:00
parent c46c078157
commit 452aabe528
Failed to extract signature
2 changed files with 2 additions and 2 deletions

View File

@ -221,7 +221,7 @@ define define_module =
# Copy the stored config file into the unpacked directory
$($1_config_file_path): $($1_config) $(build)/$($1_dir)/.canary
@mkdir -p $$(dir $$@)
$(call do-copy,config/$($1_config),$$@)
$(call do-copy,$($1_config),$$@)
endif
# Use the module's configure variable to build itself

View File

@ -13,7 +13,7 @@ linux_board_dir := $(build)/$(linux_dir)/$(BOARD)
# input file in the heads config/ dir
# Allow board config to specialize Linux configuration if necessary
linux_config := $(or $(CONFIG_LINUX_CONFIG,linux.config))
linux_config := $(or $(CONFIG_LINUX_CONFIG),config/linux.config)
# output file in the build dir
linux_config_file := $(BOARD)/.config