blob: d24452adbb8a9d255eba696444f3f9662958b034 [file] [log] [blame]
# Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
# Distributed under the terms of the GNU General Public License v2
EAPI=2
CROS_WORKON_COMMIT="0580ccf160c1eb47e39b105caf6eeb72798c030d"
DESCRIPTION="ChromeOS specific U-Boot configurations"
HOMEPAGE="http://chromium.org"
LICENSE="BSD"
SLOT="0"
KEYWORDS="arm"
IUSE=""
RDEPEND=""
DEPEND=""
# This must be inherited *after* EGIT/CROS_WORKON variables defined
CROS_WORKON_PROJECT="chromiumos/platform/u-boot-config"
inherit cros-workon
src_install() {
local arch=$(echo ${CHROMEOS_U_BOOT_CONFIG} | cut -d_ -f2)
local board=${arch}/$(echo ${CHROMEOS_U_BOOT_CONFIG} | cut -d_ -f3)
for directory in . ${arch} ${arch}/parts ${board} ${board}/parts; do
dodir /u-boot/configs/chromeos/${directory}
insinto /u-boot/configs/chromeos/${directory}
doins ${directory}/* || die
done
}