summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRandall Spangler <rspangler@chromium.org>2012-10-25 13:40:42 -0700
committerGerrit <chrome-bot@google.com>2012-10-25 17:03:44 -0700
commit00b344ddbb570a5dae9b27f8441202dcecba9a4a (patch)
treeeee0a8d12ca3b062c7d60b12ddd84cbc06559528 /Makefile
parentf48f9a6228c32c3435eaa113ed34268503c69a4f (diff)
downloadchrome-ec-00b344ddbb570a5dae9b27f8441202dcecba9a4a.tar.gz
Clean up vboot hash support
This copies the parts of sha256.c that we need from vboot_reference, and removes the explicit dependency on vboot_reference. That dependency was a good idea when we were doing full verified boot in the EC, but is now overkill and makes it harder for others to reuse the EC code. This also lets us call EC functions directly instead of needing vboot_stub.cc; that reduces code size by ~100 bytes. BUG=chrome-os-partner:15579 BRANCH=none TEST=vboot_hash ro, then compare with result of sha256sum build/link/ec.RO.flat Change-Id: I0f236174291df3e7f3c75e960fe9ab32af305a61 Signed-off-by: Randall Spangler <rspangler@chromium.org> Reviewed-on: https://gerrit.chromium.org/gerrit/36589 Reviewed-by: Bill Richardson <wfrichar@chromium.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile1
1 files changed, 0 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b35ecd3ee0..5fae04b54a 100644
--- a/Makefile
+++ b/Makefile
@@ -51,7 +51,6 @@ all-y+=$(call objs_from_dir,board/$(BOARD),board)
all-y+=$(call objs_from_dir,private,private)
all-y+=$(call objs_from_dir,common,common)
all-y+=$(call objs_from_dir,test,$(PROJECT))
-all-y+=$(call objs_from_dir,vboot,vboot)
dirs=core/$(CORE) chip/$(CHIP) board/$(BOARD) private common test util
include Makefile.rules