From: Peter Korsgaard Date: Thu, 14 Jul 2011 11:41:29 +0000 (+0200) Subject: uboot: unbreak kirkwood format handling after a4ca959321 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=908c5610cc2e74340b6e589e4331cee780dea05e;p=buildroot.git uboot: unbreak kirkwood format handling after a4ca959321 Commit a4ca959321 (u-boot: rename to uboot) forgot to change the kirkwood format handling to look for the new variable name, breaking support. Signed-off-by: Peter Korsgaard --- diff --git a/boot/uboot/uboot.mk b/boot/uboot/uboot.mk index ec592e13e4..0610e4c9dc 100644 --- a/boot/uboot/uboot.mk +++ b/boot/uboot/uboot.mk @@ -24,7 +24,7 @@ endif ifeq ($(BR2_TARGET_UBOOT_FORMAT_KWB),y) UBOOT_BIN = u-boot.kwb -UBOOT_MAKE_TARGET = $(U_BOOT_BIN) +UBOOT_MAKE_TARGET = $(UBOOT_BIN) else ifeq ($(BR2_TARGET_UBOOT_FORMAT_LDR),y) UBOOT_BIN = u-boot.ldr else