coreboot/src/mainboard/msi/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

59 lines
1.7 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_MSI
choice
prompt "Mainboard model"
config BOARD_MSI_MS_6119
bool "MS-6119"
config BOARD_MSI_MS_6147
bool "MS-6147"
config BOARD_MSI_MS_6156
bool "MS-6156"
config BOARD_MSI_MS_6178
bool "MS-6178"
config BOARD_MSI_MS7135
bool "MS-7135 (K8N Neo3)"
config BOARD_MSI_MS7260
bool "MS-7260 (K9N Neo)"
config BOARD_MSI_MS9185
bool "MS-9185 (K9SD Master-S2R)"
config BOARD_MSI_MS9282
bool "MS-9282 (K9SD Master)"
config BOARD_MSI_MS9652_FAM10
bool "MS-9652 Fam10 (Speedster K9ND)"
endchoice
source "src/mainboard/msi/ms6119/Kconfig"
source "src/mainboard/msi/ms6147/Kconfig"
source "src/mainboard/msi/ms6156/Kconfig"
source "src/mainboard/msi/ms6178/Kconfig"
source "src/mainboard/msi/ms7135/Kconfig"
source "src/mainboard/msi/ms7260/Kconfig"
source "src/mainboard/msi/ms9185/Kconfig"
source "src/mainboard/msi/ms9282/Kconfig"
source "src/mainboard/msi/ms9652_fam10/Kconfig"
config MAINBOARD_VENDOR
string
default "MSI"
endif # VENDOR_MSI