diff options
author | Nicolas Norvez <norvez@chromium.org> | 2019-02-21 19:11:03 -0800 |
---|---|---|
committer | chrome-bot <chrome-bot@chromium.org> | 2019-04-03 18:13:42 -0700 |
commit | f3715a514e71ffdddc337d7e2635f970dda3c092 (patch) | |
tree | ee49608410c1eb32e014152198582349a6f16691 /board/hatch_fp/build.mk | |
parent | 204eb153327c59688fb430eb51471a76ecc61dee (diff) | |
download | chrome-ec-f3715a514e71ffdddc337d7e2635f970dda3c092.tar.gz |
hatch_fp: initial upload
First draft, lots of features still missing.
Dev key generated with this command:
openssl genrsa -3 -out board/hatch_fp/dev_key.pem 3072
BRANCH=none
BUG=b:124996507
TEST=make BOARD=hatch_fp
Change-Id: I7d7f0ce6807f7db9ee67e2e9b72ba6b2a0b87591
Signed-off-by: Nicolas Norvez <norvez@chromium.org>
Reviewed-on: https://chromium-review.googlesource.com/1482059
Reviewed-by: Tom Hughes <tomhughes@chromium.org>
Diffstat (limited to 'board/hatch_fp/build.mk')
-rw-r--r-- | board/hatch_fp/build.mk | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/board/hatch_fp/build.mk b/board/hatch_fp/build.mk new file mode 100644 index 0000000000..038819ff4d --- /dev/null +++ b/board/hatch_fp/build.mk @@ -0,0 +1,14 @@ +# Copyright 2019 The Chromium OS Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. +# +# Board specific files build + +# the IC is STmicro STM32F412 +CHIP:=stm32 +CHIP_FAMILY:=stm32f4 +CHIP_VARIANT:=stm32f412 + +board-y=board.o + +test-list-y=aes sha256 sha256_unrolled |