blob: 6d4df86b6d00c5e29f25553957535cad624f2d08 [file] [log] [blame]
# Copyright 2018 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.
EAPI=7
CROS_WORKON_COMMIT=("a4445b15c9aba20f9078779adb1a0cb2e307c36a" "bb7439ef0cc49f052239cc89e34e50e08d32241c")
CROS_WORKON_TREE=("d53475a76427c4b522b99b0c4a79ddc7162489aa" "32903f97edbef88a34223ca070e127065ee58332")
CROS_WORKON_PROJECT=(
"chromiumos/platform/ec"
"chromiumos/platform/ec"
)
CROS_WORKON_LOCALNAME=(
"platform/ec"
"platform/cr50"
)
CROS_WORKON_DESTDIR=(
"${S}/platform/ec"
"${S}/platform/cr50"
)
CROS_WORKON_EGIT_BRANCH=(
"master"
"cr50_stab"
)
CROS_WORKON_INCREMENTAL_BUILD=1
inherit cros-workon
DESCRIPTION="Exported headers from the embedded controller codebase."
HOMEPAGE="https://www.chromium.org/chromium-os/ec-development"
SRC_URI=""
LICENSE="BSD-Google"
KEYWORDS="*"
IUSE=""
RDEPEND=""
DEPEND=""
# No configuration or compilation necessary. This is a header only package.
src_configure() { :; }
src_compile() { :; }
src_install() {
dir_ec=${CROS_WORKON_DESTDIR[0]}
dir_cr50=${CROS_WORKON_DESTDIR[1]}
insinto /usr/include/trunks/cr50_headers/
doins "${dir_cr50}"/include/pinweaver_types.h
doins "${dir_cr50}"/include/u2f.h
doins "${dir_cr50}"/board/cr50/tpm2/virtual_nvmem.h
insinto /usr/include/chromeos/ec/
doins "${dir_ec}"/include/ec_commands.h
doins "${dir_ec}"/util/cros_ec_dev.h
}