diff mbox

[1/1] uboot: fix target uboot defconfig warning

Message ID 20170421195707.5238-1-christian@paral.in
State Accepted
Headers show

Commit Message

Christian Stewart April 21, 2017, 7:57 p.m. UTC
The warning currently reads:

  No board defconfig name specified, check your
  BR2_TARGET_UBOOT_DEFCONFIG setting.

It should read:

  No board defconfig name specified, check your
  BR2_TARGET_UBOOT_BOARD_DEFCONFIG setting.

Signed-off-by: Christian Stewart <christian@paral.in>
---
 boot/uboot/uboot.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Thomas Petazzoni April 22, 2017, 1:05 p.m. UTC | #1
Hello,

On Fri, 21 Apr 2017 15:57:07 -0400, Christian Stewart wrote:
> The warning currently reads:
> 
>   No board defconfig name specified, check your
>   BR2_TARGET_UBOOT_DEFCONFIG setting.
> 
> It should read:
> 
>   No board defconfig name specified, check your
>   BR2_TARGET_UBOOT_BOARD_DEFCONFIG setting.
> 
> Signed-off-by: Christian Stewart <christian@paral.in>
> ---
>  boot/uboot/uboot.mk | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Applied to master, thanks.

Thomas
Peter Korsgaard April 24, 2017, 7:32 p.m. UTC | #2
>>>>> "Christian" == Christian Stewart <christian@paral.in> writes:

 > The warning currently reads:
 >   No board defconfig name specified, check your
 >   BR2_TARGET_UBOOT_DEFCONFIG setting.

 > It should read:

 >   No board defconfig name specified, check your
 >   BR2_TARGET_UBOOT_BOARD_DEFCONFIG setting.

 > Signed-off-by: Christian Stewart <christian@paral.in>

Committed to 2017.02.x, thanks.
diff mbox

Patch

diff --git a/boot/uboot/uboot.mk b/boot/uboot/uboot.mk
index 91f8ec4..5320d5c 100644
--- a/boot/uboot/uboot.mk
+++ b/boot/uboot/uboot.mk
@@ -311,7 +311,7 @@  endif # UBOOT_BOARD_NAME
 else ifeq ($(BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG),y)
 ifeq ($(BR2_TARGET_UBOOT_USE_DEFCONFIG),y)
 ifeq ($(call qstrip,$(BR2_TARGET_UBOOT_BOARD_DEFCONFIG)),)
-$(error No board defconfig name specified, check your BR2_TARGET_UBOOT_DEFCONFIG setting)
+$(error No board defconfig name specified, check your BR2_TARGET_UBOOT_BOARD_DEFCONFIG setting)
 endif # qstrip BR2_TARGET_UBOOT_BOARD_DEFCONFIG
 endif # BR2_TARGET_UBOOT_USE_DEFCONFIG
 ifeq ($(BR2_TARGET_UBOOT_USE_CUSTOM_CONFIG),y)