2012-12-11 01:13:43 +01:00
|
|
|
##
|
|
|
|
## 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"
|
|
|
|
|
2013-06-24 23:57:40 +02:00
|
|
|
config BOARD_GOOGLE_BOLT
|
|
|
|
bool "Bolt"
|
2013-02-11 20:11:36 +01:00
|
|
|
config BOARD_GOOGLE_BUTTERFLY
|
|
|
|
bool "Butterfly"
|
2014-10-08 20:38:52 +02:00
|
|
|
config BOARD_GOOGLE_COSMOS
|
|
|
|
bool "Cosmos"
|
2014-01-23 06:06:32 +01:00
|
|
|
config BOARD_GOOGLE_DAISY
|
|
|
|
bool "Daisy"
|
2013-05-23 01:31:09 +02:00
|
|
|
config BOARD_GOOGLE_FALCO
|
|
|
|
bool "Falco"
|
2013-02-22 00:48:37 +01:00
|
|
|
config BOARD_GOOGLE_LINK
|
|
|
|
bool "Link"
|
2013-09-27 01:27:55 +02:00
|
|
|
config BOARD_GOOGLE_NYAN
|
|
|
|
bool "Nyan"
|
2014-01-18 07:11:35 +01:00
|
|
|
config BOARD_GOOGLE_NYAN_BIG
|
|
|
|
bool "Nyan Big"
|
2014-03-19 22:19:09 +01:00
|
|
|
config BOARD_GOOGLE_NYAN_BLAZE
|
|
|
|
bool "Nyan Blaze"
|
2013-10-25 01:44:06 +02:00
|
|
|
config BOARD_GOOGLE_PANTHER
|
|
|
|
bool "Panther"
|
2013-03-14 01:13:32 +01:00
|
|
|
config BOARD_GOOGLE_PARROT
|
|
|
|
bool "Parrot"
|
2014-01-23 05:50:27 +01:00
|
|
|
config BOARD_GOOGLE_PEACH_PIT
|
|
|
|
bool "Peach Pit"
|
2013-05-24 00:13:46 +02:00
|
|
|
config BOARD_GOOGLE_PEPPY
|
|
|
|
bool "Peppy"
|
2013-10-04 23:00:07 +02:00
|
|
|
config BOARD_GOOGLE_RAMBI
|
|
|
|
bool "Rambi"
|
2014-04-29 01:44:21 +02:00
|
|
|
config BOARD_GOOGLE_RUSH
|
|
|
|
bool "Rush"
|
2014-07-15 02:09:23 +02:00
|
|
|
config BOARD_GOOGLE_RUSH_RYU
|
|
|
|
bool "Rush Ryu"
|
2013-10-03 01:10:54 +02:00
|
|
|
config BOARD_GOOGLE_SAMUS
|
|
|
|
bool "Samus"
|
2013-04-30 00:10:31 +02:00
|
|
|
config BOARD_GOOGLE_SLIPPY
|
|
|
|
bool "Slippy"
|
2014-03-19 22:31:23 +01:00
|
|
|
config BOARD_GOOGLE_STORM
|
|
|
|
bool "Storm"
|
2013-03-14 01:13:32 +01:00
|
|
|
config BOARD_GOOGLE_STOUT
|
|
|
|
bool "Stout"
|
2014-08-21 23:19:31 +02:00
|
|
|
config BOARD_GOOGLE_URARA
|
|
|
|
bool "Urara"
|
2014-12-20 00:34:08 +01:00
|
|
|
config BOARD_GOOGLE_VEYRON_BRAIN
|
|
|
|
bool "Veyron_Brain"
|
2014-10-24 04:14:30 +02:00
|
|
|
config BOARD_GOOGLE_VEYRON_JERRY
|
|
|
|
bool "Veyron_Jerry"
|
2014-11-20 03:17:52 +01:00
|
|
|
config BOARD_GOOGLE_VEYRON_MIGHTY
|
|
|
|
bool "Veyron_Mighty"
|
2014-09-11 00:10:45 +02:00
|
|
|
config BOARD_GOOGLE_VEYRON_PINKY
|
|
|
|
bool "Veyron_Pinky"
|
2014-12-08 03:34:27 +01:00
|
|
|
config BOARD_GOOGLE_VEYRON_SPEEDY
|
|
|
|
bool "Veyron_Speedy"
|
2012-12-11 01:13:43 +01:00
|
|
|
endchoice
|
|
|
|
|
2013-06-24 23:57:40 +02:00
|
|
|
source "src/mainboard/google/bolt/Kconfig"
|
2013-02-11 20:11:36 +01:00
|
|
|
source "src/mainboard/google/butterfly/Kconfig"
|
2014-10-08 20:38:52 +02:00
|
|
|
source "src/mainboard/google/cosmos/Kconfig"
|
2014-01-23 06:06:32 +01:00
|
|
|
source "src/mainboard/google/daisy/Kconfig"
|
2013-05-23 01:31:09 +02:00
|
|
|
source "src/mainboard/google/falco/Kconfig"
|
2013-02-22 00:48:37 +01:00
|
|
|
source "src/mainboard/google/link/Kconfig"
|
2013-09-27 01:27:55 +02:00
|
|
|
source "src/mainboard/google/nyan/Kconfig"
|
2014-01-18 07:11:35 +01:00
|
|
|
source "src/mainboard/google/nyan_big/Kconfig"
|
2014-03-19 22:19:09 +01:00
|
|
|
source "src/mainboard/google/nyan_blaze/Kconfig"
|
2013-10-25 01:44:06 +02:00
|
|
|
source "src/mainboard/google/panther/Kconfig"
|
2012-12-12 01:00:47 +01:00
|
|
|
source "src/mainboard/google/parrot/Kconfig"
|
2014-01-23 05:50:27 +01:00
|
|
|
source "src/mainboard/google/peach_pit/Kconfig"
|
2013-05-24 00:13:46 +02:00
|
|
|
source "src/mainboard/google/peppy/Kconfig"
|
2013-10-04 23:00:07 +02:00
|
|
|
source "src/mainboard/google/rambi/Kconfig"
|
2014-04-29 01:44:21 +02:00
|
|
|
source "src/mainboard/google/rush/Kconfig"
|
2014-07-15 02:09:23 +02:00
|
|
|
source "src/mainboard/google/rush_ryu/Kconfig"
|
2013-10-03 01:10:54 +02:00
|
|
|
source "src/mainboard/google/samus/Kconfig"
|
2013-04-30 00:10:31 +02:00
|
|
|
source "src/mainboard/google/slippy/Kconfig"
|
2014-03-19 22:31:23 +01:00
|
|
|
source "src/mainboard/google/storm/Kconfig"
|
2013-03-14 01:13:32 +01:00
|
|
|
source "src/mainboard/google/stout/Kconfig"
|
2014-08-21 23:19:31 +02:00
|
|
|
source "src/mainboard/google/urara/Kconfig"
|
2014-12-20 00:34:08 +01:00
|
|
|
source "src/mainboard/google/veyron_brain/Kconfig"
|
2014-10-24 04:14:30 +02:00
|
|
|
source "src/mainboard/google/veyron_jerry/Kconfig"
|
2014-11-20 03:17:52 +01:00
|
|
|
source "src/mainboard/google/veyron_mighty/Kconfig"
|
2014-09-11 00:10:45 +02:00
|
|
|
source "src/mainboard/google/veyron_pinky/Kconfig"
|
2014-12-08 03:34:27 +01:00
|
|
|
source "src/mainboard/google/veyron_speedy/Kconfig"
|
2012-12-11 01:13:43 +01:00
|
|
|
|
|
|
|
config MAINBOARD_VENDOR
|
2013-06-18 22:19:26 +02:00
|
|
|
string "Mainboard Vendor"
|
2012-12-11 01:13:43 +01:00
|
|
|
default "Google"
|
|
|
|
|
|
|
|
endif # VENDOR_GOOGLE
|