blob: f40c15f7b42d08c010b1a5f3c1ab1f29360d3fcd [file] [log] [blame]
# Copyright 2014 The Chromium OS Authors. All rights reserved.
# Distributed under the terms of the GNU General Public License v2
#
# Original Author: The Chromium OS Authors <chromium-os-dev@chromium.org>
# Purpose: Library for handling building of ChromiumOS packages
#
#
# @ECLASS-VARIABLE: EC_BOARDS
# @DESCRIPTION:
# This class contains function that lists the name of embedded
# controllers for a given system.
# When found, the array EC_BOARDS is populated.
# It no ECs are known or build host tools, bds toolchain is defined.
# For example, for a falco machine, EC_BOARDS = [ "falco" ]
# For samus, EC_BOARDS = [ "samus", "samus_pd" ]
#
# The firmware for these ECs can be found in platform/ec/build
# The first item of the array is always the main ec.
# Check for EAPI 4+
case "${EAPI:-0}" in
4|5|6) ;;
*) die "unsupported EAPI (${EAPI}) in eclass (${ECLASS})" ;;
esac
EC_BOARD_USE_PREFIX="ec_firmware_"
EC_EXTRA_BOARD_USE_PREFIX="ec_firmware_extra_"
# EC firmware board names for overlay with special configuration
EC_BOARD_NAMES=(
auron
bds
big
chell
chell_pd
cr50
cyan
dingdong
glados
glados_pd
hadoken
hoho
host
jerry
kunimitsu
kunimitsu_pd
lars
lars_pd
llama
minimuffin
oak
oak_pd
pit
plankton
rambi
ryu
ryu_p4p5
ryu_sh
ryu_sh_loader
samus
samus_pd
strago
twinkie
zinger
)
IUSE_FIRMWARES="${EC_BOARD_NAMES[@]/#/${EC_BOARD_USE_PREFIX}}"
IUSE_EXTRA_FIRMWARES="${EC_BOARD_NAMES[@]/#/${EC_EXTRA_BOARD_USE_PREFIX}}"
IUSE="${IUSE_FIRMWARES} ${IUSE_EXTRA_FIRMWARES} cros_host"
# Echo the current boards
get_ec_boards()
{
EC_BOARDS=()
if use cros_host; then
# If we are building for the purpose of emitting host-side tools, assume
# EC_BOARDS=(bds) for the build.
EC_BOARDS=(bds)
return
fi
# Add board names requested by ec_firmware_* USE flags
local ec_board
for ec_board in ${IUSE_FIRMWARES}; do
use ${ec_board} && EC_BOARDS+=(${ec_board#${EC_BOARD_USE_PREFIX}})
done
for ec_board in ${IUSE_EXTRA_FIRMWARES}; do
use ${ec_board} && EC_BOARDS+=(${ec_board#${EC_EXTRA_BOARD_USE_PREFIX}})
done
# Allow building for boards that don't have an EC
# (so we can compile test on bots for testing).
if [[ ${#EC_BOARDS[@]} -eq 0 ]]; then
EC_BOARDS=(bds)
fi
einfo "Building for boards: ${EC_BOARDS[*]}"
}