summaryrefslogtreecommitdiffstats
path: root/boot/uboot
diff options
context:
space:
mode:
authorPeter Korsgaard <jacmet@sunsite.dk>2011-07-14 13:41:29 +0200
committerPeter Korsgaard <jacmet@sunsite.dk>2011-07-14 13:41:29 +0200
commit908c5610cc2e74340b6e589e4331cee780dea05e (patch)
treef8307bd1ccb848f7d53363e04af08cebcaee3a57 /boot/uboot
parentc1e0bc5275328f22d3e18d8658c882152d7994c6 (diff)
downloadbuildroot-novena-908c5610cc2e74340b6e589e4331cee780dea05e.tar.gz
buildroot-novena-908c5610cc2e74340b6e589e4331cee780dea05e.zip
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 <jacmet@sunsite.dk>
Diffstat (limited to 'boot/uboot')
-rw-r--r--boot/uboot/uboot.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/boot/uboot/uboot.mk b/boot/uboot/uboot.mk
index ec592e13e..0610e4c9d 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