summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorChe-Liang Chiou <clchiou@chromium.org>2010-11-09 08:34:56 +0800
committerSimon Glass <sjg@chromium.org>2011-08-24 10:00:11 -0700
commitafebbaccc9f155b27cdea085a29a3c2174ff6a54 (patch)
tree4781ee4c0c0b963113a6efee051217f5ca53ac30 /Makefile
parent2050b23a906da4338628546bbb2fd210960cf67d (diff)
Fix integration bugs (u-boot side)
This CL includes an empty tlcl_stub implementation. BUG=chromium-os:8621 TEST=Run 'VBOOT_DEBUG=1 make all' successfully See CL=4266002 for vboot side changes. Review URL: http://codereview.chromium.org/4429002 Change-Id: I0898af02697bd4e755d57d467283c2d3818ea36c
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index e4ac086537..cf340bfb38 100644
--- a/Makefile
+++ b/Makefile
@@ -310,10 +310,6 @@ else
PLATFORM_LIBGCC = -L $(shell dirname `$(CC) $(CFLAGS) -print-libgcc-file-name`) -lgcc
endif
PLATFORM_LIBS += $(PLATFORM_LIBGCC)
-# Add vboot_reference lib
-ifdef VBOOT
-PLATFORM_LIBS += $(VBOOT)/lib/vboot_fw.a
-endif
export PLATFORM_LIBS
# Special flags for CPP when processing the linker script.
@@ -326,6 +322,10 @@ LDPPFLAGS += \
__OBJS := $(subst $(obj),,$(OBJS))
__LIBS := $(subst $(obj),,$(LIBS)) $(subst $(obj),,$(LIBBOARD))
+# Add vboot_reference lib
+ifdef VBOOT
+__LIBS += $(VBOOT)/lib/vboot_fw.a
+endif
#########################################################################
#########################################################################