2009-08-26 19:10:00 +02:00
|
|
|
##
|
|
|
|
## This file is part of the coreboot project.
|
|
|
|
##
|
|
|
|
## Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de>
|
|
|
|
##
|
|
|
|
## 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
|
2010-05-14 11:48:05 +02:00
|
|
|
## the Free Software Foundation; version 2 of the License.
|
2009-08-26 19:10:00 +02:00
|
|
|
##
|
|
|
|
## 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
|
2013-02-23 18:37:27 +01:00
|
|
|
## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
2009-08-26 19:10:00 +02:00
|
|
|
##
|
2010-08-30 18:36:51 +02:00
|
|
|
if VENDOR_GIGABYTE
|
2009-08-26 19:10:00 +02:00
|
|
|
|
|
|
|
choice
|
|
|
|
prompt "Mainboard model"
|
2010-08-30 18:36:51 +02:00
|
|
|
|
|
|
|
config BOARD_GIGABYTE_GA_2761GXDK
|
|
|
|
bool "GA-2761GXDK"
|
|
|
|
config BOARD_GIGABYTE_GA_6BXC
|
|
|
|
bool "GA-6BXC"
|
|
|
|
config BOARD_GIGABYTE_GA_6BXE
|
|
|
|
bool "GA-6BXE"
|
2014-11-28 05:59:10 +01:00
|
|
|
config BOARD_GIGABYTE_GA_B75M_D3H
|
|
|
|
bool "GA-B75M-D3H"
|
2010-08-30 18:36:51 +02:00
|
|
|
config BOARD_GIGABYTE_M57SLI
|
|
|
|
bool "GA-M57SLI-S4"
|
2011-08-22 05:09:53 +02:00
|
|
|
config BOARD_GIGABYTE_MA785GMT
|
2010-11-07 18:47:01 +01:00
|
|
|
bool "GA-MA785GMT-UD2H"
|
2012-05-10 02:08:19 +02:00
|
|
|
config BOARD_GIGABYTE_MA785GM
|
|
|
|
bool "GA-MA785GM-US2H"
|
2010-08-30 18:36:51 +02:00
|
|
|
config BOARD_GIGABYTE_MA78GM
|
2010-11-07 18:47:01 +01:00
|
|
|
bool "GA-MA78GM-US2H"
|
2010-08-30 18:36:51 +02:00
|
|
|
|
|
|
|
endchoice
|
2010-04-27 08:56:47 +02:00
|
|
|
|
2009-10-07 16:13:36 +02:00
|
|
|
source "src/mainboard/gigabyte/ga_2761gxdk/Kconfig"
|
2009-08-26 19:10:00 +02:00
|
|
|
source "src/mainboard/gigabyte/ga-6bxc/Kconfig"
|
2010-05-14 21:50:11 +02:00
|
|
|
source "src/mainboard/gigabyte/ga-6bxe/Kconfig"
|
2014-11-28 05:59:10 +01:00
|
|
|
source "src/mainboard/gigabyte/ga-b75m-d3h/Kconfig"
|
2009-10-03 23:06:53 +02:00
|
|
|
source "src/mainboard/gigabyte/m57sli/Kconfig"
|
2010-08-17 13:08:31 +02:00
|
|
|
source "src/mainboard/gigabyte/ma785gmt/Kconfig"
|
2012-05-10 02:08:19 +02:00
|
|
|
source "src/mainboard/gigabyte/ma785gm/Kconfig"
|
2010-08-17 13:22:40 +02:00
|
|
|
source "src/mainboard/gigabyte/ma78gm/Kconfig"
|
2009-08-26 19:10:00 +02:00
|
|
|
|
2010-08-30 18:36:51 +02:00
|
|
|
config MAINBOARD_VENDOR
|
|
|
|
string
|
|
|
|
default "GIGABYTE"
|
|
|
|
|
|
|
|
endif # VENDOR_GIGABYTE
|