diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2019-04-12 15:26:33 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-04-23 09:54:34 +0000 |
commit | 89d4a601f501f4bfa04dfcd73502651d1531f48c (patch) | |
tree | 31772c632aec7dfa36f5c8e61012ab39cab99148 /payloads | |
parent | f4af723fd86fe0b2aa7cd5eed9b6c8362a3d48fe (diff) |
payload/U-Boot: Fix generating a default config on the master branch
The name of the default configuration file for x86 coreboot changed.
Change-Id: I6544142a70bd3e1e13ee52eccbd5335f8375a4f6
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/32305
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Philipp Deppenwiese <zaolin.daisuki@gmail.com>
Diffstat (limited to 'payloads')
-rw-r--r-- | payloads/external/U-Boot/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/payloads/external/U-Boot/Makefile b/payloads/external/U-Boot/Makefile index c17b67fd4e..b47e74c738 100644 --- a/payloads/external/U-Boot/Makefile +++ b/payloads/external/U-Boot/Makefile @@ -65,7 +65,7 @@ else false endif else - cat $(project_dir)/configs/coreboot-x86_defconfig >> $(project_config_file) + cat $(project_dir)/configs/coreboot_defconfig >> $(project_config_file) endif $(MAKE) -C $(project_dir) olddefconfig |