3df01265d5
This adds board and soc files as a template for cosmos. BUG=chrome-os-partner:32772 BRANCH=none TEST=Built coreboot for cosmos and veyron_pinky. Signed-off-by: Daisuke Nojiri <dnojiri@chromium.org> Change-Id: I6e17058afaa629c6aa70c2d195230dba782af526 Signed-off-by: Patrick Georgi <pgeorgi@chromium.org> Original-Commit-Id: fd9dbcf1023a79921c8501bbe09969d65ca9e742 Original-Change-Id: I676bdf460f5dd996dcce1fc422a69882798bc112 Original-Reviewed-on: https://chromium-review.googlesource.com/222050 Original-Reviewed-by: Vadim Bendebury <vbendeb@chromium.org> Original-Reviewed-by: Daisuke Nojiri <dnojiri@chromium.org> Original-Tested-by: Daisuke Nojiri <dnojiri@chromium.org> Original-Commit-Queue: Daisuke Nojiri <dnojiri@chromium.org> Reviewed-on: http://review.coreboot.org/9351 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
98 lines
2.8 KiB
Text
98 lines
2.8 KiB
Text
##
|
|
## This file is part of the coreboot project.
|
|
##
|
|
## Copyright (C) 2012 The ChromiumOS Authors
|
|
##
|
|
## This program is free software; you can redistribute it and/or modify
|
|
## it under the terms of the GNU General Public License as published by
|
|
## the Free Software Foundation; version 2 of the License.
|
|
##
|
|
## This program is distributed in the hope that it will be useful,
|
|
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
## GNU General Public License for more details.
|
|
##
|
|
## You should have received a copy of the GNU General Public License
|
|
## along with this program; if not, write to the Free Software
|
|
## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
##
|
|
if VENDOR_GOOGLE
|
|
|
|
choice
|
|
prompt "Mainboard model"
|
|
|
|
config BOARD_GOOGLE_BOLT
|
|
bool "Bolt"
|
|
config BOARD_GOOGLE_BUTTERFLY
|
|
bool "Butterfly"
|
|
config BOARD_GOOGLE_COSMOS
|
|
bool "Cosmos"
|
|
config BOARD_GOOGLE_DAISY
|
|
bool "Daisy"
|
|
config BOARD_GOOGLE_FALCO
|
|
bool "Falco"
|
|
config BOARD_GOOGLE_LINK
|
|
bool "Link"
|
|
config BOARD_GOOGLE_NYAN
|
|
bool "Nyan"
|
|
config BOARD_GOOGLE_NYAN_BIG
|
|
bool "Nyan Big"
|
|
config BOARD_GOOGLE_NYAN_BLAZE
|
|
bool "Nyan Blaze"
|
|
config BOARD_GOOGLE_PANTHER
|
|
bool "Panther"
|
|
config BOARD_GOOGLE_PARROT
|
|
bool "Parrot"
|
|
config BOARD_GOOGLE_PEACH_PIT
|
|
bool "Peach Pit"
|
|
config BOARD_GOOGLE_PEPPY
|
|
bool "Peppy"
|
|
config BOARD_GOOGLE_RAMBI
|
|
bool "Rambi"
|
|
config BOARD_GOOGLE_RUSH
|
|
bool "Rush"
|
|
config BOARD_GOOGLE_RUSH_RYU
|
|
bool "Rush Ryu"
|
|
config BOARD_GOOGLE_SAMUS
|
|
bool "Samus"
|
|
config BOARD_GOOGLE_SLIPPY
|
|
bool "Slippy"
|
|
config BOARD_GOOGLE_STORM
|
|
bool "Storm"
|
|
config BOARD_GOOGLE_STOUT
|
|
bool "Stout"
|
|
config BOARD_GOOGLE_URARA
|
|
bool "Urara"
|
|
config BOARD_GOOGLE_VEYRON_PINKY
|
|
bool "Veyron_Pinky"
|
|
|
|
endchoice
|
|
|
|
source "src/mainboard/google/bolt/Kconfig"
|
|
source "src/mainboard/google/butterfly/Kconfig"
|
|
source "src/mainboard/google/cosmos/Kconfig"
|
|
source "src/mainboard/google/daisy/Kconfig"
|
|
source "src/mainboard/google/falco/Kconfig"
|
|
source "src/mainboard/google/link/Kconfig"
|
|
source "src/mainboard/google/nyan/Kconfig"
|
|
source "src/mainboard/google/nyan_big/Kconfig"
|
|
source "src/mainboard/google/nyan_blaze/Kconfig"
|
|
source "src/mainboard/google/panther/Kconfig"
|
|
source "src/mainboard/google/parrot/Kconfig"
|
|
source "src/mainboard/google/peach_pit/Kconfig"
|
|
source "src/mainboard/google/peppy/Kconfig"
|
|
source "src/mainboard/google/rambi/Kconfig"
|
|
source "src/mainboard/google/rush/Kconfig"
|
|
source "src/mainboard/google/rush_ryu/Kconfig"
|
|
source "src/mainboard/google/samus/Kconfig"
|
|
source "src/mainboard/google/slippy/Kconfig"
|
|
source "src/mainboard/google/storm/Kconfig"
|
|
source "src/mainboard/google/stout/Kconfig"
|
|
source "src/mainboard/google/urara/Kconfig"
|
|
source "src/mainboard/google/veyron_pinky/Kconfig"
|
|
|
|
config MAINBOARD_VENDOR
|
|
string "Mainboard Vendor"
|
|
default "Google"
|
|
|
|
endif # VENDOR_GOOGLE
|