coreboot-kgpe-d16/src/mainboard/tyan/Kconfig
Paul Menzel a46a712610 GPLv2 notice: Unify all files to just use one space in »MA 02110-1301«
In the file `COPYING` in the coreboot repository and upstream [1]
just one space is used.

The following command was used to convert all files.

    $ git grep -l 'MA  02' | xargs sed -i 's/MA  02/MA 02/'

[1] http://www.gnu.org/licenses/gpl-2.0.txt

Change-Id: Ic956dab2820a9e2ccb7841cab66966ba168f305f
Signed-off-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-on: http://review.coreboot.org/2490
Tested-by: build bot (Jenkins)
Reviewed-by: Anton Kochkov <anton.kochkov@gmail.com>
2013-03-01 10:16:08 +01:00

79 lines
2.4 KiB
Text

##
## 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
## 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_TYAN
choice
prompt "Mainboard model"
config BOARD_TYAN_S1846
bool "S1846 (Tsunami ATX)"
config BOARD_TYAN_S2735
bool "S2735 (Tiger i7501R)"
config BOARD_TYAN_S2850
bool "S2850 (Tomcat K8S)"
config BOARD_TYAN_S2875
bool "S2875 (Tiger K8W)"
config BOARD_TYAN_S2880
bool "S2880 (Thunder K8S)"
config BOARD_TYAN_S2881
bool "S2881 (Thunder K8SR)"
config BOARD_TYAN_S2882
bool "S2882 (Thunder K8S Pro)"
config BOARD_TYAN_S2885
bool "S2885 (Thunder K8W)"
config BOARD_TYAN_S2891
bool "S2891 (Thunder K8SRE)"
config BOARD_TYAN_S2892
bool "S2892 (Thunder K8SE)"
config BOARD_TYAN_S2895
bool "S2895 (Thunder K8WE)"
config BOARD_TYAN_S2912
bool "S2912 (Thunder n3600R)"
config BOARD_TYAN_S2912_FAM10
bool "S2912 Fam10 (Thunder n3600R)"
config BOARD_TYAN_S4880
bool "S4880 (Thunder K8QS)"
config BOARD_TYAN_S4882
bool "S4882 (Thunder K8QS Pro)"
config BOARD_TYAN_S8226
bool "S8226"
endchoice
source "src/mainboard/tyan/s1846/Kconfig"
source "src/mainboard/tyan/s2735/Kconfig"
source "src/mainboard/tyan/s2850/Kconfig"
source "src/mainboard/tyan/s2875/Kconfig"
source "src/mainboard/tyan/s2880/Kconfig"
source "src/mainboard/tyan/s2881/Kconfig"
source "src/mainboard/tyan/s2882/Kconfig"
source "src/mainboard/tyan/s2885/Kconfig"
source "src/mainboard/tyan/s2891/Kconfig"
source "src/mainboard/tyan/s2892/Kconfig"
source "src/mainboard/tyan/s2895/Kconfig"
source "src/mainboard/tyan/s2912/Kconfig"
source "src/mainboard/tyan/s2912_fam10/Kconfig"
source "src/mainboard/tyan/s4880/Kconfig"
source "src/mainboard/tyan/s4882/Kconfig"
source "src/mainboard/tyan/s8226/Kconfig"
config MAINBOARD_VENDOR
string
default "Tyan"
endif # VENDOR_TYAN