2009-08-25 14:25:36 +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-25 14:25:36 +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
|
|
|
|
## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
##
|
2010-08-30 18:36:51 +02:00
|
|
|
if VENDOR_ASUS
|
2009-08-25 14:25:36 +02:00
|
|
|
|
|
|
|
choice
|
|
|
|
prompt "Mainboard model"
|
2010-08-30 18:36:51 +02:00
|
|
|
|
|
|
|
config BOARD_ASUS_A8N_E
|
|
|
|
bool "A8N-E"
|
|
|
|
config BOARD_ASUS_A8V_E_SE
|
|
|
|
bool "A8V-E SE"
|
2010-11-14 22:48:14 +01:00
|
|
|
config BOARD_ASUS_A8V_E_DELUXE
|
|
|
|
bool "A8V-E Deluxe"
|
2010-11-07 20:27:45 +01:00
|
|
|
config BOARD_ASUS_M2V
|
|
|
|
bool "M2V"
|
2010-08-30 18:36:51 +02:00
|
|
|
config BOARD_ASUS_M2V_MX_SE
|
|
|
|
bool "M2V-MX SE"
|
2010-09-13 16:51:26 +02:00
|
|
|
config BOARD_ASUS_M4A785M
|
|
|
|
bool "M4A785-M"
|
2010-08-30 18:36:51 +02:00
|
|
|
config BOARD_ASUS_MEW_AM
|
|
|
|
bool "MEW-AM"
|
|
|
|
config BOARD_ASUS_MEW_VM
|
|
|
|
bool "MEW-VM"
|
|
|
|
config BOARD_ASUS_P2B
|
|
|
|
bool "P2B"
|
|
|
|
config BOARD_ASUS_P2B_D
|
|
|
|
bool "P2B-D"
|
|
|
|
config BOARD_ASUS_P2B_DS
|
|
|
|
bool "P2B-DS"
|
|
|
|
config BOARD_ASUS_P2B_F
|
|
|
|
bool "P2B-F"
|
|
|
|
config BOARD_ASUS_P2B_LS
|
|
|
|
bool "P2B-LS"
|
|
|
|
config BOARD_ASUS_P3B_F
|
|
|
|
bool "P3B-F"
|
|
|
|
|
|
|
|
endchoice
|
2009-08-26 18:55:06 +02:00
|
|
|
|
2009-10-09 14:32:52 +02:00
|
|
|
source "src/mainboard/asus/a8n_e/Kconfig"
|
|
|
|
source "src/mainboard/asus/a8v-e_se/Kconfig"
|
2010-11-14 22:48:14 +01:00
|
|
|
source "src/mainboard/asus/a8v-e_deluxe/Kconfig"
|
2010-11-07 20:27:45 +01:00
|
|
|
source "src/mainboard/asus/m2v/Kconfig"
|
2010-08-30 18:36:51 +02:00
|
|
|
source "src/mainboard/asus/m2v-mx_se/Kconfig"
|
2010-09-13 16:51:26 +02:00
|
|
|
source "src/mainboard/asus/m4a785-m/Kconfig"
|
2010-08-30 18:36:51 +02:00
|
|
|
source "src/mainboard/asus/mew-am/Kconfig"
|
|
|
|
source "src/mainboard/asus/mew-vm/Kconfig"
|
2009-08-26 19:10:00 +02:00
|
|
|
source "src/mainboard/asus/p2b/Kconfig"
|
|
|
|
source "src/mainboard/asus/p2b-d/Kconfig"
|
2010-01-25 08:56:01 +01:00
|
|
|
source "src/mainboard/asus/p2b-ds/Kconfig"
|
2009-08-25 14:25:36 +02:00
|
|
|
source "src/mainboard/asus/p2b-f/Kconfig"
|
2010-08-30 18:36:51 +02:00
|
|
|
source "src/mainboard/asus/p2b-ls/Kconfig"
|
2009-08-26 19:10:00 +02:00
|
|
|
source "src/mainboard/asus/p3b-f/Kconfig"
|
2009-08-25 14:25:36 +02:00
|
|
|
|
2010-08-30 18:36:51 +02:00
|
|
|
config MAINBOARD_VENDOR
|
|
|
|
string
|
|
|
|
default "ASUS"
|
2009-08-25 14:25:36 +02:00
|
|
|
|
2010-08-30 18:36:51 +02:00
|
|
|
endif # VENDOR_ASUS
|