diff options
| author | Christian Stewart <christian@paral.in> | 2017-04-21 15:57:07 -0400 |
|---|---|---|
| committer | Peter Korsgaard <peter@korsgaard.com> | 2017-04-24 17:50:14 +0200 |
| commit | 24d80453afd77e2d8b1c3384ae023b6dfe8ee38d (patch) | |
| tree | 87815f68db24052337e84df58c452891b46d9e04 /boot | |
| parent | 86a16f169d36825d49b1780d8b90a51b1b3e4924 (diff) | |
| download | buildroot-24d80453afd77e2d8b1c3384ae023b6dfe8ee38d.tar.gz buildroot-24d80453afd77e2d8b1c3384ae023b6dfe8ee38d.zip | |
uboot: fix target uboot defconfig warning
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>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
(cherry picked from commit b7f095920a147c58f07b18f1b68553a1af03ae75)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'boot')
| -rw-r--r-- | boot/uboot/uboot.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/boot/uboot/uboot.mk b/boot/uboot/uboot.mk index 6b9d544546..782609a5f8 100644 --- a/boot/uboot/uboot.mk +++ b/boot/uboot/uboot.mk @@ -293,7 +293,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) |

