1## 2## This file is part of the coreboot project. 3## 4## Copyright (C) 2009 Uwe Hermann <uwe@hermann-uwe.de> 5## 6## This program is free software; you can redistribute it and/or modify 7## it under the terms of the GNU General Public License as published by 8## the Free Software Foundation; version 2 of the License. 9## 10## This program is distributed in the hope that it will be useful, 11## but WITHOUT ANY WARRANTY; without even the implied warranty of 12## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13## GNU General Public License for more details. 14## 15## You should have received a copy of the GNU General Public License 16## along with this program; if not, write to the Free Software 17## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 18## 19if VENDOR_MSI 20 21choice 22 prompt "Mainboard model" 23 24config BOARD_MSI_MS_6119 25 bool "MS-6119" 26config BOARD_MSI_MS_6147 27 bool "MS-6147" 28config BOARD_MSI_MS_6156 29 bool "MS-6156" 30config BOARD_MSI_MS_6178 31 bool "MS-6178" 32config BOARD_MSI_MS7135 33 bool "MS-7135 (K8N Neo3)" 34config BOARD_MSI_MS7260 35 bool "MS-7260 (K9N Neo)" 36config BOARD_MSI_MS9185 37 bool "MS-9185 (K9SD Master-S2R)" 38config BOARD_MSI_MS9282 39 bool "MS-9282 (K9SD Master)" 40config BOARD_MSI_MS9652_FAM10 41 bool "MS-9652 Fam10 (Speedster K9ND)" 42 43endchoice 44 45source "src/mainboard/msi/ms6119/Kconfig" 46source "src/mainboard/msi/ms6147/Kconfig" 47source "src/mainboard/msi/ms6156/Kconfig" 48source "src/mainboard/msi/ms6178/Kconfig" 49source "src/mainboard/msi/ms7135/Kconfig" 50source "src/mainboard/msi/ms7260/Kconfig" 51source "src/mainboard/msi/ms9185/Kconfig" 52source "src/mainboard/msi/ms9282/Kconfig" 53source "src/mainboard/msi/ms9652_fam10/Kconfig" 54 55config MAINBOARD_VENDOR 56 string 57 default "MSI" 58 59endif # VENDOR_MSI 60

